/* 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 {
  height: 100%;
}

.body-wrapper {
  display: grid;
  flex-flow: column wrap;
  grid-template-rows: auto 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: initial !important;
  }

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

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

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

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

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

  .hidden-desktop {
    display: initial !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: 'Baskerville';
  src: local('Baskerville'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: local('Baskerville Italic'),
  local('Baskerville-Italic'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-Italic.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: local('Baskerville SemiBold'),
  local('Baskerville-SemiBold'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-SemiBold.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: local('Baskerville SemiBold Italic'),
  local('Baskerville-SemiBoldItalic'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-SemiBoldItalic.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-SemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: local('Baskerville Bold'),
  local('Baskerville-Bold'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-Bold.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: local('Baskerville Bold Italic'),
  local('Baskerville-BoldItalic'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-BoldItalic.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Baskerville-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bangla Sangam MN';
  src: local('Bangla Sangam MN'),
  local('BanglaSangamMN'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/BanglaSangamMN.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/BanglaSangamMN.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bangla Sangam MN';
  src: local('Bangla Sangam MN Bold'),
  local('BanglaSangamMN-Bold'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/BanglaSangamMN-Bold.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/BanglaSangamMN-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Patrima';
  src: local('Patrima Regular'),
  local('Patrima-Regular'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Patrima-Regular.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Patrima-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Patrima';
  src: local('Patrima Bold'),
  local('Patrima-Bold'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Patrima-Bold.woff2') format('woff2'),
  url('//20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/nickel-hotel-feb-2025/fonts/Patrima-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html {
  background-color: #F9F8F4;
  color: #191E06;
  font-family: 'Baskerville';
  line-height: 140%;
  word-break: break-word;
}

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: underline;
  text-decoration-thickness: 0.03571em;
  text-underline-offset: 0.125em;
  transition: color 0.15s linear;
}

a:hover,
a:focus {
  text-decoration-line: none;
}

a:focus {
  outline: 0;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Baskerville';
  font-weight: 400;
  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;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 100%;
  min-width: 246px;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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: transparent;
  --form-field-border: 1px solid rgba(40, 46, 43, 0.3);
  --form-field-border-color: rgba(40, 46, 43, 0.3);
  --form-field-border-color-focus: #282E2B;
  --form-field-color: #282E2B;
  --form-field-spacing: 18px;
}

/* Fields */

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

.hs-form-field.hs-message {
  margin-top: 45px;
}

fieldset .hs-form-field.hs-message {
  margin-top: 27px;
}

/* Labels */

form label {
  align-items: flex-end;
  display: block;
  display: flex;
  font-family: 'Bangla Sangam MN', sans-serif;
  font-size: 12px;
  line-height: 100%;
}

.hs-form-field>label {
  letter-spacing: -0.05em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hs-form-field.hs-fieldtype-textarea>label {
  margin-bottom: 18px;
}

/* Help Text */

form legend {
  font-size: 12px;
  line-height: 100%;
}

/* 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--form-field-background);
  border-radius: 0;
  border: var(--form-field-border);
  border-width: 0 0 1px;
  color: var(--form-field-color);
  display: block;
  font-family: 'Baskerville';
  font-size: 24px;
  line-height: 100%;
  padding: 12px 0;
  width: 100%;
}

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: var(--form-field-border-color-focus);
  outline: 0;
}

form input[type=file]::file-selector-button {
  background-color: #191E06;
  border: 1px solid #191E06;
  color: #F9F8F4;
  cursor: pointer;
  margin-right: 20px;
  padding: 12px 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: transparent;
  border-color: #191E06;
  color: #191E06;
}

form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 9'%3E%3Cpath stroke='%23282E2B' stroke-width='2' d='M14 1 6.91 8M1 1l7.09 7'/%3E%3C/svg%3E");
  background-position: center right 21px;
  background-repeat: no-repeat;
  background-size: 15px auto;
  padding: 12px 57px 12px 0;
}

form select[data-select2-id] {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border-color: var(--form-field-border-color) !important;
  border-radius: 0;
  border-style: solid;
  border-width: 0 0 1px;
  height: auto;
}

.hs-input.invalid.error+.select2-container--default .select2-selection--single {
  border-color: red;
}

.select2-container--default .select2-selection--single:focus {
  border-color: var(--form-field-border-color-focus) !important;
  outline: 0;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--form-field-border-color-focus) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--form-field-color);
  font-family: 'Baskerville';
  font-size: 24px;
  min-height: 49px;
  line-height: 100%;
  padding: 12px 57px 12px 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 9'%3E%3Cpath stroke='%23282E2B' stroke-width='2' d='M14 1 6.91 8M1 1l7.09 7'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 100%;
  right: 22px;
  width: 15px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 9'%3E%3Cpath stroke='%23282E2B' stroke-width='2' d='M14 1 6.91 8M1 1l7.09 7'/%3E%3C/svg%3E");
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  background-color: #F9F8F4;
  border-color: #282E2B;
  border-radius: 0;
  color: #282E2B;
  font-family: 'Baskerville';
  font-size: 24px;
  letter-spacing: normal;
  line-height: 100%;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: 1px solid var(--form-field-border-color-focus);
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 230px;
}

.select2-results__option {
  opacity: 0.5;
  padding: 6px 14px;
}

.select2-results__option:first-child {
  padding-top: 14px;
}

.select2-results__option:last-child {
  padding-bottom: 14px;
}

.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #191E06;
  opacity: 1;
}

form textarea {
  border-width: 1px;
  height: 223px;
  padding: 12px;
  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: 5px 0 0;
  list-style: none;
}

form .inputs-list li {
  display: block;
  margin: 10px 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: -2px;
}

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;
  font-family: 'Bangla Sangam MN', sans-serif;
  font-size: 12px;
  letter-spacing: -0.05em;
  line-height: 100%;
  text-transform: uppercase;
}

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 #C0BFB1;
  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='%2327362E' 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: #27362E;
}

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='%2327362E' 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: #27362E;
}

/* Inputs - Are you bringing a guest? */

form .hs-are_you_bringing_a_guest.hs-form-field .inputs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

form .hs-are_you_bringing_a_guest.hs-form-field .inputs-list li {
  margin-top: 0;
}

/* 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: #E62656 !important;
}

.fn-date-picker td.is-selected .pika-button {
  background-color: #E62656 !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: #E62656 !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: 24px;
  line-height: 100%;
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 24px;
  line-height: 100%;
}

:-moz-placeholder {
  /* Firefox 18- */
  font-size: 24px;
  line-height: 100%;
}

::placeholder {
  font-size: 24px;
  line-height: 100%;
}

/* 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;
  line-height: 140%;
}

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

/* Validation */

.hs_error_rollup {
  display: none;
}

.hs-form-required {
  color: #282E2B;
}

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

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

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 100%;
  margin-top: 7px;
  min-width: 188px;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
}
/* Table */

table {
  border-collapse: collapse;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

#sticky-header-trigger+div {
  left: 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.main-header {
  background-color: #f9f8f4;
  border-bottom: 0.5px solid transparent;
  padding-bottom: 17.5px;
  padding-top: 17.5px;
  position: relative;
  width: 100%;
}

body[data-nav-sticky="true"] .main-header {
  background-color: #F9F8F4;
  border-bottom-color: #282E2B;
}

body[data-nav="true"] {
  overflow: hidden;
}

/* Header Container */

.header-container {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 20px;
}

.main-header--no-navigation .header-container {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .header-container {
    min-height: 33px;
  }
}

/* Navigation Skipper */

.header-skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header-skip:hover,
.header-skip:focus,
.header-skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

#hs_cos_wrapper_header_logo {
  max-width: 186px;
}

/* Header Button */

#hs_cos_wrapper_header_buttons .button_group {
  justify-content: flex-end;
}

#hs_cos_wrapper_header_buttons .button {
  background-color: #191E06;
  border-color: #191E06;
  color: #fff;
  min-width: 0;
  padding: 9.5px 9px;
}

#hs_cos_wrapper_header_buttons .button:hover,
#hs_cos_wrapper_header_buttons .button:focus {
  background-color: #D7AA47;
  border-color: #D7AA47;
  color: #191E06;
}

body[data-nav-sticky="true"] #hs_cos_wrapper_header_buttons .button {
  background-color: #D7AA47;
  border-color: #D7AA47;
  color: #191E06;
}

body[data-nav-sticky="true"] #hs_cos_wrapper_header_buttons .button:hover,
body[data-nav-sticky="true"] #hs_cos_wrapper_header_buttons .button:focus {
  background-color: #f9f8f4;
  border-color: #757772;
  color: #191E06;
}

/* Navigation */

.popup_navigation-wrapper {
  background: #191e06;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  left: 0;
  min-height: 100%;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

body[data-nav="true"] .popup_navigation-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease;
  visibility: visible;
}

.popup_navigation-toggle {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #191E06;
  display: block;
  min-width: 0;
  padding: 0;
  position: relative;
}

.popup_navigation-toggle:hover,
.popup_navigation-toggle:focus {
  background-color: transparent;
  border: 0;
  color: #d7aa47;
}

.popup_navigation-toggle svg {
  display: block;
  width: auto;
}

.popup_navigation-open {
  position: relative;
  height: 9px;
}

.popup_navigation-open::before,
.popup_navigation-open::after {
  background-color: currentColor;
  content: '';
  display: block;
  height: 1.5px;
  left: 0;
  position: absolute;
  transform-origin: center;
  transition: all 0.2s ease;
  width: 100%;
}

.popup_navigation-open::before {
  top: 0;
}

.popup_navigation-open::after {
  bottom: 0;
}

[data-nav="true"] .popup_navigation-open::before {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
}

[data-nav="true"] .popup_navigation-open::after {
  transform: translateY(50%) rotate(-45deg);
  bottom: 50%;
}

.popup_navigation-open svg {
  height: 9px;
  opacity: 0;
}

.popup_navigation-close {
  color: #F9F8F4;
  margin-left: 5px;
}

.popup_navigation-close svg {
  height: 31px;
}

.popup_navigation-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 17.5px 20px;
}

#hs_cos_wrapper_popup_nav_logo {
  max-width: 186px;
}

#hs_cos_wrapper_popup_nav_buttons .button_group {
  justify-content: flex-end;
}

#hs_cos_wrapper_popup_nav_buttons .button {
  background-color: #D7AA47;
  border-color: #D7AA47;
  color: #191E06;
  min-width: 0;
  padding: 9.5px 9px;
}

#hs_cos_wrapper_popup_nav_buttons .button:hover,
#hs_cos_wrapper_popup_nav_buttons .button:focus {
  background-color: #F9F8F4;
  border-color: #F9F8F4;
  color: #191E06;
}

.popup_navigation-body {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

/* .popup_navigation-body::before {
  content: "";
  position: absolute;
  top: -35px;
  right: 0;
  left: 0;
  bottom: 0;
  border-left: 1px solid #ffffff;
  height: calc(100% + 35px);
  width: 1px;
  margin: 0 auto;
} */

.popup_navigation-menu {
  flex: 0 1 50%;
  font-size: 32px;
  line-height: 175%;
  letter-spacing: 0.075em;
}

.popup_navigation-menu .hs-menu-wrapper ul {
  justify-content: center;
  padding: 40px;
  position: relative;
  text-align: center;
  width: 100%;
}

.popup_navigation-menu a {
  color: #f9f8f4;
  text-decoration-line: none;
}

.popup_navigation-menu a:hover,
.popup_navigation-menu a:focus,
.popup_navigation-menu li.active a,
.popup_navigation-menu li.active-branch a {
  color: #f9f8f4;
  text-decoration-line: underline;
}

#hs_cos_wrapper_popup_buttons {
  display: none;
  flex: 0 1 100%;
  padding: 0 28px;
}

#hs_cos_wrapper_popup_buttons .button {
  background-color: #D7AA47;
  border-color: #D7AA47;
  color: #191E06;
  min-width: 0;
  padding: 13px 17.5px;
  width: 100%;
}

#hs_cos_wrapper_popup_buttons .button:hover,
#hs_cos_wrapper_popup_buttons .button:focus {
  background-color: #F9F8F4;
  border-color: #F9F8F4;
  color: #191E06;
}

.popup_navigation-sign-up {
  flex: 0 1 50%;
  padding: 69px 75px 75px;
  position: relative;
}
.main-footer {
  background-color: #191E06;
  color: #F9F8F4;
  padding-top: 20px;
}

.main-footer a {
  color: inherit;
  text-decoration-line: none;
}

.main-footer a:hover,
.main-footer a:focus {
  color: inherit;
  text-decoration-line: underline;
}

.main-footer-top {
  border-bottom: 1px solid transparent;
  border-top: 1px solid #757772;
  padding: 25px;
  position: relative;
}

.main-footer-top::after {
  background-color: #757772;
  bottom: -1px;
  content: '';
  display: block;
  height: 1px;
  left: 25px;
  position: absolute;
  right: 25px;
}

@media (min-width: 768px) {
  .main-footer-top {
    display: grid;
    gap: 41px;
    grid-template-columns: repeat(2, 1fr);
    min-height: 236px;
    position: relative;
  }

  .main-footer-top::before {
    background-color: #757772;
    content: '';
    display: block;
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
  }
}

@media (min-width: 1025px) {
  .main-footer-top {
    min-height: 307px;
  }
}

.main-footer-links {
  align-self: start;
  display: grid;
  gap: 89px 35px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr auto;
  max-width: 495px;
  min-height: 100%;
}

@media (min-width: 1440px) {
  .main-footer-links {
    max-width: 73.39%;
  }
}

#hs_cos_wrapper_footer_links_primary,
#hs_cos_wrapper_footer_links_primary_l,
#hs_cos_wrapper_footer_links_primary_r {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Baskerville';
  font-size: 24px;
  letter-spacing: 0.075em;
  line-height: 112.5%;
}

#hs_cos_wrapper_footer_links_primary .hs-menu-item:not(:first-child),
#hs_cos_wrapper_footer_links_primary_l .hs-menu-item:not(:first-child),
#hs_cos_wrapper_footer_links_primary_r .hs-menu-item:not(:first-child) {
  margin-top: 16px;
}

#hs_cos_wrapper_footer_links_primary li.active a,
#hs_cos_wrapper_footer_links_primary li.active-branch a,
#hs_cos_wrapper_footer_links_primary_l li.active a,
#hs_cos_wrapper_footer_links_primary_l li.active-branch a,
#hs_cos_wrapper_footer_links_primary_r li.active a,
#hs_cos_wrapper_footer_links_primary_r li.active-branch a {
  text-decoration-line: underline;
}

#hs_cos_wrapper_footer_links_secondary_l,
#hs_cos_wrapper_footer_links_secondary_r {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Baskerville';
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 150%;
}

#hs_cos_wrapper_footer_links_secondary_l .hs-menu-item:not(:first-child),
#hs_cos_wrapper_footer_links_secondary_r .hs-menu-item:not(:first-child) {
  margin-top: 10px;
}

#hs_cos_wrapper_footer_links_secondary_l li.active a,
#hs_cos_wrapper_footer_links_secondary_l li.active-branch a,
#hs_cos_wrapper_footer_links_secondary_r li.active a,
#hs_cos_wrapper_footer_links_secondary_r li.active-branch a {
  text-decoration-line: underline;
}

.main-footer-form {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}

#hs_cos_wrapper_footer_form_header h1,
#hs_cos_wrapper_footer_form_header h2,
#hs_cos_wrapper_footer_form_header h3,
#hs_cos_wrapper_footer_form_header h4,
#hs_cos_wrapper_footer_form_header h5,
#hs_cos_wrapper_footer_form_header h6 {
  font-size: 24px;
  letter-spacing: 0.075em;
  line-height: 100%;
}

#hs_cos_wrapper_footer_form form {
  align-items: start;
  display: grid;
  grid-template-columns: 1fr auto;
}

#hs_cos_wrapper_footer_form form input[type='text'],
#hs_cos_wrapper_footer_form form input[type='email'],
#hs_cos_wrapper_footer_form form input[type='password'],
#hs_cos_wrapper_footer_form form input[type='tel'],
#hs_cos_wrapper_footer_form form input[type='number'],
#hs_cos_wrapper_footer_form form input[type='file'],
#hs_cos_wrapper_footer_form form input[type='date'],
#hs_cos_wrapper_footer_form form select,
#hs_cos_wrapper_footer_form form textarea {
  border-color: #F9F8F4;
  border-width: 1px;
  color: inherit;
  font-family: 'Bangla Sangam MN', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  min-height: 45px;
  padding: 14px 20px 10px;
  width: 100%;
}

#hs_cos_wrapper_footer_form form .hs-button,
#hs_cos_wrapper_footer_form form input[type='submit'] {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 10'%3E%3Cpath fill='%23F9F8F4' d='M.226 4.5h14v1h-14z'/%3E%3Cpath fill='%23fff' d='m9.117 9.243 4.95-4.95.707.707-4.95 4.95z'/%3E%3Cpath fill='%23fff' d='M14.067 5.707 9.117.757l.707-.706L14.774 5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 10px;
  border-color: #F9F8F4;
  border-width: 1px;
  color: #F9F8F4;
  font-size: 0;
  margin-top: 0;
  min-height: 45px;
  min-width: auto;
  padding: 0;
  position: relative;
  width: 153px;
  z-index: 1;
}

#hs_cos_wrapper_footer_form form .hs-button:hover,
#hs_cos_wrapper_footer_form form .hs-button:focus,
#hs_cos_wrapper_footer_form form input[type='submit']:hover,
#hs_cos_wrapper_footer_form form input[type='submit']:focus {
  background-color: #F9F8F4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 11'%3E%3Cpath fill='%23191E06' d='M.227 5h14v1h-14z'/%3E%3Cpath fill='%23282E2B' d='m9.117 9.742 4.95-4.95.707.708-4.95 4.95z'/%3E%3Cpath fill='%23191E06' d='m14.067 6.207-4.95-4.95.707-.707 4.95 4.95z'/%3E%3C/svg%3E");
  border-color: #F9F8F4;
  color: #191E06;
}

#hs_cos_wrapper_footer_form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #F9F8F4;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #F9F8F4;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form :-moz-placeholder {
  /* Firefox 18- */
  color: #F9F8F4;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form ::placeholder {
  color: #F9F8F4;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form .hs-form-field {
  position: relative;
  margin-bottom: 0;
  margin-right: -0.5px;
}

#hs_cos_wrapper_footer_form .hs-form-field>label {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin-bottom: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

#hs_cos_wrapper_footer_form .hs-form-field>.input {
  height: 100%;
}

#hs_cos_wrapper_footer_form .hs_error_rollup {
  display: none;
}

.main-footer-middle {
  font-family: 'Bangla Sangam MN', sans-serif;
  padding: 10px 25px;
}

@media (min-width: 768px) {
  .main-footer-middle {
    align-items: center;
    display: flex;
    gap: 25px;
    justify-content: space-between;
  }
}

.main-footer-middle .social_links-icon {
  background-color: #F9F8F4;
  border-color: #F9F8F4;
  color: #191E06;
}

.main-footer-middle .social_links-link:hover .social_links-icon,
.main-footer-middle .social_links-link:focus .social_links-icon {
  background-color: transparent;
  color: #F9F8F4;
}

.main-footer-bottom::before {
  background-color: #F9F8F4;
  content: '';
  display: block;
  height: 0.25px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.main-footer-bottom {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Bangla Sangam MN', sans-serif;
  font-size: 10px;
  font-weight: 400;
  gap: 24px;
  justify-content: space-between;
  letter-spacing: 0.05em;
  line-height: 100%;
  padding: 12px 25px;
  position: relative;
  text-transform: uppercase;
}

.main-footer-bottom p {
  margin: 0;
}

.main-footer-bottom .website-by svg {
  display: block;
  height: auto;
  width: 30px;
}
/* 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;
}

/* Section Header */

.section-header h1,
.section-header h2,
.section-header h3,
.section-header h4,
.section-header h5,
.section-header h6 {
  font-size: 48px;
  letter-spacing: 0.075em;
  line-height: 90%;
  margin: 0 auto 48px;
  text-align: center;
  text-transform: uppercase;
}

.section-header .secondary-header {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 125%;
  margin: 0 auto;
  max-width: 698px;
  text-align: center;
}

/* Page Header */

#hs_cos_wrapper_page_header {
  padding: 125px 40px;
}

/* Page Navigation - Room */

.page_nav_rooms-trigger {
  transform: translateY(-68px);
  /* Set to the height of the sticky header for the is-sticky to trigger properly */
}

.page_nav_rooms-trigger:not(.is-sticky) {
  height: 0 !important;
}

.page_nav_rooms-trigger.is-sticky + div {
  background-color: #f9f8f4;
  border-bottom: 0.5px solid #282e2b;
  left: 0;
  position: fixed;
  top: 68px;
  width: 100%;
  z-index: 998;
}

#hs_cos_wrapper_page_nav_rooms {
  font-size: 20px;
  letter-spacing: 0.075em;
  line-height: 125%;
  padding: 24px 20px;
}

#hs_cos_wrapper_page_nav_rooms > .hs_cos_wrapper_type_simple_menu {
  display: block;
  margin: 0 auto;
  max-width: 1306px;
  width: 100%;
}

#hs_cos_wrapper_page_nav_rooms ul {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

#hs_cos_wrapper_page_nav_rooms li::after {
  content: "\00a0|\00a0";
  display: inline;
}

#hs_cos_wrapper_page_nav_rooms li:last-child::after {
  content: none;
}

#hs_cos_wrapper_page_nav_rooms li a {
  color: inherit;
  display: inline-block;
  text-decoration-line: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  vertical-align: top;
}

#hs_cos_wrapper_page_nav_rooms li a:hover,
#hs_cos_wrapper_page_nav_rooms li a:focus,
#hs_cos_wrapper_page_nav_rooms li.active a {
  color: inherit;
  text-decoration-line: underline;
}

/* Animate Images */
.animate_image {
  overflow: hidden;
}

.animate_image img {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s cubic-bezier(0.57, 0, 0.5, 1),
    transform 1s cubic-bezier(0.57, 0, 0.5, 1);
}

.animate_image.animate img {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .animate_image img {
    transition-duration: 1ms !important;
  }
}

/* Disabled Animation */
.hs-inline-edit .animate_image img {
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media (max-width: 1024px) {
	.hs-form-field.hs-message {
		margin-top: 48px;
	}

	fieldset .hs-form-field.hs-message {
		margin-top: 30px;
	}

	form label {
		font-size: 12px;
		line-height: 116.6667%;
	}

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

	.hs-form-field.hs-fieldtype-checkbox>label,
	.hs-form-field.hs-fieldtype-radio>label {
		margin-bottom: 9px;
	}

	form legend {
		font-size: 12px;
		line-height: 116.6667%;
	}

	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 {
		font-size: 20px;
		line-height: 110%;
	}

	form select {
		background-position: center right 17px;
		background-size: 12px auto;
		padding-right: 46px;
	}

	.select2-container--default .select2-selection--single .select2-selection__rendered {
		font-size: 20px;
		line-height: 110%;
		min-height: 47px;
		padding-right: 46px;
	}

	.select2-container--default .select2-selection--single .select2-selection__arrow {
		right: 17px;
		width: 12px;
	}

	.select2-dropdown {
		font-size: 20px;
		line-height: 110%;
	}

	::-webkit-input-placeholder {
		/* Chrome/Opera/Safari */
		font-size: 20px;
		line-height: 110%;
	}

	::-moz-placeholder {
		/* Firefox 19+ */
		font-size: 20px;
		line-height: 110%;
	}

	:-moz-placeholder {
		/* Firefox 18- */
		font-size: 20px;
		line-height: 110%;
	}

	::placeholder {
		font-size: 20px;
		line-height: 110%;
	}

	.popup_navigation-close {
		margin-left: 0;
	}

	.popup_navigation-body {
		flex-flow: row wrap;
	}

	.popup_navigation-body::before {
		content: none;
	}

	.popup_navigation-menu {
		flex: 0 1 100%;
	}

	.popup_navigation-menu .hs-menu-wrapper ul {
		padding: 160px 40px 83px;
	}

	.popup_navigation-sign-up {
		flex: 0 1 100%;
		padding: 0 40px 74px;
	}

	.main-footer-top {
		padding: 20px;
	}

	.main-footer-top::after {
		left: 20px;
		right: 20px;
	}

	.main-footer-links {
		gap: 37px 0;
	}

	#hs_cos_wrapper_footer_links_primary,
	#hs_cos_wrapper_footer_links_primary_l,
	#hs_cos_wrapper_footer_links_primary_r {
		font-size: 18px;
		line-height: 21px;
	}

	#hs_cos_wrapper_footer_links_primary_l {
		padding-right: 20px;
	}

	#hs_cos_wrapper_footer_links_secondary_l,
	#hs_cos_wrapper_footer_links_secondary_r {
		font-size: 14px;
	}

	#hs_cos_wrapper_footer_links_secondary_l {
		padding-right: 20px;
	}

	#hs_cos_wrapper_footer_links_secondary_l .hs-menu-item:not(:first-child),
	#hs_cos_wrapper_footer_links_secondary_r .hs-menu-item:not(:first-child) {
		margin-top: 8px;
	}

	#hs_cos_wrapper_footer_form_header h1,
	#hs_cos_wrapper_footer_form_header h2,
	#hs_cos_wrapper_footer_form_header h3,
	#hs_cos_wrapper_footer_form_header h4,
	#hs_cos_wrapper_footer_form_header h5,
	#hs_cos_wrapper_footer_form_header h6 {
		font-size: 18px;
	}

	#hs_cos_wrapper_footer_form form .hs-button,
	#hs_cos_wrapper_footer_form form input[type='submit'] {
		width: 63px;
	}

	.main-footer-middle {
		gap: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.main-footer-bottom {
		padding-left: 20px;
		padding-right: 20px;
	}

	.section-header h1,
	.section-header h2,
	.section-header h3,
	.section-header h4,
	.section-header h5,
	.section-header h6 {
		margin: 0 auto 52px;
	}

	#hs_cos_wrapper_page_header {
		padding: 73px 20px;
	}

	#hs_cos_wrapper_page_nav_rooms {
		font-size: 16px;
		padding: 21px 20px;
	}
}
@media (max-width: 767px) {
  .hs-form-field.hs-message {
    margin-top: 36px;
  }

  fieldset .hs-form-field.hs-message {
    margin-top: 18px;
  }

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

  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 {
    padding: 10px 0 12px;
  }

  form select {
    background-position: center right 14px;
    padding-right: 40px;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    min-height: 45px;
    padding: 10px 40px 12px 0;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 14px;
  }

  form textarea {
    height: 203px;
  }

  form .hs-button,
  form input[type=submit] {
    margin-top: 0;
  }

  .content-wrapper {
    padding: 0 30px;
  }

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

  .main-header {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .header-container {
    padding: 0 18px;
  }

  #hs_cos_wrapper_header_buttons {
    display: none;
  }

  .popup_navigation-open svg {
    height: 7.13px;
  }

  .popup_navigation-close svg {
    height: 21.2824px;
  }

  .popup_navigation-header {
    padding: 16px;
  }

  #hs_cos_wrapper_popup_nav_buttons .button_group {
    display: none;
  }

  .popup_navigation-menu {
    font-size: 24px;
  }

  .popup_navigation-menu .hs-menu-wrapper ul {
    padding: 80px 28px 96px;
  }

  .popup_navigation-menu li {
    padding: 7px 0;
  }

  #hs_cos_wrapper_popup_buttons {
    display: block;
  }

  .popup_navigation-sign-up {
    padding: 76px 28px 101px;
  }

  .main-footer-links {
    gap: 24px 38px;
    padding-bottom: 56px;
  }

  #hs_cos_wrapper_footer_links_primary,
  #hs_cos_wrapper_footer_links_primary_l,
  #hs_cos_wrapper_footer_links_primary_r {
    font-size: 20px;
    line-height: 23px;
  }

  #hs_cos_wrapper_footer_links_primary_l {
    grid-column: span 2;
    padding-right: 0;
  }

  #hs_cos_wrapper_footer_links_primary_r {
    grid-column: span 2;
  }

  #hs_cos_wrapper_footer_links_primary .hs-menu-item:not(:first-child),
  #hs_cos_wrapper_footer_links_primary_l .hs-menu-item:not(:first-child),
  #hs_cos_wrapper_footer_links_primary_r .hs-menu-item:not(:first-child) {
    margin-top: 24px;
  }

  #hs_cos_wrapper_footer_links_secondary_l,
  #hs_cos_wrapper_footer_links_secondary_r {
    font-size: 16px;
    padding-top: 14px;
  }

  #hs_cos_wrapper_footer_links_secondary_l {
    padding-right: 0;
  }

  #hs_cos_wrapper_footer_links_secondary_l .hs-menu-item:not(:first-child),
  #hs_cos_wrapper_footer_links_secondary_r .hs-menu-item:not(:first-child) {
    margin-top: 16px;
  }

  #hs_cos_wrapper_footer_links_primary .hs-menu-item:not(:first-child) {
    margin-top: 24px;
  }

  .main-footer-form {
    border-top: 1px solid #757772;
    min-height: 185px;
    padding-top: 20px;
  }

  #hs_cos_wrapper_footer_form_header h1,
  #hs_cos_wrapper_footer_form_header h2,
  #hs_cos_wrapper_footer_form_header h3,
  #hs_cos_wrapper_footer_form_header h4,
  #hs_cos_wrapper_footer_form_header h5,
  #hs_cos_wrapper_footer_form_header h6 {
    font-size: 20px;
  }

  #hs_cos_wrapper_footer_form form input[type='text'],
  #hs_cos_wrapper_footer_form form input[type='email'],
  #hs_cos_wrapper_footer_form form input[type='password'],
  #hs_cos_wrapper_footer_form form input[type='tel'],
  #hs_cos_wrapper_footer_form form input[type='number'],
  #hs_cos_wrapper_footer_form form input[type='file'],
  #hs_cos_wrapper_footer_form form input[type='date'],
  #hs_cos_wrapper_footer_form form select,
  #hs_cos_wrapper_footer_form form textarea {
    font-size: 14px;
    line-height: 121.4286%;
    padding: 17px 17px 14px;
    min-height: 55px;
  }

  #hs_cos_wrapper_footer_form form .hs-button,
  #hs_cos_wrapper_footer_form form input[type='submit'] {
    min-height: 55px;
    width: 73px;
  }

  #hs_cos_wrapper_footer_form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 14px;
    line-height: 121.4286%;
  }

  #hs_cos_wrapper_footer_form ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 14px;
    line-height: 121.4286%;
  }

  #hs_cos_wrapper_footer_form :-moz-placeholder {
    /* Firefox 18- */
    font-size: 14px;
    line-height: 121.4286%;
  }

  #hs_cos_wrapper_footer_form ::placeholder {
    font-size: 14px;
    line-height: 121.4286%;
  }

  .main-footer-middle {
    padding: 20px;
  }

  #hs_cos_wrapper_footer_address {
    text-align: center;
  }

  #hs_cos_wrapper_footer_social {
    margin-top: 30px;
  }

  #hs_cos_wrapper_footer_social .social_links {
    justify-content: center;
  }

  .section-header h1,
  .section-header h2,
  .section-header h3,
  .section-header h4,
  .section-header h5,
  .section-header h6 {
    font-size: 32px;
    margin: 0 auto 38px;
  }

  .section-header .secondary-header {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.055em;
  }

  #hs_cos_wrapper_page_header {
    padding: 47px 18px;
  }

  .page_nav_rooms-trigger {
    transform: translateY(-53px);
  }

  #hs_cos_wrapper_page_nav_rooms {
    font-size: 18px;
    line-height: 187%;
    padding: 13px 18px;
  }

  .page_nav_rooms-trigger.is-sticky+div {
    top: 53px;
  }

  #hs_cos_wrapper_page_nav_rooms ul {
    margin: 0 auto;
    max-width: 280px;
  }

  #hs_cos_wrapper_page_nav_rooms li:nth-child(4n)::after {
    content: none;
  }
}

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