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

/* Variables */

:root {
  --primary-color: #e7b5ab;

  --secondary-color: #ffffff;

  --tertiary-color: #000000;

  --primary-font: Plus Jakarta Sans;
  --secondary-font: Fraunces;

  --primary-header-color: #e7b5abe6;
  --secondary-header-color: #ffffffe6;
  --tertiary-header-color: #000000e6;
  --header-height: 0px
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px
  }
}

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

/* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* 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: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

body {
  overflow-x: hidden
}

.body-container-wrapper {
  overflow-x: hidden;
  overflow-y: hidden
}

body.menu-open {
  overflow: hidden;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

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

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

body {
  line-height: 1.444;
  overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin: 0 0 1.4rem;
  line-height: 1.1
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

@media (min-width: 768px) {
  .available-locations__title {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 46px;
    max-width: 50%;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .available-locations__title {
    font-size: 27px;
    letter-spacing: -0.5px;
    line-height: 35px;
    max-width: 50%;
    padding-bottom: 30px;
    margin-left: 10px;
  }
}

.membership-text {
  line-height: 1.45;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

.btn {
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
}

.btn-pink {
  background: linear-gradient(180deg, #EB9E85 0%, #E7B5AB 100%);
    color: white;
}


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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* 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 {
  display: inline-block;
  font-size: .875rem;
  padding: .7rem;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #E8E8E8;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}



.hs-dateinput:after {
  background-image: url(https://25532042.fs1.hubspotusercontent-eu1.net/hubfs/25532042/icon%20_%20calendar.svg);
  content: "";
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  left: 4%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}

.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;
}

.newsletter-form__input:focus,
.newsletter-form__input:focus-visible{
  border: none!important;
  border-bottom: 1px solid black!important;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  background: linear-gradient(180deg, #EB9E85 0%, #E7B5AB 100%);
  padding: 16px 32px;
  border-radius: 30px;
  border: unset;
  color: white;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
}

.hs_submit {
  text-align: center;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* Input date ricorsive */

.hs_date_ricorsive .hs-form-booleancheckbox input[type=checkbox] {
  position: relative;
  width: 50px!important;
  height: 30px;
  -webkit-appearance: none;
  background: white;
  outline: none;
  border-radius: 20px;
  border: 1px solid black;
  transition: 0.7s;
  margin-left: 10px;
}

.hs_date_ricorsive .hs-form-booleancheckbox input:checked[type="checkbox"] {
  background: #62D16E;
  border: 1px solid white;
}

.hs_date_ricorsive input[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 20px!important;
  height: 20px;
  border-radius: 20px;
  border: 1px solid black;
  top: 4px;
  left: 2px;
  background: black;
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: .5s;
}

.hs_date_ricorsive input:checked[type="checkbox"]:before {
  left: 24px;
  border: 1px solid white;
  background: white;
}


.hs_date_ricorsive .hs-form-booleancheckbox {
  margin-top: 33px
}

.hs-date_ricorsive___messaggio label {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 28px;
  text-align: center;
  margin-bottom: 24px

}

.hs-date_ricorsive___messaggio {
  width: 100%!important;
}

#request-information-form  .modal__inner-wrapper {
  padding: 56px 124px 56px 124px;
}


/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */


/* Table header */

thead th {
  vertical-align: bottom;
}
.swiper-pagination-bullet, .swiper-pagination-bullet-active {
  border: 1px solid #fff!important;
  height: 1px!important;
  opacity: .6!important;
  width: 90px!important;
  border-radius: 0!important;
}

.swiper-pagination-bullet-active {
  height: 1px!important;
  width: 90px!important;
  border: 1px solid #FFFFFF!important;
  opacity: 0.6!important;
  border-radius: 0!important;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 16px!important;
}

@media (max-width: 767px) {
  .swiper-pagination-bullet, .swiper-pagination-bullet-active {
    border: 1px solid #fff!important;
    height: 1px!important;
    opacity: .6!important;
    width: 40px!important;
    border-radius: 0!important;
  }

  .swiper-pagination-bullet-active {
    height: 1px!important;
    width: 40px!important;
    border: 1px solid #FFFFFF!important;
    opacity: 0.6!important;
    border-radius: 0!important;
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px!important;
  }
}


.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 30px!important;
}

.swiper-button-prev, .swiper-button-next {
  display: none!important;
}

.slider--overflow-hidden {
  overflow: hidden;
}
/* Header Section*/

@media (min-width: 768px) {
 /* .header.header--black {
    position: fixed;
    top: 0;
    left: 0;
    transition: all ease .3s
  }

  .header.header--black[data-scroll="out"] .location-button__wrapper {
    display: none;
    transition: all ease .3s
  } 

  .header.header--black[data-scroll="out"] .header__row-2 {
    margin: 0 auto;
    transition: all ease .3s
  }

  .header.header--black[data-scroll="out"] .header__navbar {
    background: white;
    border-radius: 50px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.08);
    margin-top: 32px;
  }

  .header.header--black[data-scroll="out"] .header__logo {
    height: auto;
    overflow: hidden;
    padding-top: 10px;
    z-index: 100;
  }

  .header.header--black[data-scroll="out"] .header--toggle.header__navigation--toggle {
    margin-top: 9px;

  }

  .header.header--black[data-scroll="out"] .w25 {
  width: 20%
}

  .header.header--black[data-scroll="out"] .w75 {
  width: 70%
}*/
}

/* Call me back banner */

@media (min-width: 768px) {
  .call-me-back__wrapper.call-me-back--sticky[data-scroll="out"] {
    position: fixed;
    top: 85px;
    right: 183px;
    width: 20%;
    z-index: 9;
    padding-bottom: 0;
  }

  .call-me-back__wrapper.call-me-back--sticky[data-scroll="out"] .call-me-back__content {
    background: linear-gradient(180deg, #EB9E85 0%, #E7B5AB 100%);
    border-radius: 8px;  

  }

  .call-me-back__wrapper.call-me-back--sticky[data-scroll="out"] .call-me-back__title,
  .call-me-back__wrapper.call-me-back--sticky[data-scroll="out"] .call-me-back__text {
    display: none;
  }

  .call-me-back__wrapper.call-me-back--sticky[data-scroll="out"] .call-me-back__cta {
    width: 100%;
    height: 100%;
    margin: 0;
    max-width: 100%;
    padding: 13px 41px 13px 41px;
    text-transform: uppercase;
    font-family: var(--secondary-font);
    font-style: italic;
  }
}


/* Anchor menu */

@media (min-width: 768px) {
  .anchor-menu.anchor-menu--sticky[data-scroll="out"] {
    position: fixed;
    top: 85px;
    left: 192px;
  }

}
.slider-studios__content {
  display: flex;
  flex-direction: column;
  position: relative;
}

.slider-studios__title p {
  font-size: 60px;
  letter-spacing: -1.2px;
  line-height: 67.2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.slider-studios__title {
    margin-bottom: 68px;
    text-align: right;
    margin-right: auto;
}

.slider-studios__card-name{
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 46px;
  margin-bottom: 16px;
}

.slider-studios__card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slider-studios__card-bg {
  position: relative;
  min-height: 507px;
  max-width: 394px;
  overflow: hidden;
}

.slider-studios__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slider-studios__card-typology {
  top: 15px;
  left: 12px;
  position: absolute;
  background: white;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.slider-studios__card-square-footage {
  font-size: 14px;
  letter-spacing: 6px;
  line-height: 25px;
  margin-bottom: 6px;
}

.slider-studios__content .swiper-pagination-bullets{
  display: none;
}


.slider-studios__wrapper .swiper-button-next, 
.slider-studios__wrapper .swiper-button-prev {
  display: flex!important;
  transform: translateY(150%);
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  color: black;
  font-weight: 800
}


@media (max-width: 767px) {

  .slider-studios__wrapper {
    max-width: 767px;
  }
  .slider-studios__title p {
    font-size: 34px;
    letter-spacing: -1px;
    line-height: 40px;
  }

  .slider-studios__card {
    position: relative;
  }

  .slider-studios__card-name {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 35px;
  }

  .slider-studios__card-square-footage {
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 18px;
  }

  .slider-studios__card-pop-up-text {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 19px;
  }
  
  .slider-studios__card-pop-up-text p {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 19px;
  }

  .slider-studios__card-pop-up-text span {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
  }

  .slider-studios__card-pop-up-text__link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
  }

}


/* Hover effect */

.slider-studios__card-pop-up-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  width: 95%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px 8px 0 0;
  padding: 24px 24px 12px 24px;
  bottom: -160px;
  transition: ease-in-out 0.5s
}

.slider-studios__card-pop-up-text span {
  padding-bottom: 12px;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0;
  line-height: 21px;
  text-align: center;
}

.slider-studios__card-pop-up-text p {
    padding-bottom: 12px;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0;
  line-height: 21px;
  text-align: center;
  }

@media (min-width: 768px) {
  .slider-studios__card:hover .slider-studios__card-pop-up-text {
    bottom: 0px;
  }
  
}


@media (max-width: 767px) {
  .slider-studios__card:hover .slider-studios__card-pop-up-text {
    bottom: 0px;
  }
  
  .swiper-slide:not(.swiper-slide-active) .slider-studios__card-pop-up-text {
    display: none;
    transition: ease-in-out 0.3s
  }
  
  .swiper-slide.swiper-slide-active .slider-studios__card-pop-up-text {
    display: flex;
    background: #ffffff;
    bottom: 0px;
    transition: unset;
    z-index: 100;
    transition: ease-in-out 0.3s
  }
}

/* Libraries */

/**
 * Swiper 7.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 3, 2021
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/**************************\
Basic Modal Styles
\**************************/

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  overflow-y: auto
}

.modal--video .modal__container {
  width: 600px;
}

.modal img {
  max-width: 100%
}

@media (min-width: 768px) {
  .modal--small .modal__container {
    max-width: 456px
  }

  .modal--model .modal__container {
    max-width: 814px
  }
}

.modal--small .modal__inner-wrapper {
  padding: 35px
}

.modal--model .modal__inner-wrapper {
  overflow: hidden;
}

.modal__container {
  max-width: 100%;
  max-height: calc(calc(var(--vh, 1vh) * 100) - 140px);
  box-sizing: border-box;
  max-width: 100%;
  width: 60%;
}

.modal__inner-wrapper {
  background: #fff;
  padding: 56px 116px 56px 124px;
  border-radius: 10px;
}

.modal--model .modal__inner-wrapper {
  padding: 20px 60px 0
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--primary-color);
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 36px!important;
  position: absolute;
  right: 32px;
  top: 32px;
  width: 36px!important;
}

.modal__close svg {
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.modal__close svg * {
  fill: black;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .modal__close {
    top: -60px;
    right: 0;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
  }

  .modal__close svg {
    height: 50px;
    filter: brightness(0)
  }

  .modal__container {
    padding-top: 60px;
    max-width: calc(100% - 30px);
    max-height: calc(calc(var(--vh, 1vh) * 100) - 20px);
  }

  .modal__inner-wrapper {
    padding: 40px 20px;
  }

  .modal--model .modal__inner-wrapper {
    padding: 20px 40px 0
  }
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}



/**************************\
Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mmfadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
  to { transform: translateY(0); }
}

@keyframes mmslideOut {
  from { transform: translateY(0); }
  to { transform: translateY(-10%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

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

/* Header DND sections */

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all .5s ease-in-out;
  transition-property: background, transform;
  z-index: 9;
  width: 100%;
  height: 0;
  height: 88px
}



@media (min-width: 768px) {
  body:not(.menu-open) .header.header--black .header__logo {
    filter: brightness(0)
  }

  body:not(.menu-open) .header.header--black .header__navigation--toggle svg * {
    stroke: var(--tertiary-color)
  }


  body:not(.menu-open) .header.header--black .header__navigation--toggle::after {
    color: var(--tertiary-color)
  }

  .header.header--black[data-scroll="out"] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }

  body:not(.menu-open) .header.header--black[data-scroll="out"] .location-button__wrapper {
    position: fixed;
    right: 90px;
    top: -17px;
    background: unset;
    -webkit-clip-path: unset;
    clip-path: unset;
    z-index: 10
  }

  body:not(.menu-open) .header.header--black[data-scroll="out"] .location-button__wrapper a {
    color: black
  }

  body:not(.menu-open) .header.header--black[data-scroll="out"] .location-button__wrapper .big-brackets {
    display: none
  }

  body:not(.menu-open) .header.header--black[data-scroll="out"] .header__logo {
    padding-top: 12px;
  }

  body:not(.menu-open) .header.header--black[data-scroll="out"] .header--toggle.header__navigation--toggle {
    margin-top: 8px;
  }

  body:not(.menu-open) .header.header--black[data-scroll="out"]::after {
    content: "";
    border-radius: 28px;
    background-color: #FFFFFF;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.08);
    width: 100%;
    height: 56px;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 90%;
    min-width: 1000px;
    transform: translate(-50%)
  }

  /* header bianco */

  .header[data-scroll="out"] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }

  body:not(.menu-open) .header[data-scroll="out"] .location-button__wrapper {
    position: fixed;
    right: 90px;
    top: -17px;
    background: unset;
    -webkit-clip-path: unset;
    clip-path: unset;
    z-index: 10
  }

  body:not(.menu-open) .header[data-scroll="out"] .location-button__wrapper a {
    color: black
  }

  body:not(.menu-open) .header[data-scroll="out"] .location-button__wrapper .big-brackets {
    display: none
  }

  body:not(.menu-open) .header[data-scroll="out"] .header__logo {
    padding-top: 12px;
  }

  body:not(.menu-open) .header[data-scroll="out"] .header--toggle.header__navigation--toggle {
    margin-top: 8px;
  }

  body:not(.menu-open) .header[data-scroll="out"]::after {
    content: "";
    border-radius: 28px;
    background-color: #FFFFFF;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.08);
    width: 100%;
    height: 56px;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 90%;
    min-width: 1000px;
    transform: translate(-50%)
  }

  body:not(.menu-open) .header[data-scroll="out"] .header__logo {
    filter: brightness(0)
  }

  body:not(.menu-open) .header[data-scroll="out"] .header__navigation--toggle svg * {
    stroke: var(--tertiary-color)
  }


  body:not(.menu-open) .header[data-scroll="out"] .header__navigation--toggle::after {
    color: var(--tertiary-color)
  }
}

/* Scroll out mobile */

@media (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }


}


.header .dnd-section {
  padding: 0;
}


/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}



.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header--toggle.header__navigation--toggle {
  width: 40px;
  height: 40px;
}

.header--toggle.header__navigation--toggle svg {
  height: 100%;
  width: 100%;
  cursor: pointer;
}


@media (min-width: 767px) {
  .header__navigation.header--element {
    display: none;
  } 

  .header__navigation.header--element.open {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    z-index: 10;
    margin-top: -1px;
  }

  .header__column {
    margin: unset;
    width: 100vw;
    top: -1px;
    left: 0;
  }

  .header__navbar {
    position: absolute;
    top: -6px;
    left: 0;
    align-items: center;
    display: flex;
    width: 100%;
  }

  .header__container.content-wrapper {
    max-width: unset;
  }

  .header__row-2 {
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .navigation-primary .menu--desktop ul, .navigation-secondary .menu--desktop ul {
    display: flex;
    flex-direction: column;
  }
  .w25 {
    background: transparent!important;
    width: 25%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: end;
  }

  .w25 .header__logo {
    display: flex;
    height: auto;
    overflow: hidden;
    padding-top: 42px;
    margin-right: unset;
  }

  

  .header--element .hs-image-widget {
    width: 215px;
  }

  .header__navigation .w75 {
    background: transparent!important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 80px;
    padding-left: 87px;
    padding-right: 72px;
    width: 75%;
    align-items: flex-end;
  }

  .header__navbar .w75 {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent!important;
    width: 75%;
    padding:unset;
    position: relative;
    justify-content: space-between;
  }



  .header--element.open .w25 {
    background: linear-gradient(180deg,#e7b5ab,#eb9e85)!important;
  }

  .header--element.open .w75 {
    background: linear-gradient(180deg,#eb9e85,#e7b5ab)!important;

  } 

  .navigation-social {
    padding-bottom: 90px;
  }
  .navigation-primary .menu--desktop ul li .menu__link{
    font-family: "Plus Jakarta Sans";
    font-size: 48px;
    letter-spacing: -1px;
    line-height: 54px;
  }

  .navigation-secondary .menu--desktop ul li .menu__link{
    font-family: var(--secondary-font);
    font-size: 30px;
    font-style: italic;
    letter-spacing: 0;
    line-height: 38px;
    text-transform: capitalize;
  }

  .navigation-secondary .menu--desktop ul li {
    text-align: right;
  }

  .header--toggle.header__navigation--toggle {
    position: relative;
    z-index: 30;
    margin-top: 35px;
    margin-left: 27px;

  }

  .header__navbar .w25 .header__logo {
    height: auto;
    overflow: hidden;
    padding-top: 42px;
    z-index: 100;
  }

  .header--element .w25 .header__logo {
    padding-top: 42px;
  }



  .svg-container {
    background: white;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: relative;
    margin-right: 8px;
  }



  .svg-container svg {
    height: 18px!important;
    width: 18px!important;
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%)
  }


}


@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
    padding-top: 0px;
  }

  .header__column {
    position: relative;
    background: #eb9f86;
    margin-top: -1px;
    padding-bottom: 8px;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .header__navbar .w75 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }



}

/* Search Button */


.search-button__container a{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.content-wrapper .search-button__button svg {
  height: auto;
  width: 30px;
}

.search-button__button {
  color: white;
  text-transform: uppercase;
}



@media (min-width: 768px) {
  .header__navbar .search-button__container {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 28px;
    width: 100%;
  }

  .search-button__container a {
    font-size: 15px;
  }

  .search-button__button .secondary-font {
    margin-top: 0.5px;
    margin-left: 2px;

  }

}

@media (max-width: 767px) {

  .search-button__container {
    padding-top: 10px;
  }
  .search-button__container a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 15.4px;
  }



}

/* 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;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}


@media (max-width: 767px) {
  .header__logo {
    width: 100%;
    margin-right: unset;
    padding-top: 16px;
  }
}


.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}



/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

.big-brackets {
  font-size: 50px;
  font-style: normal!important;
  font-family: var(--secondary-font);
  font-weight: 100;
  letter-spacing: 0;
  line-height: 32.5px;
  padding: 0 6px;
}

.location-button__wrapper {
  background: linear-gradient(180deg, #EB9E85 0%, #E7B5AB 100%);
  background-size: cover;
  -webkit-clip-path: url(#location-path);
  clip-path: url(#location-path);
  height: 88px;
  width: 316px;
}

@media (min-width: 768px) {

  .location-button__wrapper {
    display: flex; 
    justify-content: space-between;
    position: relative;
    margin-right: 30px;
  }

  .header-shape {
    height: 88px;
    width: 316px;
  }

  .location-button__wrapper.d-none_dk .big-brackets {
    font-size: 35px;
    line-height: 24.5px;
    padding: 0 6px;
  }

  .location-button__wrapper.d-none_dk .search-button__button svg {
    margin-right: 6px;
    width: 22px;
  }

}

@media (max-width: 767px) {

  .location-button__wrapper {
    display: flex; 
    justify-content: space-between;
    position: relative;
    -webkit-clip-path: url(#location-path-mobile);
    clip-path: url(#location-path-mobile);
  }

  .header-shape {
    height: 90px;
    width: 250px;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
  }

  .location-button__wrapper.d-none_dk .big-brackets {
    font-size: 35px;
    line-height: 24.5px;
    padding: 0 6px;
  }

  .location-button__wrapper.d-none_dk .search-button__button svg {
    margin-right: 6px;
    width: 22px;
  }

  .location-button__wrapper.d-none_dk {
    background: linear-gradient(180deg,#eb9e85,#e7b5ab);
    height: 54px;
    width: 70%;
    margin: 0 auto;
    background-size: cover;
    margin-top: -2px;
  }

}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

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

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  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: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

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

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

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

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

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

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/*  Toggles */

.header__navigation--toggle:not(.open) .close {
  display: none
}

.header__navigation--toggle.open .open {
  display: none
}



/* Mobile toggles */

@media (max-width: 767px) {

  hr.hr-mobile-divider.d-none_dk {
    background: #fff!important;
    height: 1px;
    width: 20px;
    margin-bottom: 30px;
  }

  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__language-switcher.open {
    background: linear-gradient(180deg, #EB9E85 0%, #E7B5AB 100%);
    display: block;
    left: 0;
    min-height: calc(100vh - 54px);
    position: absolute;
    right: 0;
    text-align: center;
    top: 54px;
    z-index: 2;
  }

  .header__navigation--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header--element.open {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #EB9E85 0%, #E7B5AB 100%);
    left: 0;
    min-height: calc(100vh - var(--header-height));
    position: absolute;
    right: 0;
    text-align: center;
    top: var(--header-height);
    z-index: 2;
    justify-content: space-around;
  }

  .navigation-primary, .navigation-secondary, .navigation-social {
    flex: 1
  }

  .header__navigation--toggle {
    height: 11px;
    width: 40px;
  }

  .header__navigation--toggle.open {
    height: 44px;
    width: 44px;
  }

  .navigation-secondary .menu--mobile ul li .menu__link{
    font-size: 20px;
    font-style: italic;
    letter-spacing: 0;
    line-height: 26px;
  }
}


.header__navigation--toggle:after {
  content: "Menu";
  position: absolute;
  font-size: 15px;
  left: 66px;
  top: 9px;
  color: white;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .header__navigation--toggle:after {
    display: none;
  }
}

.navigation-primary .menu__wrapper {
  display: flex;
  flex-direction: column;
}

.navigation-primary .menu__wrapper > .menu__item:last-child {
  order: -1
}

.navigation-primary .menu__wrapper > .menu__item:last-child .menu__link {
  background: white;
  color: #eb9f86;
  width: fit-content;
  margin: auto;
  padding: 12px 48px;
  border-radius: 36px;
}

.navigation-primary .menu--mobile .menu__wrapper > .menu__item:last-child .menu__link {
  margin-bottom: 40px
}

.navigation-primary .menu--desktop .menu__wrapper > .menu__item:last-child .menu__link {
  position: fixed;
  top: 72px;
  right: 72px;
  font-size: 24px;
  line-height: 36px
}
.newsletter-form__input {
  background: transparent;
  border: unset;
  border-bottom: 1px solid black;
  padding: unset;
}

.newsletter-form__input {
  background: transparent;
  border: unset;
  border-bottom: 1px solid black;
  padding: unset;
  border-radius: unset;
}

.newsletter-form__input::placeholder {
  color: black;
  margin-bottom: 17px;
}

.form__title {
  font-size: 40px;
  letter-spacing: 0;
  line-height: 46px;
  text-transform: uppercase;
  padding-bottom: 30px;
  margin: 0 auto;
}

.footer {
    background: linear-gradient(180deg, rgba(231,181,171,0) 0%, #EB9E85 100%)!important;
  }


@media (min-width: 768px) {
  .footer {
    background: linear-gradient(180deg, rgba(231,181,171,0) 0%, #EB9E85 100%)!important;
  }

  .newsletter-block__text-area-title,
  .newsletter-block__text-area-text,
  .newsletter-block__text-area-form {
    width: 33%
  }

  .newsletter-block__text-area-title {
    color: #000000;
    font-family: "Plus Jakarta Sans";
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 58px;
    padding-right: 148px;
  }

  .newsletter-block__text-area-text {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    text-transform: uppercase;
    padding-right: 130px;
  }


  .newsletter-block__text-area-form::placeholder {
    color: #000000;
    font-family: "Plus Jakarta Sans";
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 58px;
  }

  .newsletter-block {
    width: 100%
  }

  .newsletter-block .newsletter-block__text-area{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }


  .newsletter-block__text-area-title {
    color: #000000;
    font-family: "Plus Jakarta Sans";
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 58px;
    text-transform: uppercase;
    text-align: right;
  }

  .newsletter-block__text-area-text {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    text-transform: uppercase;
  }


  .newsletter-block__text-area-form::placeholder {
    color: #000000;
    font-family: "Plus Jakarta Sans";
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 58px;
  }

  .newsletter-block__text-area {
    padding-top: 104px;
    padding-bottom: 127px;
  }

  .footer__bottom {
    display: flex;
    flex-direction: row-reverse;
    padding-bottom: 33px;
    justify-content: space-between;
    align-items: center;
  }

  .footer__menu .menu--desktop ul li a {
    color: black;
    font-family: "Plus Jakarta Sans";
    font-size: 15px;
    letter-spacing: 0;
    line-height: 23px;
    font-weight: 300;
  }

  .footer__menu {
    text-align: right;
  }

  .footer__menu .menu--desktop .menu__item {
    padding: 0;
    padding-left: 40px
  }

  .footer__copy--text {
    line-height: 42px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .footer__bottom {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
  }

  .footer__menu {
    text-align: center;
    padding-bottom: 32px;
    color: black;
  }

  .footer__menu .menu__item a {
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    text-align: center;
    color: black;
  }

  .footer__copy--text {   
    color: #000000; 
    font-family: "Plus Jakarta Sans"; 
    font-size: 14px; letter-spacing: 0; 
    line-height: 42px; 
    text-align: center; 
  }

  .newsletter-block {
    padding: 64px 20px 0px 20px;

  }

  .newsletter-block__text-area-title {
    font-size: 34px;
    letter-spacing: -1px;
    line-height: 40px;
    font-family: var(--primary-font);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .newsletter-block__text-area-text {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 23px;
    text-transform: uppercase;
    margin-bottom: 40px;

  }

  .newsletter-block__text-area-form {
    margin-bottom: 64px;
  }  

  .footer__copy--text {
    line-height: 42px;
    display: flex;
    flex-direction: column;
  }

  /* Newsletter modal */

  .newsletter-form-test-class .modal__container {
    width: 95%
  }

  .newsletter-form-test-class .modal__close {
    background: #fff;
    border-radius: 50%;
    display: flex;
    height: 40px!important;
    right: 10px;
    top: 10px;
    width: 40px!important;
  }

  .newsletter-form-test-class .modal__container {
    margin-top: 140px;
  }

}


@media (min-width: 768px) and (max-width: 1439px) {
  .footer__menu {
    padding-right: 20px;
  }

  .footer__copy {
    padding-left: 20px;
  }
}
/* 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: column;
}

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

/* 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%;
}
.listing-furnished-studios__content {
  display: flex;
  flex-direction: row;
  
}

@media (min-width: 768px) {

  .listing-furnished-studios__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%
  }

  .listing-furnished-studios__hero-subtitle {
    font-size: 14px;
    letter-spacing: 15px;
    line-height: 25px;
    text-align: center;
    padding-top: 167px;
    text-transform: uppercase;
  }

  .listing-furnished-studios__hero-title h1 {
    font-size: 60px;
    letter-spacing: -1.2px;
    line-height: 67.2px;
    text-align: center;
    padding-top: 28px;
    margin-bottom: 191px;
    text-transform: uppercase;
  }
}


@media (max-width: 767px) {
  .listing-furnished-studios__hero-subtitle {
    font-size: 12px;
    letter-spacing: 9px;
    line-height: 20px;
    text-align: center;
    padding-top: 172px;
    padding-bottom: 20px;
    text-transform: uppercase;
  }

  .listing-furnished-studios__hero-title h1 {
    font-size: 34px;
    letter-spacing: -1px;
    line-height: 40px;
    text-align: center;
    padding-top: 16px;
    margin-bottom: 220px;
    text-transform: uppercase;
  }
}



.listing-furnished-studios__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 57px;
}

.listing-furnished-studios__left h3{
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 46px;
}

.listing-furnished-studios__left p{
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 26px;
}

@media (min-width: 767px) {
  .slider-studios__card-pop-up-text {
    align-items: center;
    background: #fff;
    border-radius: 8px 8px 0 0;
    bottom: -160px;
    display: flex;
    flex-direction: column;
    left: 50%;
    padding: 24px 24px 12px;
    position: absolute;
    transform: translateX(-50%);
    transition: .5s ease-in-out;
    width: 95%;
    opacity: 0;   
  }

  .slider-studios__card:hover .slider-studios__card-pop-up-text {
    opacity: 1; 
  }


  .listing-furnished-studios__left {
    padding-top: 93px;
  }

  .listing-furnished-studios__cards {
    grid-row-gap: 80px;
  }

}



.listing-divider {
  margin-top: 80px;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .listing-furnished-studios__content {
    display: flex;
    flex-direction: column;
  }


  .listing-furnished-studios__left {
    text-align: center;
  }

  .listing-furnished-studios__left h3 {
    font-size: 27px;
    letter-spacing: -0.5px;
    line-height: 35px;
  }

  .listing-furnished-studios__left p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 24px;
  }

  .listing-furnished-studios__content .horizontal-spacer {
    display: none;
  }

  .listing-furnished-studios__cards {
    display: flex;
    flex-direction: column;
  }

  .listing-furnished-studios__cards .slider-studios__card {
    margin-bottom: 82px;
  }

  .listing-furnished-studios__cards .slider-studios__card .slider-studios__card-square-footage {
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 18px;
  }

  .listing-furnished-studios__cards .slider-studios__card .slider-studios__card-name {
    font-size: 27px;
    letter-spacing: -0.5px;
    line-height: 35px;
  }

  .listing-furnished-studios__cards .slider-studios__card .slider-studios__card-typology {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 19px;
  }

  .listing-furnished-studios__cards .slider-studios__card .slider-studios__card-pop-up-text {
    align-items: center;
    background: white;
    border-radius: 8px 8px 0 0;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    left: 50%;
    padding: 24px 24px 12px;
    position: absolute;
    transform: translateX(-50%);
    width: 95%;
    z-index: 8;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 19px;
  }
}

/* anchor menu */
.listing-furnished-studios__anchors .anchor-menu__menu .anchor-menu__item  {
  color: black;
}



@media (min-width: 768px) {
  .listing-furnished-studios__anchors {
    color: black;
    position: absolute;
    top: 386px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 11px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.08);
  }
  
  .listing-furnished-studios__anchors-inner-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 24px

  }

  .listing-furnished-studios__anchors-label {
    margin: 0px 24px;
    padding: 24px 0px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 26px;
  }

  .listing-furnished-studios__anchors-item {
    padding: 19px 24px;
    border-radius: 4px;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
  }

  .listing-furnished-studios__anchors-item:hover {
    background: linear-gradient(180deg, #EB9E85 0%, #E7B5AB 100%);
    color: white;
  }

}

@media (max-width: 767px) {
  .listing-furnished-studios__anchors {
    position: absolute;
    top: 305px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
  } 
  .listing-furnished-studios__anchors-label{
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .listing-furnished-studios__anchors-item {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
    text-decoration: underline;
    text-underline-offset: 6px

  }

  .listing-furnished-studios__anchors-item:not(:last-of-type) {
    margin-right: 40px;
  }
}

@media (max-width: 348px) {
  .listing-furnished-studios__anchors {
    top: 500px;
  }
}

@media (min-width: 348px) and (max-width: 766px) {
  .listing-furnished-studios__anchors {
    top: 450px;
  }
}

@media (min-width: 767px) and (max-width: 1340px)  {
  .listing-furnished-studios__anchors {
    top: 460px;
  }
}

@media (min-width: 1341px) {
  .listing-furnished-studios__anchors {
    top: 415px;
  }
}
@media (min-width: 768px) {
  .single-furnished-studios__hero {
    padding-top: 168px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 80px;
  }

  .single-furnished-studios__hero h1 {
    font-size: 54px;
    letter-spacing: -1px;
    line-height: 56px;
    margin-bottom: 40px;
  }

  .single-furnished-studios__hero-subtitle {
    width: 40%;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: -1.13px;
    line-height: 40px;
  }

  .furnished-studios__tables .location-map__tags-section {
    padding: 0;
  }

  .prices-banner__content-left--logo {
    width: 260px;
    height: auto;
    margin-bottom: 32px;
  }

  /* tabella 2 da fixare */

  .table-prices-2 .prices-banner__content-right-table {
    width: 100%
  }
  


  .table-prices-2 .prices-banner__content-right-table td:not(:last-of-type){
    width: 90%;
  }

  .table-prices-2 .prices-banner__content-right-table td:not(:first-of-type){
    width: 8%;
  }

  /**************************************************************************
  ***************************Sezione Comparazione ***************************
  ***************************************************************************/

  .compare-table__title {
    font-size: 60px;
    letter-spacing: -1.2px;
    line-height: 67.2px;
    text-transform: uppercase;
    margin-bottom: 190px;
  }

  .compare-table__title .secondary-font {
    font-size: 60px;
    letter-spacing: -1.2px;
    line-height: 67.2px;
  }

  .compare-table__svg {
    height: 300px;
    left: 25px;
    position: absolute;
    top: 60px;
    width: 205px;
  }

  .compare-table__svg *{
    transform-origin: right bottom; 
    transform:
      rotate(90deg)
      translate(0, -100%) 
      rotate(90deg)
      translate(0, 100%);
    height: 20px;
    width: 20px;
  }

}

@media (max-width: 767px) {
  .single-furnished-studios__hero {
    padding-top: 173px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
  }

  .single-furnished-studios__hero h1 {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 34px;
    margin-bottom: 48px;
  }

  .single-furnished-studios__hero-subtitle {
    width: 95%;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 30px;
  }

  /**************************************************************************
  ***************************Sezione Comparazione ***************************
  ***************************************************************************/

  .compare-table__title {
    display: none;
  }


}
.prices-banner__wrapper {
position: relative;
    padding-bottom: 80px;
  padding-top: 104px;
}

.linear_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.prices-banner__content {
  display: flex;
  flex-direction: row;
    max-width: 1440px;
  margin: 0 auto;

}

@media (min-width: 768px) {
  .prices-banner__content-right {
    padding: 0px 60px;
  }
}

.prices-banner__content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prices-banner__content-left--title {
  font-size: 60px;
  letter-spacing: -1.2px;
  line-height: 67.2px;
  text-transform: uppercase;

}

.prices-banner__content-right-bg-shape {
  border-radius: 100px 200px 100px 200px;
  background: linear-gradient(188.22deg, #C09F73 0%, #CD9D5D 100%);
  padding: 60px 60px 52px 60px;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  color: white;
}

.prices-banner__content-right-title {
  text-align: center;
  margin-bottom: 32px;
}

.prices-banner__content-right-title span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
}

.prices-banner__content-right-title p{
  margin-bottom: 0;
}


.prices-banner__content-right-table table{
  background: transparent;
  border: unset;
}

.prices-banner__content-right-table table,
.prices-banner__content-right-table tbody,
.prices-banner__content-right-table tr,
.prices-banner__content-right-table td {
  color: white;
  border: unset;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.prices-banner__content-right-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}


.prices-banner__content-right-table table,
.prices-banner__content-right-table tbody,
.prices-banner__content-right-table tr,
.prices-banner__content-right-table td {
  padding: 0;
  padding-bottom: 16px;
}


.prices-banner__content-right-table td{
  width: 100%;
}

.prices-banner__content-right-table tbody tr td:not(:first-of-type) {
  width: 50%;
  text-align: right
}

.prices-banner__content-right-table p{
  display: none;
}

.prices-banner__content-right-price {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.prices-banner__content-right-price--container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px
}

.prices-banner__content-right-price-number {
  font-size: 80px;
  letter-spacing: -1.6px;
  line-height: 67.2px;
  font-style: italic;
  font-family: var(--secondary-font);
}

.prices-banner__content-right-price-tag {
  text-transform: uppercase;
}

#starting {
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 26px;
}

#daily {
  padding-top: 16px;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 15px;
  line-height: 25px;
}

.empty-line {
  background: #fff;
  content: "";
  display: block;
  height: 1px;
  width: 100px;
}

@media (max-width: 767px) {

  .prices-banner__wrapper {
    margin-bottom: 75px;
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .prices-banner__content-left {
    align-items: center;
    text-align: center;
  }

  .logo-spatium__image {
    width: 130px
  }

  .prices-banner__content-left--title {
    font-size: 34px;
    letter-spacing: -1px;
    line-height: 40px;
  }
  
  .prices-banner__content-right {
    padding: 0px 20px;

  }

  .prices-banner__content-right-bg-shape {
    border-radius: 100px 100px 100px 100px;
    padding: 41px 22px 22px 22px;
  }

  .prices-banner__content-right-title span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
  }

  .prices-banner__content-right-table table,
  .prices-banner__content-right-table tbody,
  .prices-banner__content-right-table tr,
  .prices-banner__content-right-table td {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
  }

  .prices-banner__content-right-table table,
  .prices-banner__content-right-table tbody,
  .prices-banner__content-right-table tr,
  .prices-banner__content-right-table td {
    padding: 0;
    padding-bottom: 12px;
  }
  .prices-banner__content-right-price--container {
    padding: 0px 8px
  }

  .prices-banner__content-right-price-number {
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 50px;
  }

  .empty-line {
    width: 80px;
  }

  #starting {
    padding-bottom: 4px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
  }

  #daily {
    font-size: 12px;
    letter-spacing: 9px;
    line-height: 20px;
  }


}

.prices-banner__content-right-title {
  text-transform: uppercase;
}
.location-map__wrapper {
  position: relative;
}

.location-map__image {
  clip-path: circle(63.7% at 30% 70%);
}

@media (max-width: 767px) {
  .location-map__image {
    width: 100%;
    clip-path: circle(63.7% at 36% 68%);
    margin: 24px 0px;
  }
}

@media (min-width: 768px) {
  .location-map__title {
  position: absolute;
  left: 51%;
  top: 0;
}
  
  .span6.right{
    margin-top: 180px;
  }

}
/* Right Content */

.location-map__title p{
  font-size: 60px;
  letter-spacing: -1.2px;
  line-height: 67.2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.location-map__title {
  padding-bottom: 40px;
}

.location-map__address {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 32px;
  text-transform: uppercase;
}

.location-map__gmap {
  text-decoration: underline;
  text-underline-offset: 6px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 27px;
}

.location-map__distances {
  display: flex;
}

.location-map__distances__svg svg{
  height: 30px;
  width: 30px;
}

.location-map__distances, .location-map__directions {
  padding: 0px 64px;
}

.location-map__directions {
  margin-bottom: 64px
}

.location-map__distances p {
  margin-bottom: 0;
}

.location-map__distances__label {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
  margin-top: 2px;
  padding-bottom: 4px;
}

.location-map__distances__content {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.location-map__distances__feet {
  margin-right: 87px;
}

.location-map__section-divider {
  margin: 56px 64px 54px 64px;
  height: 2px;
}

.location-map__tags-section {
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 48px;
}

.location-map__tag {
  display: flex;
  flex-direction: row;
  padding-bottom: 17px;
  border-bottom: 1px solid #E8E8E8;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;

}

.location-map__tag-svg {
  height: 24px;
  width: 24px;
  margin-right: 12px;
}

@media (max-width: 767px) {
  .location-map__title p{
    font-size: 34px;
  letter-spacing: -1px;
  line-height: 40px;
  }
  
  .location-map__title {
    padding: 0px 22px;
  }
  
  .location-map__directions, .location-map__distances, .location-map__tags-section {
    padding: 0 22px;
  }

  .location-map__address {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
    margin-bottom: 12px;
  }

  .location-map__gmap {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
  }

  .location-map__distances__label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
    padding-bottom: 4px;
  }

  .location-map__distances__feet {
    margin-right: 40px
  }

  .location-map__distances__content {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
  }

  .location-map__tags-section {
    margin-top: 40px;
    grid-rows-gap: 32px;
    grid-columns-gap: 26px;
    padding-bottom: 80px
  }

  .location-map__tag {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 21px;
  }

  .location-map__tag-svg {
    height: 12px;
    width: 12px;
    margin-right: 8px;
  }

  .location-map__section-divider {
    display: none;
  }
}
.anchor-menu {
  z-index: 20;
}



.anchor-menu > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.anchor-menu__inner-wrapper {
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.08);
  position: relative
}

.anchor-menu__item,
.anchor-menu__item:hover,
.anchor-menu__item:active,
.anchor-menu__item:focus {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 17px 17px;
  display: inline-block
}

.anchor-menu__item.anchor-menu__item--active {
  position: relative;
  z-index: 2;
  color: #fff
}

.anchor-menu__item.anchor-menu__item--active::after {
  content: "";
  background: #191b1d;
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 5px;
  border-radius: 5px;
  z-index: -1
}

.anchor-menu__wrapper {
  margin: auto;
  max-width: 1240px
}

.anchor-menu__comparator-toggle {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7b5ab;
  border-radius: 6.5px;
  box-shadow: 0 0 50px 0 rgba(0,0,0,0.1);
  cursor: pointer;
  color: #fff;
  position: relative
}

.anchor-menu.anchor-menu--active .anchor-menu__comparator-toggle {
	animation: slide-fwd-center 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3 alternate forwards;
}

@keyframes slide-fwd-center {
    0% {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}


.anchor-menu__comparator-toggle svg * {
  stroke: #fff
}

.anchor-menu__comparator-toggle > span {
  font-size: 15px;
  position: absolute;
  top: 8px;
  right: 10px;
  font-weight: 500
}

.anchor-menu__comparator-toggle--hidden {
  display: none
}

.anchor-menu__comparator {
  margin-left: 20px;
  margin-right: auto;
  display: flex;
  justify-content: center;
  user-select: none
}

@keyframes slideInBottom {
  0% {
    transform: translateY(100px)
  }
  100% {
    transform: translateY(0)
  }
} 

@media (max-width: 767px) {
  .anchor-menu {
    background: #fff;
    width: calc(100% - 60px);
    margin: 0 30px;
    border-radius: 4px;
    padding: 2px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,0.1);
  }

  .anchor-menu--sticky {
    bottom: 15px;
  }

  .anchor-menu > div {
    padding: 0
  }

  .anchor-menu__menu {
    display: none;
    position: absolute;
    bottom: 100%;
    background: #fff;
    width: 100%;
    left: 0;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 10px 0;
    border-radius: 6.5px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,0.1);
  }

  .anchor-menu__checkbox:checked + .anchor-menu__menu {
    display: flex
  }

  .anchor-menu__item,
  .anchor-menu__item:hover,
  .anchor-menu__item:active,
  .anchor-menu__item:focus {
    padding: 10px 15px;
  }

  .anchor-menu__inner-wrapper {
    background: #ffffff;
    padding: 15px 25px;
    flex-basis: 80%;
    height: 100%
  }

  .anchor-menu__toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-left: 10px
  }

  .anchor-menu__toggle {
    display: flex;
    align-items: center
  }

  .anchor-menu__toggle svg * {
    stroke: #fff
  }

  #menu-toggle {
    display: none
  }

  .anchor-menu__checkbox {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }

  .anchor-menu__cta .anchor-menu__item {
    text-transform: uppercase;
    text-align: center;
    font-size: 12px;
    line-height: 14px
  }

  .anchor-menu__comparator {
    display: none
  }
}

@media (min-width: 768px) {
  .anchor-menu__toggle,
  .anchor-menu__checkbox {
    display: none
  }

  .anchor-menu__cta {
    border-radius: 6.5px;
    background-color: #e7b5ab;
    margin-left: 20px
  }

  .anchor-menu__cta .anchor-menu__item {
    color: black;
    text-transform: uppercase;
    padding: 17px 30px;
    text-align: center
  }
}
.compare-table__sm-list {
  list-style: none;
  display: none;
  padding-left: 0;
  transition: all .9s
}

.compare-table__sm--card.block .compare-table__sm-list {
  display: block;
}

.compare-table__sm--card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.compare-table__sm-title {
  font-size: 30px;
  letter-spacing: -0.5px;
  line-height: 35px;
  text-align: center;
  margin-bottom: 50px
}

.under-name-deco__svg {
  height: auto;
  width: 194px;
  transform: rotate(347deg);
  position: absolute;
  top: -15px;
  left: 24%;
  z-index: -2;
}

.compare-table__sm-element {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22px;
  padding: 0px 46px;
  display: flex;
  margin-bottom: 12px;
}


.discover-more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(178.17deg, #B28F61 0%, #B9A181 100%);
  border-radius: 12px;
  padding: 4px 16px;
  margin: 0 auto;
  margin-bottom: 65px;
}

.discover-more__title {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 12px;
  color: white;
  margin-right: 9px;
  transition: all .5s;
}

.compare-table__sm-button {
  width: 15px;
  height: auto;
  border-radius: 50%;
  background: white;
  padding: 2px;
  transition: all .5s;
  transform: rotate(180deg);
  transition: all .5s;
}

.compare-table__sm--card.block .discover-more__title {
  display: none;
}

.compare-table__sm--card.block .compare-table__sm-button {
  transform: rotate(0);
}


.list-item__svg {
      width: 15px;
    height: auto;
    margin-right: 8px;
}

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

.secondary-font {
  font-family: var(--secondary-font)!important;
  font-style: italic;
  font-size: 1.13333333333em;
}

@media (min-width: 768px) {
  .secondary-font-title {
    font-size: 14px;
    letter-spacing: 15px;
    line-height: 25px;
    margin-bottom: 73px;
    text-transform: uppercase;
  }
  
  .min-view {
    min-height: 63vh;
  }
}

@media (max-width: 767px) {
  .secondary-font-title {
    font-size: 12px;
    letter-spacing: 9px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
  } 
  
  .min-view {
    min-height: 63vh;
  }
  
}







.m-0px {
  margin: 0 !important;
}

.m-1px {
  margin: 20px !important;
}

.m-2px {
  margin: 30px !important;
}

.m-3px {
  margin: 40px !important;
}

.m-4px {
  margin: 60px !important;
}

.m-5px {
  margin: 90px !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0px {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1px {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.mx-2px {
  margin-right: 30px !important;
  margin-left: 30px !important;
}

.mx-3px {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.mx-4px {
  margin-right: 60px !important;
  margin-left: 60px !important;
}

.mx-5px {
  margin-right: 90px !important;
  margin-left: 90px !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0px {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1px {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-2px {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.my-3px {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-4px {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.my-5px {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0px {
  margin-top: 0 !important;
}

.mt-1px {
  margin-top: 20px !important;
}

.mt-2px {
  margin-top: 30px !important;
}

.mt-3px {
  margin-top: 40px !important;
}

.mt-4px {
  margin-top: 60px !important;
}

.mt-5px {
  margin-top: 90px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0px {
  margin-right: 0 !important;
}

.me-1px {
  margin-right: 20px !important;
}

.me-2px {
  margin-right: 30px !important;
}

.me-3px {
  margin-right: 40px !important;
}

.me-4px {
  margin-right: 60px !important;
}

.me-5px {
  margin-right: 90px !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0px {
  margin-bottom: 0 !important;
}

.mb-1px {
  margin-bottom: 20px !important;
}

.mb-2px {
  margin-bottom: 30px !important;
}

.mb-3px {
  margin-bottom: 40px !important;
}

.mb-4px {
  margin-bottom: 60px !important;
}

.mb-5px {
  margin-bottom: 90px !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0px {
  margin-left: 0 !important;
}

.ms-1px {
  margin-left: 20px !important;
}

.ms-2px {
  margin-left: 30px !important;
}

.ms-3px {
  margin-left: 40px !important;
}

.ms-4px {
  margin-left: 60px !important;
}

.ms-5px {
  margin-left: 90px !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0px {
  padding: 0 !important;
}

.p-1px {
  padding: 20px !important;
}

.p-2px {
  padding: 30px !important;
}

.p-3px {
  padding: 40px !important;
}

.p-4px {
  padding: 60px !important;
}

.p-5px {
  padding: 90px !important;
}

.px-0px {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1px {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.px-2px {
  padding-right: 30px !important;
  padding-left: 30px !important;
}

.px-3px {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.px-4px {
  padding-right: 60px !important;
  padding-left: 60px !important;
}

.px-5px {
  padding-right: 90px !important;
  padding-left: 90px !important;
}

.py-0px {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1px {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-2px {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.py-3px {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-4px {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-5px {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.pt-0px {
  padding-top: 0 !important;
}

.pt-1px {
  padding-top: 20px !important;
}

.pt-2px {
  padding-top: 30px !important;
}

.pt-3px {
  padding-top: 40px !important;
}

.pt-4px {
  padding-top: 60px !important;
}

.pt-5px {
  padding-top: 90px !important;
}

.pe-0px {
  padding-right: 0 !important;
}

.pe-1px {
  padding-right: 20px !important;
}

.pe-2px {
  padding-right: 30px !important;
}

.pe-3px {
  padding-right: 40px !important;
}

.pe-4px {
  padding-right: 60px !important;
}

.pe-5px {
  padding-right: 90px !important;
}

.pb-0px {
  padding-bottom: 0 !important;
}

.pb-1px {
  padding-bottom: 20px !important;
}

.pb-2px {
  padding-bottom: 30px !important;
}

.pb-3px {
  padding-bottom: 40px !important;
}

.pb-4px {
  padding-bottom: 60px !important;
}

.pb-5px {
  padding-bottom: 90px !important;
}

.ps-0px {
  padding-left: 0 !important;
}

.ps-1px {
  padding-left: 20px !important;
}

.ps-2px {
  padding-left: 30px !important;
}

.ps-3px {
  padding-left: 40px !important;
}

.ps-4px {
  padding-left: 60px !important;
}

.ps-5px {
  padding-left: 90px !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.font--22 {
  font-size: 22px !important;
}

.font--26 {
  font-size: 26px !important;
}

.space-y-1 > * + * {
  margin-top: 16px !important
}

.space-y-2 > * + * {
  margin-top: 32px !important
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 20px !important;
  }

  .m-md-2 {
    margin: 30px !important;
  }

  .m-md-3 {
    margin: 40px !important;
  }

  .m-md-4 {
    margin: 60px !important;
  }

  .m-md-5 {
    margin: 90px !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .mx-md-2 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }

  .mx-md-3 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .mx-md-4 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .mx-md-5 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .my-md-2 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .my-md-3 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .my-md-4 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .my-md-5 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 20px !important;
  }

  .mt-md-2 {
    margin-top: 30px !important;
  }

  .mt-md-3 {
    margin-top: 40px !important;
  }

  .mt-md-4 {
    margin-top: 60px !important;
  }

  .mt-md-5 {
    margin-top: 90px !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 20px !important;
  }

  .me-md-2 {
    margin-right: 30px !important;
  }

  .me-md-3 {
    margin-right: 40px !important;
  }

  .me-md-4 {
    margin-right: 60px !important;
  }

  .me-md-5 {
    margin-right: 90px !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 20px !important;
  }

  .mb-md-2 {
    margin-bottom: 30px !important;
  }

  .mb-md-3 {
    margin-bottom: 40px !important;
  }

  .mb-md-4 {
    margin-bottom: 60px !important;
  }

  .mb-md-5 {
    margin-bottom: 90px !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 20px !important;
  }

  .ms-md-2 {
    margin-left: 30px !important;
  }

  .ms-md-3 {
    margin-left: 40px !important;
  }

  .ms-md-4 {
    margin-left: 60px !important;
  }

  .ms-md-5 {
    margin-left: 90px !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 20px !important;
  }

  .p-md-2 {
    padding: 30px !important;
  }

  .p-md-3 {
    padding: 40px !important;
  }

  .p-md-4 {
    padding: 60px !important;
  }

  .p-md-5 {
    padding: 90px !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .px-md-2 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }

  .px-md-3 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .px-md-4 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }

  .px-md-5 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .py-md-2 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .py-md-3 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .py-md-4 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .py-md-5 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 20px !important;
  }

  .pt-md-2 {
    padding-top: 30px !important;
  }

  .pt-md-3 {
    padding-top: 40px !important;
  }

  .pt-md-4 {
    padding-top: 60px !important;
  }

  .pt-md-5 {
    padding-top: 90px !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 20px !important;
  }

  .pe-md-2 {
    padding-right: 30px !important;
  }

  .pe-md-3 {
    padding-right: 40px !important;
  }

  .pe-md-4 {
    padding-right: 60px !important;
  }

  .pe-md-5 {
    padding-right: 90px !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 20px !important;
  }

  .pb-md-2 {
    padding-bottom: 30px !important;
  }

  .pb-md-3 {
    padding-bottom: 40px !important;
  }

  .pb-md-4 {
    padding-bottom: 60px !important;
  }

  .pb-md-5 {
    padding-bottom: 90px !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 20px !important;
  }

  .ps-md-2 {
    padding-left: 30px !important;
  }

  .ps-md-3 {
    padding-left: 40px !important;
  }

  .ps-md-4 {
    padding-left: 60px !important;
  }

  .ps-md-5 {
    padding-left: 90px !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .font-md--40 {
    font-size: 40px !important;
  }

  .font-md--35 {
    font-size: 35px !important;
  }

  .font-md--28 {
    font-size: 28px !important;
  }
  
  .md\:space-y-1 > * + * {
    margin-top: 16px !important
  }

  .md\:space-y-2 > * + * {
    margin-top: 32px !important
  }
}

@media (max-width: 767px) {
  .pb-0-mb {
    padding-bottom: 0!important
  }
  
  .pt-mb-1 {
    padding-top: 20px!important;
    padding-bottom: 20px!important
  }
  
  .pt-mb-2 {
    padding-top: 40px!important;
    padding-bottom: 40px!important
  }
}

.italic {
  font-style: italic;
}

.dflex-align-center {
  display: flex;
  align-items: center;
}

.link-mask {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3!important;
}





@media (min-width: 768px) {
  .d-none_dk {
    display: none;
  }

  .width75, .width25 {
    align-items: center;
    background: unset!important;
    justify-content: space-between;
    width: 25%;
  }

  .width75 {
    width: 75%;
  }

  .width25 {
    width: 25%;
  }

  .menu__item--depth-1 {
    text-transform: unset!important;
  }

  .pad-dx__40px {
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .d-none_mb {
    display: none;
  }
  
  .swiper-button-next, .swiper-button-prev {
    z-index: 8!important;
  }

}