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

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 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;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

div[data-global-resource-path*="header"] {
  grid-row-start: 1;
  grid-row-end: 2;
  min-width: 0; /* Fixes width issues on smaller screens */
}

div[data-global-resource-path*="footer"] {
  grid-row-start: 3;
  grid-row-end: 4;
  min-width: 0; /* Fixes width issues on smaller screens */
}

.body-container-wrapper {
  grid-row-start: 2;
  grid-row-end: 3;
  min-width: 0; /* Fixes width issues on smaller screens */
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  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;
}

@media (max-width: 767px) {
  .content-wrapper {
    padding: 0 30px;
  }

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

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

@font-face {
  font-family: 'Arboria-Book';
  src: local('Arboria-Book'), local('Arboria-Book'),
      url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/fonts/Arboria-Book.woff2') format('woff2'),
      url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/fonts/Arboria-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tenor-Sans';
  src: local('Tenor-Sans'), local('TenorSans'),
      url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/fonts/TenorSans.woff2') format('woff2'),
      url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/fonts/TenorSans.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FogtwoNo5';
  src: local('FogtwoNo5'),
      url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/fonts/FogtwoNo5.woff2') format('woff2'),
      url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/fonts/FogtwoNo5.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  color: #171717;
  font-family: 'Arboria-Book', sans-serif;
  line-height: 160%;
  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.6em;
}

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

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s linear;
}

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

a:focus {
  outline: 0;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Tenor-Sans';
  line-height: 160%;
  margin: 0 0 1em;
}

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.6em;
  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.6em;
  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.6em 0;
}

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

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

/* Image alt text */

img {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.48px;
  line-height: 160%;
  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,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 33px;
}

/* Labels */

form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

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

/* Help text */

form legend {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  border-color: #CCC;
  border-style: solid;
  border-width: 0 0 1px;
  display: block;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 160%;
  padding: 0 0 13px;
  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=file]:focus,
form select:focus,
form textarea:focus {
  border-color: #000;
  outline: 0;
}

form select {
  padding: 10px 16px;
}

form textarea {
  resize: vertical;
}

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

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

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 input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 5px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.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-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  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: 18px;
  letter-spacing: 0.04em;
  line-height: 160%;
}

::-moz-placeholder { /* Firefox 19+ */
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 160%;
}

:-moz-placeholder { /* Firefox 18- */
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 160%;
}

::placeholder {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 160%;
}

/* Headings and text */

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

.widget-type-form .hs-richtext,
.widget-type-form .hs-richtext p {
  font-size: 14px;
  margin: 0 0 22px;
}

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

/* GDPR */

.legal-consent-container .inputs-list > li:first-child {
  margin-top: 0;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 2em !important;
}

/* Validation */

.hs_error_rollup {
  color: red;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  margin-bottom: 25px;
}

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

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

.hs-error-msg {
  color: red;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  margin-top: 5px;
}

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 25px;
  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
*/

.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}
/* Sticky Header */

.main-header {
  background-color: #FFF;
  position: sticky;
  width: 100%;
  z-index: 999;
}

body[data-sticky="true"] .main-header {
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
}

body[data-sticky=true] .main-header:after {
  background: #E8E8E8;
  content: "";
  height: 100%;
  position: absolute;
  right: 100px;
  top: 0;
  width: 1px;
}

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

body[data-sticky="true"] .header-container {
  padding-top: 20px;
}

body[data-sticky="true"] .header-logo {
  margin-bottom: 0px;
}

/* Header Container */

.header-container {
  /* align-items: center; */
  display: flex;
  justify-content: space-between;
  padding: 57px 200px 20px 100px;
}

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

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

.header-logo {
  align-items: center;
  display: flex;
  height: auto;
  max-width: 205px;
  overflow: hidden;
  position: relative;
}

.header-logo img {
  display: block;
  max-width: 100%;
}

.header-logo .logo-company-name {
  font-size: 18px;
}

#hs_cos_wrapper_header_sticky_logo {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

body[data-sticky="true"] #hs_cos_wrapper_header_sticky_logo {
  opacity: 1;
  max-width: 184px;
}

body[data-sticky="true"] .header .header__logo {
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Social Links */

#hs_cos_wrapper_header_social .social-links {
  margin: 0 -10px;
}

#hs_cos_wrapper_header_social .social-links__header {
  color: #FFFFFF;
  margin: 0 10px;
}

#hs_cos_wrapper_header_social .social-links__link {
  color: #FFFFFF;
  margin: 0 10px;
}

#hs_cos_wrapper_header_social .social-links__link:hover,
#hs_cos_wrapper_header_social .social-links__link:focus {
  color: #6CB1AB;
}

body[data-sticky="true"] #hs_cos_wrapper_header_social .social-links__header {
  color: #171717;
}

body[data-sticky="true"] #hs_cos_wrapper_header_social .social-links__link {
  color: #171717;
}

body[data-sticky="true"] #hs_cos_wrapper_header_social .social-links__link:hover,
body[data-sticky="true"] #hs_cos_wrapper_header_social .social-links__link:focus {
  color: #6CB1AB;
}

/* Navigation */

.header-navigation-wrapper {
  background-color: #FFF;
  height: 100%;
  left: 0;
  min-height: 100%;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 99999;
}

body[data-nav="true"] .header-navigation-wrapper {
  opacity: 1;
  visibility: inherit;
}

.header-navigation--open,
.header-navigation--close {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #fff;
  display: block;
  padding: 0;
  position: relative;
  z-index: 999;
}

body[data-sticky="true"] .header-navigation--open,
body[data-sticky="true"] .header-navigation--close,
body[data-nav="true"] .header-navigation--open,
body[data-nav="true"] .header-navigation--close {
  color: #171717;
}

body[data-sticky="true"] .header-navigation--open:hover,
body[data-sticky="true"] .header-navigation--open:focus body[data-sticky="true"] .header-navigation--close:hover,
body[data-sticky="true"] .header-navigation--close:focus,
body[data-nav="true"] .header-navigation--open:hover,
body[data-nav="true"] .header-navigation--open:focus,
body[data-nav="true"] .header-navigation--close:hover,
body[data-nav="true"] .header-navigation--close:focus {
  color: #6CB1AB;
}

button.header-navigation--toggle.header-navigation--close {
  position: absolute;
  top: 40px;
  right: 40px;
}

.header-navigation--open:hover,
.header-navigation--open:focus,
.header-navigation--close:hover,
.header-navigation--close:focus,
.header-navigation--toggle.header-navigation--close:hover,
.header-navigation--toggle.header-navigation--close:focus {
  background-color: transparent;
  border: 0;
  color: #6CB1AB;
}

.header-navigation--open:active,
.header-navigation--close:active {
  transform: scale(0.9);
}

.header-navigation--open svg,
.header-navigation--close svg {
  display: block;
  height: auto;
  width: 30px;
}

.header-navigation--open {
  padding: 35px;
  position: absolute;
  right: 0;
  top: 33px;
}

body[data-sticky=true] .header-navigation--open {
  top: 19px;
}

.header-navigation--close svg {
  width: 23px;
}

.header-column.header-navigation {
  align-items: baseline;
  display: flex;
  gap: 0 30px;
  justify-content: space-between;
}

body[data-sticky="true"] .header-column.header-navigation {
  align-items: center;
}

.header-navigation-wrapper--inner {
  flex-flow: row wrap;
  display: flex;
  min-height: 100vh;
}

.header-navigation-column__column-1 {
  background-color: #0F3F65;
  flex-basis: 50%;
  padding: 75px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
}

.header-navigation-column__column-2 {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
}

.header-navigation-column .header-navigation-column--inner {
  max-width: 720px;
  width: 100%;
}

.header-navigation-column__column-1 .header-navigation-column--inner {
  margin-left: auto;
}

.header-navigation-column__column-2 .header-navigation-column--inner {
  margin-right: auto;
  max-width: 520px;
}

#hs_cos_wrapper_popup_nav_logo {
  text-align: center;
  max-width: 205px;
  margin: 0 auto 113px;
}

#hs_cos_wrapper_popup_navigation_primary li.menu__item {
  justify-content: center;
  text-align: center;
}

#hs_cos_wrapper_popup_navigation_primary li.menu__item .menu__link {
  color: #FFF;
  font-family: 'Tenor-Sans', sans-serif;
  font-size: 40px;
  justify-content: center;
  letter-spacing: -1.2px;
  line-height: 105%;
}

#hs_cos_wrapper_popup_navigation_primary .menu__item--depth-1>a:hover,
#hs_cos_wrapper_popup_navigation_primary .menu__item--depth-1>a:focus,
#hs_cos_wrapper_popup_navigation_primary .menu__item--depth-1>a:focus-within {
  color: #6EB4AE;
}

#hs_cos_wrapper_popup_navigation_primary .menu__item--depth-2>a.menu__link {
  color: #FFFFFF50;
}

#hs_cos_wrapper_popup_navigation_primary .menu__item--depth-2>a:hover,
#hs_cos_wrapper_popup_navigation_primary .menu__item--depth-2>a:focus,
#hs_cos_wrapper_popup_navigation_primary .menu__item--depth-2>a:focus-within {
  color: #FFFFFF;
}

#hs_cos_wrapper_popup_navigation_primary .menu__submenu--level-2.no-list {
  display: block;
}

#hs_cos_wrapper_popup_navigation_primary .menu__submenu--level-2.no-list>li.menu__item:not(:last-child) {
  margin-bottom: 15px;
}

#hs_cos_wrapper_popup_navigation_primary ul.menu__wrapper>li.menu__item:not(:last-child) {
  margin-bottom: 25px;
}

#hs_cos_wrapper_popup_navigation_primary li.menu__item--has-submenu>.menu__link {
  margin-bottom: 25px;
}

#hs_cos_wrapper_popup_navigation_primary li.menu__item--has-submenu .menu__child-toggle {
  display: none;
}

#hs_cos_wrapper_popup_navigation_primary ul.menu__submenu .menu__link {
  font-family: Inter, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .55em;
  line-height: 160%;
}

#hs_cos_wrapper_popup_menu_buttons .grouped-buttons {
  justify-content: center;
  gap: 15px;
}

#hs_cos_wrapper_popup_menu_buttons {
  margin-top: 112px;
}

.header-navigation-column__column-2 {
  padding: 135px 100px 75px;
}

#hs_cos_wrapper_newsletter_form {
  margin-bottom: 134px;
}

#hs_cos_wrapper_newsletter_form_title {
  font-size: 60px;
  letter-spacing: -1.8px;
  line-height: 90%;
  margin-bottom: 50px;
  text-align: center;
}

#hs_cos_wrapper_newsletter_form_title small {
  color: #6EB4AE;
  display: block;
  font-family: 'Arboria-Book', sans-serif;
  font-size: 16px;
  letter-spacing: 8.8px;
  line-height: 160%;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

#hs_form_target_newsletter_form .input .hs-input {
  border-color: #D8D8D8;
}

#hs_form_target_newsletter_form .hs-submit {
  text-align: center;
}

#hs_form_target_newsletter_form input[type=submit] {
  font-size: 14px;
  line-height: 160%;
  letter-spacing: .03em;
  margin-top: 2px;
  padding: 11px 30px 12px;
}

.main-footer--address,
.main-footer--phone {
  align-items: center;
  display: flex;
  gap: 7px;
}

.popup-navigation--address,
.popup-navigation--phone {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  text-align: center;
}

.popup-navigation--address svg,
.popup-navigation--phone svg {
  flex-shrink: 0;
  margin-top: 4px;
  width: 18px;
}

.popup-navigation--address address {
  font-style: normal;
}

.popup-navigation-details {
  align-items: center;
  display: flex;
  flex-flow: column wrap;
  gap: 15px;
  font-size: 16px;
  justify-content: center;
  letter-spacing: .42px;
  line-height: 156%;
  margin: 0 auto;
  max-width: 393px;
  text-transform: uppercase;
}

.popup-navigation-details a {
  color: #171717;
}

.popup-navigation-details a:hover {
  text-decoration: none;
}

#hs_cos_wrapper_popup_nav_social .social-links__header {
  font-size: 16px;
}

@media screen and (max-width: 1024px) {
  body[data-sticky=true] .main-header:after {
    right: 90px;
  }

  .header-navigation--open {
    padding: 30px;
    top: 21px;
  }

  body[data-sticky=true] .header-navigation--open {
    top: 21px;
  }

  body[data-nav=true] .header-navigation--close {
    color: white;
  }

  .header-navigation-wrapper--inner {
    flex-flow: column wrap;
  }

  .header-container {
    padding-top: 20px;
    padding-left: 45px;
    padding-right: 135px;
    gap: 65px;
  }

  .header-logo {
    max-width: 174px;
  }

  .header-navigation-column__column-1 {
    padding: 80px 0;
  }

  #hs_cos_wrapper_header_buttons .grouped-buttons .button {
    padding: 11px 25px;
  }

  .header-column.header-navigation {
    align-items: center;
    flex-shrink: 0;
    gap: 0 20px;
    margin-bottom: 0;
  }

  #hs_cos_wrapper_popup_nav_logo {
    margin-bottom: 169px;
  }

  .header-navigation-column .header-navigation-column--inner {
    margin: auto;
  }

  #hs_cos_wrapper_popup_menu_buttons {
    margin-top: 170px;
  }

  .header-navigation-column__column-2 {
    padding: 190px 124px 80px;
  }

  #hs_cos_wrapper_newsletter_form_title small {
    line-height: 160%;
    margin-bottom: 10px;
  }

  #hs_cos_wrapper_newsletter_form {
    margin-bottom: 191px;
  }

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

  #hs_form_target_newsletter_form .hs-form-field {
    margin-bottom: 33px;
  }

  #hs_form_target_newsletter_form input[type=submit] {
    margin-top: 2px;
  }

  #hs_cos_wrapper_popup_nav_social .social-links__icon svg {
    height: 17px;
  }

  #hs_cos_wrapper_popup_nav_social .social-links__header {
    font-size: 16px;
  }

  .popup-navigation-details {
    letter-spacing: .03em;
  }
}

@media screen and (max-width: 767px) {
  body[data-sticky=true] .main-header:after {
    right: 70px;
  }

  #hs_cos_wrapper_header_buttons,
  #hs_cos_wrapper_header_social {
    display: none;
  }

  .header-container {
    padding-left: 35px;
    padding-right: 70px;
  }

  .header-column.header-navigation {
    justify-content: flex-end;
  }

  .header-logo {
    max-width: 141px;
  }

  .header-navigation-column__column-1 {
    padding: 60px 0;
  }

  .header-navigation--open {
    padding: 20px;
    top: 22px;
  }

  body[data-sticky=true] .header-navigation--open {
    top: 22px;
  }

  body[data-nav=true] .header-navigation--close {
    right: 35px;
    top: 35px;
  }

  #hs_cos_wrapper_popup_nav_logo {
    margin-bottom: 137px;
  }

  #hs_cos_wrapper_popup_navigation_primary li.menu__item .menu__link {
    font-size: 35px;
  }

  #hs_cos_wrapper_popup_navigation_primary ul.menu__submenu .menu__link {
    font-size: 18px;
  }

  #hs_cos_wrapper_popup_menu_buttons {
    margin-top: 138px;
  }

  #hs_cos_wrapper_popup_menu_buttons .grouped-buttons {
    flex-flow: column wrap;
    max-width: 181px;
    margin: 0 auto;
  }

  #hs_cos_wrapper_popup_menu_buttons a.button {
    padding-left: 35px;
    padding-right: 35px;
  }

  .header-navigation-column__column-2 {
    padding: 135px 35px 60px;
  }

  #hs_cos_wrapper_newsletter_form {
    margin-bottom: 136px;
  }

  #hs_cos_wrapper_newsletter_form_title small {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #hs_cos_wrapper_newsletter_form_title {
    font-size: 45px;
    line-height: 101.25%;
    margin-bottom: 45px;
  }

  #hs_form_target_newsletter_form .input .hs-input {
    font-size: 16px;
  }

  #hs_form_target_newsletter_form .input .hs-input::placeholder {
    font-size: 16px;
  }

  #hs_form_target_newsletter_form .hs-form-field {
    margin-bottom: 30px;
  }

  #hs_form_target_newsletter_form .hs-submit {
    margin-top: 3px;
  }

  .popup-navigation--address {
    max-width: 228px;
  }
}
.main-footer {
  background-color: #FEF7EE;
}

.main-footer--top {
  padding-bottom: 100px;
  padding-top: 100px;
}

.main-footer--top a {
  color: inherit;
}

.main-footer--top a:hover,
.main-footer--top a:focus {
  color: #6CB1AB;
  text-decoration: none;
}

#hs_cos_wrapper_footer_logo {
  margin: 0 auto;
  margin-bottom: 100px;
  text-align: center;
  max-width: 200px;
}

#hs_cos_wrapper_footer_top_links {
  color: #171717;
  font-family: 'Tenor-Sans', sans-serif;
  font-size: 28px;
  letter-spacing: -0.84px;
  line-height: normal;
  margin-bottom: 25px;
  text-transform: capitalize;
}

#hs_cos_wrapper_footer_top_links .hs-menu-wrapper ul {
  gap: 60px;
  justify-content: center;
}

.main-footer--details {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  gap: 60px;
  justify-content: center;
  letter-spacing: 0.42px;
  line-height: 160%;
  text-transform: uppercase;
}

.main-footer--address,
.main-footer--phone {
  align-items: center;
  display: flex;
  gap: 7px;
}

.main-footer--address svg,
.main-footer--phone svg {
  flex-shrink: 0;
  width: 18px;
}

.main-footer--address address {
  font-style: normal;
}

#hs_cos_wrapper_footer_social .social-links__header {
  margin-right: 0;
}

.main-footer--bottom {
  background-color: #0F3F65;
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 160%;
  padding: 15px 0;
}

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

.main-footer--bottom a {
  color: inherit;
}

.main-footer--bottom a:hover,
.main-footer--bottom a:focus {
  color: #6CB1AB;
  text-decoration: none;
}

.main-footer--bottom .content-wrapper {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 100px;
}

#hs_cos_wrapper_footer_btm_links .hs-menu-wrapper ul {
  gap: 30px;
}

.main-footer--bottom .website-by {
  text-align: right;
}

.main-footer--bottom .website-by span,
.main-footer--bottom .website-by img {
  display: inline-block;
  vertical-align: middle;
}

.main-footer--bottom .website-by img {
  margin-left: 12px;
}

@media screen and (max-width: 1024px) {
  .main-footer--top {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  #hs_cos_wrapper_footer_logo {
    margin-bottom: 80px;
  }

  #hs_cos_wrapper_footer_top_links .hs-menu-wrapper ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #hs_cos_wrapper_footer_top_links {
    margin-bottom: 80px;
  }

  .main-footer--details {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .main-footer--bottom {
    padding: 25px 0;
  }

  .main-footer--bottom .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .main-footer--top {
    padding: 80px 0;
  }

  .main-footer--address {
    text-align: center;
    align-items: flex-start;
  }

  .main-footer--address svg {
    margin-top: 3px;
  }

  #hs_cos_wrapper_footer_social .social-links__icon svg {
    height: 18px;
  }

  .main-footer--bottom .content-wrapper {
    padding: 0 72px;
  }
}
/* 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 {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover>.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;
}

.food_menu_nav .food_menu_nav-content {
  background-image: url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/images/bg-b-green.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonials {
  background-image: url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/images/bg-blue.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.welcome-section--menu-text-content-wrapper {
  background-image: url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/images/bg-blue.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.welcome-section--full-width .welcome-section--menu-text-content-wrapper {
  background: none;
}

.welcome-section--full-width .welcome-section--inner {
  background-image: url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/images/bg-blue.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column wrap;
}

.header-navigation-column__column-1 {
  background-image: url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/images/bg-pattern-nav.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.food-menu:nth-child(odd) .food-menu-content {
  background-image: url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/images/bg-pattern-foodmenu.jpg');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

#hs_cos_wrapper_contact_form {
  background-image: url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/images/bg-pattern-form.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.body-container--hours-directions .cta_banner {
  background-color: #0F3F65;
  background-image: url('https://43428410.fs1.hubspotusercontent-na1.net/hubfs/43428410/raw_assets/public/sirocco/images/bg-pattern-reservations.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.body-container--hours-directions .cta_banner:before {
  content: none
}

/* glightbox Clean Theme Override */

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background-color: #6EB4AE !important;
  border-radius: 0 !important;
  border: 0;
  padding: 0;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background-color: #FFFFFF !important;
}

.glightbox-clean .gclose:hover path,
.glightbox-clean .gnext:hover path,
.glightbox-clean .gprev:hover path {
  fill: #6EB4AE !important;
}

.glightbox-clean .gclose {
  opacity: 1 !important;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  width: 50px !important;
}

.glightbox-clean .gslide-description {
  position: relative;
}

.glightbox-clean .gdesc-inner {
  background: #6EB4AE;
  color: #FFFFFF;
}

.glightbox-mobile .glightbox-clean .gslide-description {
  padding: 0 !important;
}

.glightbox-mobile .glightbox-clean .gslide-desc {
  background: #6EB4AE;
  color: #FFFFFF !important;
}
@media (max-width: 1024px) {
  
}
@media (max-width: 767px) {
  
}

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