/* 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: 'DINOT';
  src: local('DINOT'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT.woff2') format('woff2'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINOT';
  src: local('DINOT-Light'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT-Light.woff2') format('woff2'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINOT';
  src: local('DINOT-Medium'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT-Medium.woff2') format('woff2'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINOT';
  src: local('DINOT-Bold'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT-Bold.woff2') format('woff2'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINOT';
  src: local('DINOT-Black'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT-Black.woff2') format('woff2'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/DINOT-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Faustine';
  src: local('Faustine'), local('FaustineRegular'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/FaustineRegular.woff2') format('woff2'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/FaustineRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glamour Absolute';
  src: local('Glamour Absolute regular'), local('GlamourAbsolute-regular'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/GlamourAbsolute-regular.woff2') format('woff2'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/GlamourAbsolute-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Neue Montreal Book';
  src: local('PP Neue Montreal Book'), local('PPNeueMontreal-Book'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/PPNeueMontreal-Book.woff2') format('woff2'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/PPNeueMontreal-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Neue Montreal';
  src: local('PP Neue Montreal Medium'), local('PPNeueMontreal-Medium'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/PPNeueMontreal-Medium.woff2') format('woff2'),
      url('//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/fonts/PPNeueMontreal-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: 'DINOT', sans-serif;
  line-height: 180%;
  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.8em;
}

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: 'Glamour Absolute';
  letter-spacing: 2px;
  line-height: 100%;
  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.8em;
  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.8em;
  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.8em 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.167em;
  line-height: 125%;
  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: 20px;
}

/* Labels */

form label {
  color: #2E2418;
  display: block;
  font-size: 12px;
  letter-spacing: 0.042em;
  line-height: 166.7%;
  text-transform: uppercase;
}

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

/* Help text */

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

/* 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 input[type=date],
form select,
form textarea {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  color: #2E2418;
  display: block;
  font-size: 12px;
  letter-spacing: 0.042em;
  line-height: 166.7%;
  padding: 15px 23px;
  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 input[type=date]:focus,
form select:focus,
form textarea:focus {
  border-color: #000;
  outline: 0;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 11'%3E%3Cpath stroke='%23000' stroke-width='1.676' d='m19.002 1.374-8.806 8.269-8.806-8.27'/%3E%3C/svg%3E");
  background-position: right 23px top 50%;
  background-repeat: no-repeat;
  background-size: 10px auto;
  padding-bottom: 15px;
  padding-top: 15px;
}

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

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

form fieldset.form-columns-0 {
  margin: 0 !important;
}

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

form fieldset .hs-form-field:not(.hs-fieldtype-checkbox):not(.hs-fieldtype-radio) > label {
  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;
}

/* 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: 23px;
  top: 50%;
  transform: translateY(-50%);
}

.hs-dateinput .hs-input[type=date] {
  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-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 */
  color: #2E2418;
  display: block;
  font-size: 12px;
  letter-spacing: 0.042em;
  line-height: 166.7%;
  text-transform: uppercase;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #2E2418;
  display: block;
  font-size: 12px;
  letter-spacing: 0.042em;
  line-height: 166.7%;
  text-transform: uppercase;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #2E2418;
  display: block;
  font-size: 12px;
  letter-spacing: 0.042em;
  line-height: 166.7%;
  text-transform: uppercase;
}

:-moz-placeholder { /* Firefox 18- */
  color: #2E2418;
  display: block;
  font-size: 12px;
  letter-spacing: 0.042em;
  line-height: 166.7%;
  text-transform: uppercase;
}

::placeholder {
  color: #2E2418;
  display: block;
  font-size: 12px;
  letter-spacing: 0.042em;
  line-height: 166.7%;
  text-transform: uppercase;
}

/* Headings and text */

.widget-type-form .form-title {
  color: #343434;
  font-size: 35px;
  letter-spacing: 1px;
  line-height: 71%;
  margin-bottom: 30px;
}

.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 label,
.legal-consent-container .hs-richtext {
  color: #000000;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 167%;
  position: relative;
  text-transform: none;
}

.legal-consent-container .hs-richtext {
  padding: 0 9px;
  margin-bottom: 17px;
}

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

.legal-consent-container .hs-form-booleancheckbox-display input {
  left: 0;
  margin-right: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0 !important;
  padding-left: 35px;
  position: relative;
}

.legal-consent-container .hs-form-booleancheckbox-display > span:before,
.legal-consent-container .hs-form-booleancheckbox-display > span:after {
  content: "";
  display: block;
  position: absolute;
}

.legal-consent-container .hs-form-booleancheckbox-display > span:before {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  height: 20px;
  left: 0;
  top: 0;
  width: 20px;
}

.legal-consent-container .hs-form-booleancheckbox-display > span:after {
  background-color: #8B6E4B;
  height: 14px;
  left: 3px;
  opacity: 0;
  top: 3px;
  width: 14px;
}

.legal-consent-container .hs-form-booleancheckbox-display input:checked + span:before {
  border-color: #8B6E4B;
}

.legal-consent-container .hs-form-booleancheckbox-display input:checked + span:after {
  opacity: 1;
}

/* 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.167em;
  line-height: 125%;
  min-width: 140px;
  padding: 17px 40px 16px;
  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: relative;
  transition: background-color 0.5s ease;
  width: 100%;
  z-index: 999;
}

.opened-locationNav .main-header {
  background-color: #EAEBE6;
}

.sticky-header .main-header {
  position: fixed;
  top: 0;
  left: 0;
}

html.nav-opened,
html.locationNav-opened {
  overflow: hidden;
}

/* Header Container */

.header__container--main {
  border-bottom: 1px solid rgba(153, 119, 54, 0.1);
}

.sticky-header .header__container--main {
  background-color: #343434;
  border-bottom: 0;
}

.header__container--main .header__container {
  align-items: end;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding-bottom: 42px;
  padding-top: 43px;
}

.sticky-header .header__container--main .header__container {
  align-items: center;
  padding-bottom: 10px;
  padding-top: 10px;
}

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

.header__container--top {
  border-bottom: 1px solid rgba(153, 119, 54, 0.1);
}

.sticky-header .header__container--top {
  display: none;
}

.header__container--top .header__container {
  align-items: center;
  display: flex;
  justify-content: end;
  min-height: 34px;
  padding-bottom: 3px;
  padding-top: 3px;
}

.header__container--btm {
  background-color: #FFF;
  border-bottom: 60px solid #EAEBE6;
  position: relative;
  transition: background-color 0.5s ease;
  z-index: 4;
}

.opened-locationNav .header__container--btm {
  background-color: #EAEBE6;
}

.header__container--btm .header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 9px;
  padding-top: 9px;
}

#hs_cos_wrapper_locations_nav {
  background-color: #EAEBE6;
  display: none;
  height: calc(100vh - 202.97px);
  height: calc(100svh - 202.97px);
  left: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  padding-bottom: 60px;
  padding-top: 83.03px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 99;
}

#hs_cos_wrapper_locations_nav.opened {
  display: block;
}

#hs_cos_wrapper_locations_nav.animated {
  animation-duration: 0.6s;
}

.body-wrapper:before {
  background-color: #000;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.6s ease;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

.body-wrapper.opened-locationNav:before {
  opacity: 0.3;
  visibility: visible;
}

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

/* Top Navigation */

#hs_cos_wrapper_navigation_top {
  font-family: 'Fira Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 120%;
  text-transform: uppercase;
}

#hs_cos_wrapper_navigation_top a {
  color: #8F8F8F;
}

#hs_cos_wrapper_navigation_top a:hover,
#hs_cos_wrapper_navigation_top a:hover {
  color: #8B6E4B;
  text-decoration: none;
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  margin-left: 20px;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  background-color: #FFF;
  border: 1px solid;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: auto;
  min-width: 120px;
  opacity: 0;
  padding-top: 0;
  right: -8px;
  text-align: left;
  top: 100%;
  transform: translateX(0);
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: auto;
  right: 0;
  top: -20px;
}

.header__language-switcher .lang_list_class:after {
  left: auto;
  right: 0;
  top: -19px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -19px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-family: 'Fira Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 120%;
  padding: 5px 10px;
  text-align: right;
  text-transform: uppercase;
}

.header__language-switcher .lang_list_class li:first-child {
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher .lang_list_class a:hover,
.header__language-switcher .lang_list_class a:focus {
  color: #8B6E4B;
}

.header__language-switcher--label {
  display: flex;
  font-family: 'Fira Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 120%;
  position: relative;
  z-index: 9999;
}

.header__language-switcher--label-current {
  align-items: center;
  color: #8F8F8F;
  display: flex;
  font-family: 'Fira Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 120%;
  padding: 8px 0;
  text-transform: uppercase;
}

.header__language-switcher--label-current:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #8F8F8F;
  content: "";
  display: block;
  height: 0px;
  margin-left: 6px;
  width: 0px;
}

.header__language-switcher .globe_class {
  background-image: none;
  height: 0;
  width: 0;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 0;
}

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

.header__logo--main {
  margin-bottom: -110px;
  position: relative;
}

.sticky-header .header__logo--main {
  display: none;
}

.main-header--no-navigation .header__logo--main {
  margin-bottom: 0;
}

.header__logo--main .logo-company-name,
.header__logo--main .widget-type-text {
  color: #937959;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 116.7%;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

#hs_cos_wrapper_header_logo {
  max-width: 140.19px;
  padding-left: 38px;
}

.header__logo--sticky {
  display: none;
}

.sticky-header .header__logo--sticky {
  display: block;
}

#hs_cos_wrapper_header_logo_sticky {
  margin: 0 auto;
  max-width: 78px;
  padding-left: 22px;
}

.header__logo--sticky .widget-type-text {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 116.7%;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

/* Header Button */

#hs_cos_wrapper_header_button .button {
  letter-spacing: 2px;
}

/* Navigation */

.header__navigation_wrapper {
  display: none;
}

.header__navigation_wrapper.open {
  background-color: #EAEBE6;
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  left: 0;
  min-height: 100vh;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.header__navigation_open,
.header__navigation_close {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #000;
  padding: 0;
  position: relative;
  z-index: 999;
}

.header__navigation_open:hover,
.header__navigation_open:focus,
.header__navigation_close:hover,
.header__navigation_close:focus {
  background-color: transparent;
  border: 0;
  color: #000;
}

.header__navigation_open svg,
.header__navigation_close svg {
  display: block;
  width: auto;
}

.header__navigation_open {
  align-items: center;
  background-color: #343434;
  color: #FFFFFF;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 115.4%;
  padding: 16px 21px;
  transition: background-color 0.15s linear, border-color 0.15s linear, color 0.15s linear;
}

.header__navigation_open:hover,
.header__navigation_open:focus {
  background-color: #8B6E4B;
  color: #FFFFFF;
}

.header__navigation_open svg {
  height: 18px;
  margin-right: 19px;
}

.header__navigation_close {
  color: #000;
  display: block;
  position: absolute;
  top: 27px;
  left: 40px;
}

.header__navigation_close:hover,
.header__navigation_close:focus {
  color: #8B6E4B;
}

.header__navigation_close svg {
  height: 41px;
}

.header__navigation-links {
  display: flex;
  flex-flow: column wrap;
  flex: 0 0 441px;
  justify-content: center;
  padding: 60px 0 60px 128px;
}

#hs_cos_wrapper_navigation_primary {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 130%;
  margin-bottom: 60px;
  padding-left: 7px;
  text-transform: uppercase;
}

#hs_cos_wrapper_navigation_primary a {
  color: inherit;
}

#hs_cos_wrapper_navigation_primary a:hover,
#hs_cos_wrapper_navigation_primary a:focus,
#hs_cos_wrapper_navigation_primary a.menu__link--active-branch,
#hs_cos_wrapper_navigation_primary a.menu__link--active-link {
  color: #8B6E4B;
}

#hs_cos_wrapper_navigation_primary .menu__item {
  margin-top: 25px;
}

#hs_cos_wrapper_navigation_primary .menu__item:first-child {
  margin-top: 0;
}

#hs_cos_wrapper_navigation_secondary {
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  letter-spacing: 0.033em;
  line-height: 126.7%;
  margin-top: 60px;
  padding-left: 10px;
  text-transform: uppercase;
}

#hs_cos_wrapper_navigation_secondary a {
  color: inherit;
}

#hs_cos_wrapper_navigation_secondary a:hover,
#hs_cos_wrapper_navigation_secondary a:focus,
#hs_cos_wrapper_navigation_secondary a.menu__link--active-branch,
#hs_cos_wrapper_navigation_secondary a.menu__link--active-link {
  color: #8B6E4B;
}

#hs_cos_wrapper_navigation_secondary .menu__item {
  margin-top: 20px;
}

#hs_cos_wrapper_navigation_secondary .menu__item:first-child {
  margin-top: 0;
}

#hs_cos_wrapper_header_insider_form_ {
  flex: 1 1;
}

#hs_cos_wrapper_header_insider_form_ .insider-form {
  align-items: center;
  background-image: url("//22537043.fs1.hubspotusercontent-na1.net/hubfs/22537043/raw_assets/public/marmara-hotels/images/insider-form-bg.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 872.5px auto;
    display: flex;
    flex-wrap: wrap;
    min-height: 100%;
    }

button.hs-language-switcher__button,
button.hs-language-switcher__button:hover,
button.hs-language-switcher__button:focus {
  align-items: center;
  color: #8F8F8F;
  display: flex;
  font-family: 'Fira Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 120%;
  padding: 8px 0;
  text-transform: uppercase;
  background: transparent;
  border: none;
}

button.hs-language-switcher__button .hs-language-switcher__current-language {
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: normal;
}

button.hs-language-switcher__button #hs_cos_wrapper_language_switcher_ {
  display: none !important;
}

button.hs-language-switcher__button svg {
  margin-left: 4px !important;
  fill: #8F8F8F !important;
  width: 10px !important;
  height: auto !important;
}
.main-footer {
  background-color: #EAEBE6;
}

.footer-top .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 82px 90px 40px;
}

.footer-top--home .content-wrapper {
  grid-template-columns: 96.85px 1fr 1fr;
  padding: 61px 90px;
}

.footer-top--home .footer-top--details {
  margin-top: 143px;
}

.footer-top--branding {
  align-items: end;
  display: grid;
  grid-template-columns: 96.85px 1fr;
  margin-bottom: 56.97px;
}

#hs_cos_wrapper_footer_logo {
  width: 100px;
}

.footer-top--home #hs_cos_wrapper_footer_logo {
  margin-top: 49px;
}

#hs_cos_wrapper_footer_logo_text {
  color: #000000;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 125%;
  text-transform: uppercase;
}

.footer-top--home #hs_cos_wrapper_footer_logo_text {
  margin-bottom: 21px;
}

#hs_cos_wrapper_footer_links-w-icon .links-w-icon,
#hs_cos_wrapper_footer_links-w-icon_ .links-w-icon {
  align-items: flex-start;
  gap: 21px 50px;
  justify-content: flex-start;
}

.footer-top--home #hs_cos_wrapper_footer_links-w-icon .links-w-icon,
.footer-top--home #hs_cos_wrapper_footer_links-w-icon_ .links-w-icon {
  align-items: flex-start;
  flex-flow: column wrap;
  gap: 10px;
  justify-content: flex-start;
}

#hs_cos_wrapper_footer_links-w-icon .link-w-icon,
#hs_cos_wrapper_footer_links-w-icon_ .link-w-icon {
  align-items: flex-start;
}

.footer-top--home #hs_cos_wrapper_footer_links-w-icon .link-w-icon svg,
.footer-top--home #hs_cos_wrapper_footer_links-w-icon_ .link-w-icon svg {
  margin-right: 10px;
  margin-top: 2px;
}

#hs_cos_wrapper_footer_form {
  margin-left: auto;
  max-width: 399px;
  width: 100%;
}

#hs_cos_wrapper_footer_form form label {
  color: #000000;
}

#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 select,
#hs_cos_wrapper_footer_form form textarea {
  background-color: transparent;
  color: #000000;
}

#hs_cos_wrapper_footer_form .form-title {
  padding-left: 20px;
  padding-top: 57px;
  position: relative;
  z-index: 1;
}

#hs_cos_wrapper_footer_form .form-title:before {
  color: #D3B88B;
  content: "Newsletter";
  font-family: 'Faustine';
  font-size: 70px;
  font-weight: 400;
  left: 0;
  letter-spacing: 5px;
  line-height: 114%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.footer-top--form-tr #hs_cos_wrapper_footer_form .form-title:before {
  content: "Bülten";
}

.footer-btm {
  background: rgba(0, 0, 0, 0.05);
  padding-bottom: 60px;
  padding-top: 70px;
}

.footer-btm .content-wrapper {
  padding-left: 90px;
  padding-right: 90px;
}

.footer-btm--links-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
}

.footer-btm--home {
  padding-bottom: 22px;
  padding-top: 87px;
}

.footer-btm--home .content-wrapper {
  padding-left: 40px;
  padding-right: 40px;
}

.footer-btm--links > h4 {
  color: #151515;
  font-family: 'DINOT', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 128.6%;
  margin-bottom: 30px;
  text-transform: uppercase;
}

html[lang="tr"] .footer-btm--links > h4 {
  font-family: 'Clinica Pro', sans-serif;
}

.footer-btm--links .widget-type-simple_menu {
  color: #151515;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 125%;
  text-transform: uppercase;
}

.footer-btm--links .widget-type-simple_menu a {
  color: inherit;
}

.footer-btm--links .widget-type-simple_menu a:hover,
.footer-btm--links .widget-type-simple_menu a:focus {
  color: #8B6E4B;
  text-decoration: none;
}

.footer-btm--links .hs-menu-item {
  margin-top: 20px;
}

.footer-btm--links .hs-menu-item:first-child {
  margin-top: 0;
}

#hs_cos_wrapper_footer_social_top {
  margin-top: 21px;
}

#hs_cos_wrapper_footer_social_top .social-links {
  justify-content: flex-start;
  margin: 0 -14px;
}

#hs_cos_wrapper_footer_social_top .social-links__link {
  color: #000000;
  margin: 0 14px;
}

#hs_cos_wrapper_footer_social_top .social-links__link:hover,
#hs_cos_wrapper_footer_social_top .social-links__link:focus {
  color: #8B6E4B;
}

#hs_cos_wrapper_footer_social_top .social-links__icon {
  height: 14px;
  width: 14px;
}

#hs_cos_wrapper_footer_social_top .social-links__icon svg {
  height: 14px;
}

#hs_cos_wrapper_footer_social_btm {
  margin-top: 52px;
}

#hs_cos_wrapper_footer_social_btm .social-links {
  justify-content: flex-start;
  margin: 0 -10.99px;
}

#hs_cos_wrapper_footer_social_btm .social-links__link {
  color: #000000;
  margin: 0 10.99px;
}

#hs_cos_wrapper_footer_social_btm .social-links__link:hover,
#hs_cos_wrapper_footer_social_btm .social-links__link:focus {
  color: #8B6E4B;
}

#hs_cos_wrapper_footer_social_btm .social-links__icon {
  height: 11px;
  width: 10.99px;
}

#hs_cos_wrapper_footer_social_btm .social-links__icon svg {
  height: 11px;
}

.footer-info {
  background-color: #8B6E4B;
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 125%;
  padding: 36px 0 35px;
}

.footer-info p {
  margin: 0;
}

.footer-info a,
.footer-info a:hover,
.footer-info a:focus {
  color: inherit;
}

.footer-info .content-wrapper {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  justify-content: space-between;
}

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

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

.footer-info .website-by img {
  margin-left: 10px;
}
/* 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 .hs-menu-children-wrapper {
  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;
}

/* Section Header */

.section-header h1,
.section-header h2,
.section-header h3,
.section-header h4,
.section-header h5,
.section-header h6 {
  color: #343434;
  font-size: 48px;
  letter-spacing: 0.042em;
  line-height: 153%;
  text-align: center;
  margin-bottom: 10px;
}

.section-header .secondary-header {
  color: #000000;
  font-size: 16px;
  letter-spacing: 0.031em;
  line-height: 200%;
  margin: 0 auto;
  max-width: 726px;
  text-align: center;
}

/* Page Header */

#hs_cos_wrapper_page_header {
  background-color: #EAEBE6;
  padding-bottom: 112px;
  padding-top: 56px;
}

#hs_cos_wrapper_page_header h1,
#hs_cos_wrapper_page_header h2,
#hs_cos_wrapper_page_header h3,
#hs_cos_wrapper_page_header h4,
#hs_cos_wrapper_page_header h5,
#hs_cos_wrapper_page_header h6 {
  color: #343434;
  font-size: 72px;
  letter-spacing: 0.014em;
  line-height: 102%;
  text-align: center;
}

#hs_cos_wrapper_page_header .hs_cos_wrapper_type_header {
  display: block;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Page Header */

#hs_cos_wrapper_section_page_header {
  background-color: #EAEBE6;
  padding-bottom: 58px;
  padding-top: 83px;
}

#hs_cos_wrapper_section_page_header .hs_cos_wrapper_type_section_header {
  display: block;
  margin: 0 auto;
  padding: 0 40px;
}

#hs_cos_wrapper_section_page_header .secondary-header {
  max-width: 646px;
}
@media (max-width: 1024px) {
  .header__container--top .header__container,
  .header__container--main .header__container,
  .header__container--btm .header__container {
    padding-left: 34px;
    padding-right: 34px;
  }

  .sticky-header .header__navigation_open {
    margin-left: -21px;
  }

  .header__container--btm {
    border-bottom-width: 50px;
  }

  #hs_cos_wrapper_locations_nav {
    padding-bottom: 85px;
    padding-top: 72.03px;
  }

  .header__logo--sticky {
    max-width: 78px;
  }

  .header__navigation_close {
    top: 27px;
    left: 27px;
  }

  .header__navigation-links {
    flex: 0 0 353px;
    padding-left: 80px;
  }

  #hs_cos_wrapper_header_insider_form_ .insider-form {
    background-size: 100% auto;
  }

  .footer-top .content-wrapper {
    display: block;
    padding: 77px 80px 80px;
  }

  .footer-top--home .content-wrapper {
    display: grid;
    grid-template-columns: 96.85px 1fr;
  }

  .footer-top--branding {
    margin-bottom: 44px;
  }

  .footer-top--home .footer-top--details {
    margin-top: 90px;
  }

  .footer-top--home #hs_cos_wrapper_footer_logo {
    margin-top: 0;
  }

  #hs_cos_wrapper_footer_links-w-icon .link-w-icon br,
  #hs_cos_wrapper_footer_links-w-icon_ .link-w-icon br {
    display: none;
  }

  .footer-top--form {
    grid-column-end: 3;
    grid-column-start: 1;
    margin-top: 52px;
  }

  #hs_cos_wrapper_footer_form {
    max-width: none;
  }

  .footer-btm {
    padding-bottom: 77px;
    padding-top: 76px;
  }

  .footer-btm--home {
    padding-bottom: 35px;
    padding-top: 60px;
  }

  .footer-btm--home .content-wrapper {
    padding-left: 35px;
    padding-right: 35px;
  }

  #hs_cos_wrapper_footer_social_btm {
    margin-top: 41.98px;
  }

  .section-header h1,
  .section-header h2,
  .section-header h3,
  .section-header h4,
  .section-header h5,
  .section-header h6 {
    margin-bottom: 17px;
  }

  .section-header .secondary-header {
    max-width: 608px;
  }

  #hs_cos_wrapper_page_header {
    padding-bottom: 81px;
    padding-top: 42px;
  }

  #hs_cos_wrapper_section_page_header {
    padding-bottom: 42px;
    padding-top: 53px;
  }

  #hs_cos_wrapper_section_page_header .secondary-header {
    max-width: 608px;
  }

  .footer-info .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .header__container--main .header__container {
    padding: 20px 30px 20.67px;
  }

  .header__container--btm .header__container {
    padding-bottom: 18px;
    padding-top: 18px;
  }

  #hs_cos_wrapper_header_breadcrumbs,
  #hs_cos_wrapper_header_links-w-icon {
    display: none;
  }

  #hs_cos_wrapper_locations_nav {
    height: calc(100vh - 162.66px);
    height: calc(100svh - 162.66px);
    padding-bottom: 76px;
    padding-top: 60.03px;
  }

  .header__logo--main {
    margin-bottom: -93px;
    max-width: 140.19px;
  }

  .header__logo--sticky {
    max-width: 72px;
  }

  #hs_cos_wrapper_header_logo_sticky {
    max-width: 72px;
  }

  .header__logo--sticky .widget-type-text {
    display: none;
  }

  #hs_cos_wrapper_header_button {
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-row-start: 1;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    visibility: visible;
  }

  .locationNav-opened #hs_cos_wrapper_header_button {
    opacity: 0;
    visibility: hidden;
  }

  #hs_cos_wrapper_header_button .button-wrapper {
    background-color: #FFF;
    bottom: 0;
    left: 0;
    padding: 20px;
    position: fixed;
    width: 100%;
  }

  #hs_cos_wrapper_header_button .button {
    font-size: 16px;
    letter-spacing: 0.125em;
    line-height: 131.3%;
    padding-bottom: 18px;
    padding-top: 19px;
    width: 100%;
  }

  .header__navigation {
    grid-column-end: 4;
    grid-column-start: 3;
    grid-row-end: 2;
    grid-row-start: 1;
  }

  .header__navigation_open {
    justify-content: center;
    margin-left: auto;
    min-width: 72px;
  }

  .sticky-header .header__navigation_open {
    margin-left: auto;
  }

  .header__navigation_open svg {
    margin-right: 0;
  }

  .header__navigation_open span {
    display: none;
  }

  .header__navigation_close {
    color: #000;
    position: fixed;
  }

  .header__navigation_close.red {
    color: #E60538;
  }

  .header__navigation-links {
    flex: 0 1 auto;
    min-height: 100vh;
    padding: 80px;
    width: 100%;
  }

  #hs_cos_wrapper_header_insider_form_ {
    flex: 0 1 auto;
    min-height: 100vh;
    width: 100%;
  }

  .main-footer {
    margin-bottom: 95.95px;
  }

  .footer-top .content-wrapper {
    padding: 77.33px 40px 80px;
  }

  .footer-top--home .content-wrapper {
    grid-template-columns: 76.86px 1fr;
  }

  .footer-top--branding {
    grid-template-columns: 76.86px 1fr;
    margin-bottom: 24.33px;
  }

  #hs_cos_wrapper_footer_logo {
    width: 80px;
  }

  #hs_cos_wrapper_footer_logo_text {
    max-width: 192px;
  }

  .footer-top--home .footer-top--details {
    margin-right: -6px;
    margin-top: 70.67px;
  }

  .footer-top--home #hs_cos_wrapper_footer_logo_text {
    max-width: none;
  }

  .footer-btm {
    padding-bottom: 77px;
    padding-top: 77px;
  }

  .footer-btm--links-wrapper {
    gap: 20px;
    justify-content: space-between;
  }

  .footer-btm .content-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-btm--home {
    padding-bottom: 30px;
    padding-top: 82.2px;
  }

  .footer-btm--home .content-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  #hs_cos_wrapper_footer_links-w-icon .links-w-icon,
  #hs_cos_wrapper_footer_links-w-icon_ .links-w-icon {
    gap: 10px;
  }

  #hs_cos_wrapper_footer_links-w-icon,
  #hs_cos_wrapper_footer_links-w-icon_,
  #hs_cos_wrapper_footer_social_top {
    padding-left: 76.86px;
  }

  .footer-top--home #hs_cos_wrapper_footer_links-w-icon,
  .footer-top--home #hs_cos_wrapper_footer_links-w-icon_ {
    padding-left: 0;
  }

  #hs_cos_wrapper_footer_social_top {
    margin-top: 27px;
  }

  #hs_cos_wrapper_footer_social_btm {
    margin-top: 81.32px;
  }

  #hs_cos_wrapper_footer_social_btm .social-links {
    justify-content: center;
  }

  .footer-info {
    padding: 33px 0 29px;
    text-align: center;
  }

  .footer-info .content-wrapper {
    flex-flow: column wrap;
    gap: 0;
    justify-content: center;
    padding: 0 30px;
  }

  .footer-info .copyright {
    margin-bottom: 13px;
  }

  .footer-info .website-by {
    margin-top: 13px;
  }

  .footer-info .website-by img {
    margin-left: 10px;
  }

  .section-header h1,
  .section-header h2,
  .section-header h3,
  .section-header h4,
  .section-header h5,
  .section-header h6 {
    font-size: 36px;
    letter-spacing: 0.056em;
    line-height: 110%;
    margin-bottom: 31px;
  }

  #hs_cos_wrapper_page_header {
    padding-bottom: 69px;
    padding-top: 47px;
  }

  #hs_cos_wrapper_page_header h1,
  #hs_cos_wrapper_page_header h2,
  #hs_cos_wrapper_page_header h3,
  #hs_cos_wrapper_page_header h4,
  #hs_cos_wrapper_page_header h5,
  #hs_cos_wrapper_page_header h6 {
    font-size: 50px;
    line-height: 95%;
  }

  #hs_cos_wrapper_page_header .hs_cos_wrapper_type_header {
    padding: 0 30px;
  }

  #hs_cos_wrapper_section_page_header {
    padding-bottom: 42px;
    padding-top: 65px;
  }
}

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