@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@600;800&display=swap);@charset "UTF-8";
/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  /* 2 */ }

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */ }

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Remove the margin in all browsers (opinionated).
 */
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: .67em 0; }

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none; }

/**
 * 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 (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000; }

/**
 * 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: -.25em; }

sup {
  top: -.5em; }

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none; }

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none; }

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse; }

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; }

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */ }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 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 and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[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 elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation; }

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress; }

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer; }

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute; }

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default; }

@font-face {
  font-family: 'CF ModGrotesk';
  src: url(75ad849651f03ededad8f9873cb1274f.eot);
  src: url(75ad849651f03ededad8f9873cb1274f.eot?#iefix) format("embedded-opentype"), url(b65992903e79c9cd74a27709edc376b4.woff2) format("woff2"), url(c56ec671e27fbd91d035446508c833dd.woff) format("woff"), url(5efb37b18e5da03535aa33716d1b8d1d.ttf) format("truetype"), url(1f90eff77564ffd178fe1cc164403e87.svg#CFModGrotesk-Regular) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'CF ModGrotesk';
  src: url(82bbea4baa71c7570d8ad44330ed5432.eot);
  src: url(82bbea4baa71c7570d8ad44330ed5432.eot?#iefix) format("embedded-opentype"), url(1a34f1f164263daa88b84a7d834bff65.woff2) format("woff2"), url(a508d121e1121ae4c5c8c8a72e8dbbb9.woff) format("woff"), url(030d7b3677afac8bec2934656fa68cf6.ttf) format("truetype"), url(76a04b6a193e9330509cb42f4c93e2f2.svg#CFModGrotesk-Medium) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

*,
*:active,
*:focus {
  outline: none; }

::-webkit-scrollbar {
  width: 0; }

html {
  font-size: 18px;
  letter-spacing: 0.2px; }
  @media (max-width: 1680px) {
    html {
      font-size: 16px; } }
  @media (max-width: 660px) {
    html {
      font-size: 15px; } }

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

body {
  background: #000;
  color: #fff;
  font-family: "CF ModGrotesk";
  line-height: 22px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-transition: opacity 0.3s, background-color .75s ease-out;
  -o-transition: opacity 0.3s, background-color .75s ease-out;
  transition: opacity 0.3s, background-color .75s ease-out; }
  @media (max-width: 1680px) {
    body {
      line-height: 20px; } }
  body.no-scroll {
    overflow: hidden; }

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s; }
  a:hover {
    color: #000; }

video,
svg,
img {
  max-width: 100%;
  height: auto; }

figure {
  margin: 0;
  padding: 0; }

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-style: normal;
  margin: 0; }

h1, .h1 {
  font-family: "CF ModGrotesk";
  font-size: 90px;
  line-height: 80px;
  font-weight: 400;
  letter-spacing: -1px; }
  @media (max-width: 1680px) {
    h1, .h1 {
      font-size: 80px;
      line-height: 70px; } }
  @media (max-width: 1440px) {
    h1, .h1 {
      font-size: 60px;
      line-height: 56px; } }
  @media (max-width: 1160px) {
    h1, .h1 {
      font-size: 50px;
      line-height: 50px; } }
  @media (max-width: 960px) {
    h1, .h1 {
      font-size: 40px;
      line-height: 40px; } }
  @media (max-width: 660px) {
    h1, .h1 {
      font-size: 28px;
      line-height: 28px;
      letter-spacing: 0.5px; } }

h2, .h2 {
  font-family: "CF ModGrotesk";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -0.6px; }
  @media (max-width: 1680px) {
    h2, .h2 {
      font-size: 50px;
      line-height: 50px; } }
  @media (max-width: 1160px) {
    h2, .h2 {
      font-size: 35px;
      line-height: 35px; } }
  @media (max-width: 960px) {
    h2, .h2 {
      font-size: 28px;
      line-height: 28px;
      letter-spacing: 0.5px; } }
  @media (max-width: 660px) {
    h2, .h2 {
      font-size: 20px;
      line-height: 20px;
      letter-spacing: 0.5px; } }

h4, .h4 {
  font-size: 18px;
  line-height: 22px; }
  @media (max-width: 1680px) {
    h4, .h4 {
      font-size: 16px;
      line-height: 20px; } }

p {
  margin: 0 0 20px 0; }
  @media (max-width: 660px) {
    p {
      margin: 0 0 10px 0; } }
  p:last-child {
    margin: 0 !important; }

b, strong, .strong {
  color: #fff;
  font-family: "CF ModGrotesk";
  font-weight: 400;
  text-transform: uppercase; }

.cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.block {
  display: inline-block; }

.gold {
  color: #ac9883;
  -webkit-transition: color 0.75s;
  -o-transition: color 0.75s;
  transition: color 0.75s; }

.semigold {
  color: rgba(172, 152, 131, 0.4); }

.uppercase {
  text-transform: uppercase; }

.gradient {
  background: -webkit-linear-gradient(4deg, #AC9883 12.19%, #FFF 57.85%, #AC9883 87.65%);
  background: -o-linear-gradient(4deg, #AC9883 12.19%, #FFF 57.85%, #AC9883 87.65%);
  background: linear-gradient(86deg, #AC9883 12.19%, #FFF 57.85%, #AC9883 87.65%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.max-width {
  padding: 0 20px; }
  @media (max-width: 660px) {
    .max-width {
      padding: 0 10px; } }

#app {
  overflow-x: hidden; }

#content {
  position: relative;
  padding: 54px 0 0 0; }
  #content:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), color-stop(46%, rgba(172, 152, 131, 0.9)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(172, 152, 131, 0.9) 46%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(172, 152, 131, 0.9) 46%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(172, 152, 131, 0.9) 46%);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    z-index: -1;
    height: 100vh;
    display: block;
    width: 100%; }

.pagetitle {
  text-align: center;
  padding: 90px 0;
  max-width: 1200px;
  margin: 0 auto; }
  @media (max-width: 1360px) {
    .pagetitle {
      padding: 60px 0; } }

.bigtitle {
  text-align: center;
  padding: 200px 0;
  max-width: 1200px;
  margin: 0 auto; }

.block-hero {
  min-height: 400px;
  position: relative; }
  .block-hero .hero {
    height: calc(100vh - 54px);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0); }
    @media (max-width: 660px) {
      .block-hero .hero {
        height: 100vw; } }
  .block-hero .hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .block-hero .title {
    text-align: center;
    font-family: "CF ModGrotesk";
    font-size: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(4deg, #AC9883 12.19%, #FFF 57.85%, #AC9883 87.65%);
    background: -o-linear-gradient(4deg, #AC9883 12.19%, #FFF 57.85%, #AC9883 87.65%);
    background: linear-gradient(86deg, #AC9883 12.19%, #FFF 57.85%, #AC9883 87.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
    @media (max-width: 1680px) {
      .block-hero .title {
        font-size: 80px;
        line-height: 70px; } }
    @media (max-width: 1440px) {
      .block-hero .title {
        font-size: 60px;
        line-height: 56px; } }
    @media (max-width: 1160px) {
      .block-hero .title {
        font-size: 50px;
        line-height: 50px; } }
    @media (max-width: 960px) {
      .block-hero .title {
        font-size: 40px;
        line-height: 40px; } }
    @media (max-width: 660px) {
      .block-hero .title {
        font-size: 34px;
        line-height: 34px;
        letter-spacing: 0.5px; } }

.intro {
  padding: 20px 16.66667% 20px 20px;
  margin: 0 0 200px 0; }
  @media (max-width: 1160px) {
    .intro {
      padding: 20px 20px 20px 20px; } }
  @media (max-width: 960px) {
    .intro {
      margin: 0 0 90px 0; } }
  @media (max-width: 660px) {
    .intro {
      margin: 0;
      padding: 10px; } }

.triple {
  color: #AC9883;
  font-family: "CF ModGrotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.2px; }
  @media (max-width: 1680px) {
    .triple {
      font-size: 16px;
      line-height: 20px; } }
  @media (max-width: 660px) {
    .triple {
      font-size: 15px; } }
  .triple .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px; }
    @media (max-width: 660px) {
      .triple .inner {
        margin: 0; } }
    .triple .inner > div {
      width: 33.33333%;
      padding: 0 10px; }
      @media (max-width: 960px) {
        .triple .inner > div {
          width: 50%; }
          .triple .inner > div:nth-child(1) {
            width: 100%; } }
      @media (max-width: 660px) {
        .triple .inner > div {
          width: 100%;
          padding: 0 0 20px 0; } }
  .triple strong {
    color: #fff;
    font-family: "CF ModGrotesk";
    font-weight: 400;
    text-transform: uppercase; }
  .triple .images img {
    margin: 0 0 20px 0; }
    .triple .images img:last-child {
      margin: 0; }
  @media (max-width: 660px) {
    .triple .flexible {
      margin: 0 0 0 0; } }

.tab__title {
  cursor: pointer; }
  .tab__title span {
    display: inline-block;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    width: 87px; }
    @media (max-width: 1160px) {
      .tab__title span {
        width: 50px; } }
    @media (max-width: 660px) {
      .tab__title span {
        width: 30px; } }
  .tab__title.is-active span {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center; }

.tab__content {
  display: none; }

.texts .inner {
  padding: 0 16.66667%; }
  @media (max-width: 960px) {
    .texts .inner {
      padding: 0; } }

.texts .title {
  color: #FFF;
  font-family: "CF ModGrotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  padding: 20px 0;
  border-bottom: 1px solid #ac9883; }
  @media (max-width: 1680px) {
    .texts .title {
      font-size: 16px;
      line-height: 20px; } }
  @media (max-width: 660px) {
    .texts .title {
      font-size: 15px; } }
  @media (max-width: 1360px) {
    .texts .title {
      padding: 10px 0; } }

.texts .text {
  padding: 20px 0 0 50%; }
  @media (max-width: 1360px) {
    .texts .text {
      padding: 10px 0 0 50%; } }
  @media (max-width: 660px) {
    .texts .text {
      padding: 10px 0 30px 0; } }

.icon {
  text-align: center;
  pointer-events: none;
  z-index: 1;
  position: relative;
  padding: 0 20px; }
  .icon img {
    width: 100%; }

.button {
  display: inline-block;
  white-space: nowrap; }
  .button > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 36px;
    border-radius: 23px;
    padding: 0 20px 0 10px;
    border: 1px solid #ac9883;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s; }
    @media (max-width: 960px) {
      .button > div {
        height: 30px;
        padding: 0 10px 0 10px; } }
  .button span {
    display: inline-block;
    color: #ac9883;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s; }
    .button span:nth-child(1) {
      border-radius: 100%;
      border: 1px solid #ac9883;
      margin: 0 10px 0 0;
      height: 14px;
      width: 14px;
      -webkit-transition: all 0.35s;
      -o-transition: all 0.35s;
      transition: all 0.35s; }

.flexible .text {
  margin: 0 0 20px 0; }

.flexible p:last-child {
  margin: 0 0 20px 0 !important; }

.flexible .tabs {
  border-top: 1px solid #ac9883;
  margin: 0 0 20px 0; }

.flexible .tab__title {
  color: #fff;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #ac9883;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .flexible .tab__title span {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    margin: 0 0 0 20px; }
  .flexible .tab__title.is-active span {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }

.flexible .tab__text {
  display: none; }
  .flexible .tab__text > div {
    padding: 10px 0 0 0; }
  .flexible .tab__text li {
    position: relative;
    padding: 0 0 0 15px; }
    .flexible .tab__text li:before {
      content: '';
      position: absolute;
      top: 8px;
      left: 0;
      background: #ac9883;
      border-radius: 100%;
      width: 5px;
      height: 5px; }

#s1 {
  height: 100vh;
  position: relative;
  z-index: 1; }
  #s1 .text {
    color: #fff;
    position: absolute;
    top: 40px;
    left: 40px;
    max-width: 464px; }
    @media (max-width: 660px) {
      #s1 .text {
        left: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        padding: 0 40px 0 0; } }
  #s1 .logo {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px; }
    @media (max-width: 660px) {
      #s1 .logo {
        bottom: 15px;
        left: 15px;
        right: 15px; } }
    #s1 .logo img {
      width: 100%; }

#s2 {
  background-color: #fff;
  position: relative;
  z-index: 2; }
  #s2 .video {
    width: calc(50% + 40px);
    padding: 360px 0 0 0;
    margin: 0 0 0 -40px; }
    @media (max-width: 660px) {
      #s2 .video {
        width: calc(5 / 6 * 100% + 15px);
        padding: 250px 0 0 0;
        margin: 0 0 0 -15px; } }
    #s2 .video video {
      width: 100%; }
  #s2 .title {
    position: absolute;
    right: 40px;
    width: 58.33333%;
    top: 250px;
    text-align: right; }
    @media (max-width: 1360px) {
      #s2 .title {
        top: 200px; } }
    @media (max-width: 660px) {
      #s2 .title {
        right: 15px;
        width: 83.33333%;
        top: 150px; } }
  #s2 .text {
    padding: 200px 8.33333% 200px 8.33333%;
    width: 50%; }
    @media (max-width: 1160px) {
      #s2 .text {
        padding: 120px 80px 120px 40px; } }
    @media (max-width: 960px) {
      #s2 .text {
        padding: 120px 40px 120px 0; } }
    @media (max-width: 660px) {
      #s2 .text {
        padding: 50px 0 50px 0;
        width: 83.33333%; } }

#s3 {
  background-color: #fff;
  min-height: 100vh;
  position: relative;
  z-index: 3; }
  #s3 .bg {
    bottom: 0 !important;
    left: 0 !important;
    position: absolute;
    right: 0 !important;
    top: 0 !important; }
  #s3 .text {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 40px;
    width: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    @media (max-width: 660px) {
      #s3 .text {
        font-family: "CF ModGrotesk";
        font-size: 60px;
        font-style: normal;
        font-weight: 400;
        line-height: 60px;
        letter-spacing: -0.6px;
        left: 15px;
        width: 83.33333%; } }
  @media (max-width: 660px) and (max-width: 1680px) {
    #s3 .text {
      font-size: 50px;
      line-height: 50px; } }
  @media (max-width: 660px) and (max-width: 1160px) {
    #s3 .text {
      font-size: 35px;
      line-height: 35px; } }
  @media (max-width: 660px) and (max-width: 960px) {
    #s3 .text {
      font-size: 28px;
      line-height: 28px;
      letter-spacing: 0.5px; } }
  @media (max-width: 660px) and (max-width: 660px) {
    #s3 .text {
      font-size: 20px;
      line-height: 20px;
      letter-spacing: 0.5px; } }

#s4 {
  background-color: #f2f2f2;
  position: relative;
  z-index: 4; }
  #s4 .title {
    padding: 200px 0 50px 0;
    text-align: center; }
    @media (max-width: 1160px) {
      #s4 .title {
        padding: 120px 0 50px 0; } }
    @media (max-width: 660px) {
      #s4 .title {
        padding: 50px 0; } }
  #s4 .video {
    width: calc(50% + 40px);
    margin: 0 -40px 0 auto; }
    @media (max-width: 660px) {
      #s4 .video {
        width: calc(5 / 6 * 100% + 15px);
        margin: 0 -15px 0 auto; } }
    #s4 .video video {
      width: 100%; }
  #s4 .text {
    margin-top: -80px;
    padding: 0 8.33333% 200px 8.33333%;
    width: 50%; }
    @media (max-width: 1160px) {
      #s4 .text {
        padding: 0 80px 120px 40px; } }
    @media (max-width: 960px) {
      #s4 .text {
        padding: 0 40px 120px 0; } }
    @media (max-width: 660px) {
      #s4 .text {
        margin: 0;
        padding: 50px 0;
        width: 83.33333%; } }

#s5 {
  background-color: #fff;
  position: relative;
  z-index: 5; }
  #s5 .title {
    position: absolute;
    right: 40px;
    width: 58.33333%;
    top: 250px;
    text-align: right; }
    @media (max-width: 1680px) {
      #s5 .title {
        width: 66.66667%; } }
    @media (max-width: 1360px) {
      #s5 .title {
        top: 200px; } }
    @media (max-width: 1160px) {
      #s5 .title {
        top: 120px; } }
    @media (max-width: 1024px) {
      #s5 .title {
        width: 75%; } }
    @media (max-width: 960px) {
      #s5 .title {
        width: 83.33333%; } }
    @media (max-width: 660px) {
      #s5 .title {
        right: 15px;
        top: 100px;
        width: 83.33333%; } }
  #s5 .video {
    width: calc(50% + 40px);
    padding: 360px 0 0 0;
    margin: 0 0 0 -40px; }
    @media (max-width: 660px) {
      #s5 .video {
        margin: 0 0 0 -15px;
        width: calc(5 / 6 * 100% + 15px); } }
  #s5 .text {
    padding: 200px 8.33333% 100px 8.33333%;
    width: 50%; }
    @media (max-width: 1160px) {
      #s5 .text {
        padding: 120px 80px 0 40px; } }
    @media (max-width: 960px) {
      #s5 .text {
        padding: 120px 40px 0 0; } }
    @media (max-width: 660px) {
      #s5 .text {
        padding: 50px 0;
        width: 83.33333%; } }

#s6 {
  background-color: #fff;
  position: relative;
  z-index: 6; }
  #s6 .title {
    text-align: center; }
    @media (max-width: 660px) {
      #s6 .title {
        padding: 0 0 20px 0; } }
  #s6 .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 660px) {
      #s6 .group {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    #s6 .group > div {
      width: 50%; }
      @media (max-width: 660px) {
        #s6 .group > div {
          width: 100%; } }
    #s6 .group:nth-child(odd) .image {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
      @media (max-width: 660px) {
        #s6 .group:nth-child(odd) .image {
          -webkit-box-ordinal-group: 1;
              -ms-flex-order: 0;
                  order: 0;
          padding: 0 0 0 16.66667%; } }
      #s6 .group:nth-child(odd) .image img {
        -webkit-transform: translateX(40px);
            -ms-transform: translateX(40px);
                transform: translateX(40px);
        width: 100%; }
        @media (max-width: 660px) {
          #s6 .group:nth-child(odd) .image img {
            -webkit-transform: translateX(15px);
                -ms-transform: translateX(15px);
                    transform: translateX(15px); } }
    @media (max-width: 1160px) {
      #s6 .group:nth-child(odd) .text {
        padding: 120px 80px 120px 40px; } }
    @media (max-width: 960px) {
      #s6 .group:nth-child(odd) .text {
        padding: 120px 40px 120px 0; } }
    @media (max-width: 660px) {
      #s6 .group:nth-child(odd) .text {
        padding: 50px 16.66667% 50px 0; } }
    @media (max-width: 660px) {
      #s6 .group:nth-child(even) .image {
        padding: 0 16.66667% 0 0; } }
    #s6 .group:nth-child(even) .image img {
      -webkit-transform: translateX(-40px);
          -ms-transform: translateX(-40px);
              transform: translateX(-40px);
      width: 100%; }
      @media (max-width: 660px) {
        #s6 .group:nth-child(even) .image img {
          -webkit-transform: translateX(-15px);
              -ms-transform: translateX(-15px);
                  transform: translateX(-15px); } }
    @media (max-width: 1160px) {
      #s6 .group:nth-child(even) .text {
        padding: 120px 40px 120px 80px; } }
    @media (max-width: 960px) {
      #s6 .group:nth-child(even) .text {
        padding: 120px 0 120px 40px; } }
    @media (max-width: 660px) {
      #s6 .group:nth-child(even) .text {
        padding: 50px 16.66667% 50px 0; } }
  #s6 .text {
    padding: 20% 8.33333% 250px 8.33333%; }
  #s6 .values {
    position: relative;
    z-index: -1; }

#s7 {
  background-color: #f2f2f2;
  position: relative;
  z-index: 7; }
  #s7 .title {
    padding: 220px 0 100px 0;
    text-align: center; }
    @media (max-width: 1360px) {
      #s7 .title {
        padding: 200px 0 100px 0; } }
    @media (max-width: 1160px) {
      #s7 .title {
        padding: 120px 0 100px 0; } }
    @media (max-width: 660px) {
      #s7 .title {
        padding: 50px 0; } }
  #s7 .image {
    background-color: #f2f2f2;
    margin: 0 -40px 0 auto;
    width: 33.33333%; }
    @media (max-width: 660px) {
      #s7 .image {
        margin: 0 auto;
        width: 100%; } }
    #s7 .image img {
      mix-blend-mode: multiply;
      width: 100%; }
  #s7 .text {
    padding: 0 8.33333% 220px 8.33333%;
    width: 50%; }
    @media all and (max-width: 1360px) {
      #s7 .text {
        padding: 0 8.33333% 200px 8.33333%; } }
    @media (max-width: 1160px) {
      #s7 .text {
        padding: 0 80px 120px 40px; } }
    @media (max-width: 960px) {
      #s7 .text {
        padding: 0 40px 120px 0; } }
    @media (max-width: 660px) {
      #s7 .text {
        padding: 50px 16.66667% 0 0;
        width: 100%; } }
    #s7 .text .inner {
      margin: -70% 0 0;
      /*@media (max-width: 1360px) {
              //margin: -70% 0 0 0;
              //padding: 0 0 200px 0;
              transform: none;
            }*/
      /*@media (max-width: 1160px) {
              padding: 0 0 120px 0;
            }*/ }
      @media (max-width: 660px) {
        #s7 .text .inner {
          padding: 0 0 100px 0;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none;
          margin: 0; } }
    #s7 .text img {
      margin: 80px 0; }
      @media (max-width: 960px) {
        #s7 .text img {
          margin: 40px 0; } }

#s8 {
  background-color: #fff;
  min-height: 100vh;
  position: relative;
  z-index: 8; }
  #s8 .top {
    min-height: 100vh;
    position: relative; }
    #s8 .top .bg {
      bottom: 0 !important;
      left: 0 !important;
      position: absolute;
      right: 0 !important;
      top: 0 !important; }
    #s8 .top .text {
      color: #fff;
      margin: 0 0 0 auto;
      width: 33.33333%;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      right: 40px; }
      @media (max-width: 1680px) {
        #s8 .top .text {
          width: 50%; } }
      @media (max-width: 960px) {
        #s8 .top .text {
          width: 41.66667%; } }
      @media (max-width: 660px) {
        #s8 .top .text {
          width: auto;
          margin: 0;
          right: 40px;
          left: 40px;
          text-align: center; } }
  #s8 .bottom {
    min-height: 100vh;
    position: relative;
    z-index: 1; }
    #s8 .bottom .logo {
      text-align: center;
      width: 50%;
      min-height: 100vh;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      @media (max-width: 660px) {
        #s8 .bottom .logo {
          width: 100%; } }
      @media (max-width: 1360px) {
        #s8 .bottom .logo img {
          width: 250px; } }
      @media (max-width: 1160px) {
        #s8 .bottom .logo img {
          width: 200px; } }
      @media (max-width: 960px) {
        #s8 .bottom .logo img {
          width: 150px; } }
      @media (max-width: 660px) {
        #s8 .bottom .logo img {
          width: 100px; } }

#s9 {
  background-color: #f2f2f2;
  position: relative;
  z-index: 9;
  overflow-x: hidden; }
  #s9 .top {
    min-height: 100vh;
    position: relative; }
    #s9 .top .title {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 0 !important;
      right: 0 !important;
      text-align: center;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
  #s9 .bottom {
    position: relative;
    z-index: 1; }
  #s9 .team .member .inner {
    cursor: pointer;
    -webkit-transition: all 0.75s;
    -o-transition: all 0.75s;
    transition: all 0.75s; }
    #s9 .team .member .inner:hover {
      -webkit-transform: translateY(-10px);
          -ms-transform: translateY(-10px);
              transform: translateY(-10px); }
  #s9 .team .member:nth-child(odd) {
    padding: 0 16.66667% 250px 58.33333%; }
    @media (max-width: 1360px) {
      #s9 .team .member:nth-child(odd) {
        padding: 0 16.66667% 200px 58.33333%; } }
    @media (max-width: 960px) {
      #s9 .team .member:nth-child(odd) {
        padding: 0 8.33333% 120px 50%; } }
    @media (max-width: 660px) {
      #s9 .team .member:nth-child(odd) {
        padding: 0 0 100px 50%; } }
  #s9 .team .member:nth-child(even) {
    padding: 0 58.33333% 250px 16.66667%; }
    @media (max-width: 1360px) {
      #s9 .team .member:nth-child(even) {
        padding: 0 58.33333% 200px 16.66667%; } }
    @media (max-width: 960px) {
      #s9 .team .member:nth-child(even) {
        padding: 0 50% 120px 8.33333%; } }
    @media (max-width: 660px) {
      #s9 .team .member:nth-child(even) {
        padding: 0 50% 100px 0; } }
  #s9 .team .image img {
    border-radius: 20px;
    width: 100%; }
  #s9 .team .titles {
    margin: 10px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }

.member-popup {
  background: #d9d9d9;
  bottom: 0;
  left: 0;
  min-height: 100vh;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 50;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%); }
  .member-popup .name {
    -webkit-backface-visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    -webkit-transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    -webkit-transition-delay: 0.5s !important;
         -o-transition-delay: 0.5s !important;
            transition-delay: 0.5s !important; }
  .member-popup .text {
    -webkit-backface-visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    -webkit-transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    -webkit-transition-delay: 0.6s !important;
         -o-transition-delay: 0.6s !important;
            transition-delay: 0.6s !important; }
  .member-popup.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .member-popup.is-active .name {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
    .member-popup.is-active .text {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
  .member-popup .scroll {
    overflow-y: scroll;
    height: 100%; }
  .member-popup .inner {
    padding: 200px 16.66667%;
    position: relative; }
    @media (max-width: 1024px) {
      .member-popup .inner {
        padding: 100px 8.33333%; } }
    @media (max-width: 660px) {
      .member-popup .inner {
        padding: 100px 0; } }
  .member-popup .name {
    margin: 0 0 50px 0;
    text-align: center; }
  .member-popup .text {
    padding: 0 10%; }
    @media (max-width: 1024px) {
      .member-popup .text {
        max-width: 600px;
        margin: 0 auto; } }
    @media (max-width: 660px) {
      .member-popup .text {
        padding: 0; } }
  .member-popup .close {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 40px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }

#s10 {
  background-color: #fff;
  min-height: 200vh;
  position: relative;
  z-index: 10;
  overflow-x: hidden; }
  #s10 .top {
    min-height: 100vh;
    position: relative; }
    #s10 .top .title {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  #s10 .bottom {
    position: relative;
    z-index: 1;
    min-height: 600px; }
  #s10 .partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 660px) {
      #s10 .partners {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    #s10 .partners .partner {
      border-radius: 20px;
      background: #f2f2f2;
      text-align: center;
      width: 16.66667%;
      padding: 0 30px 20px 30px;
      margin: 0 10px;
      /*.inner {
              cursor: pointer;
            }*/ }
      @media (max-width: 1360px) {
        #s10 .partners .partner {
          width: 25%; } }
      @media (max-width: 960px) {
        #s10 .partners .partner {
          width: 33.33333%; } }
      @media (max-width: 660px) {
        #s10 .partners .partner {
          margin: 0 auto 50px auto;
          width: 66.66667%; } }
      #s10 .partners .partner .logo {
        padding: 50px 0; }
      #s10 .partners .partner .name {
        text-transform: uppercase;
        margin: 0 0 10px 0; }

.partner-popup {
  background: #d9d9d9;
  bottom: 0;
  left: 0;
  min-height: 100vh;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 50;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%); }
  .partner-popup .name {
    -webkit-backface-visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    -webkit-transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    -webkit-transition-delay: 0.5s !important;
         -o-transition-delay: 0.5s !important;
            transition-delay: 0.5s !important; }
  .partner-popup .text {
    -webkit-backface-visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    -webkit-transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
    -webkit-transition-delay: 0.6s !important;
         -o-transition-delay: 0.6s !important;
            transition-delay: 0.6s !important; }
  .partner-popup.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .partner-popup.is-active .name {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
    .partner-popup.is-active .text {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
  .partner-popup .scroll {
    overflow-y: scroll;
    height: 100%; }
  .partner-popup .inner {
    padding: 200px 16.66667%;
    position: relative; }
    @media (max-width: 1024px) {
      .partner-popup .inner {
        padding: 100px 8.33333%; } }
    @media (max-width: 660px) {
      .partner-popup .inner {
        padding: 100px 0; } }
  .partner-popup .name {
    margin: 0 0 50px 0;
    text-align: center; }
  .partner-popup .text {
    padding: 0 10%; }
    @media (max-width: 1024px) {
      .partner-popup .text {
        max-width: 600px;
        margin: 0 auto; } }
    @media (max-width: 660px) {
      .partner-popup .text {
        padding: 0; } }
  .partner-popup .close {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 40px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }

#s11 {
  background-color: #fff;
  margin: 0 0 380px 0;
  padding: 40px 0 200px;
  position: relative;
  z-index: 11; }
  @media (max-width: 1360px) {
    #s11 {
      padding: 0 0 200px 0; } }
  @media (max-width: 660px) {
    #s11 {
      padding: 0 0 100px 0; } }
  #s11 .text {
    padding: 0 8.33333% 300px 8.33333%;
    text-align: center; }
    @media (max-width: 1360px) {
      #s11 .text {
        padding: 0 8.33333% 200px 8.33333%; } }
    @media (max-width: 660px) {
      #s11 .text {
        padding: 0 0 150px 0; } }
  #s11 .form {
    margin: 0 auto;
    width: 33.33333%; }
    @media (max-width: 1360px) {
      #s11 .form {
        width: 41.66667%; } }
    @media (max-width: 960px) {
      #s11 .form {
        width: 50%; } }
    @media (max-width: 660px) {
      #s11 .form {
        width: 100%; } }

.delay-1 {
  -webkit-transition-delay: 0.10s !important;
       -o-transition-delay: 0.10s !important;
          transition-delay: 0.10s !important; }

.delay-2 {
  -webkit-transition-delay: 0.20s !important;
       -o-transition-delay: 0.20s !important;
          transition-delay: 0.20s !important; }

.delay-3 {
  -webkit-transition-delay: 0.30s !important;
       -o-transition-delay: 0.30s !important;
          transition-delay: 0.30s !important; }

.delay-4 {
  -webkit-transition-delay: 0.40s !important;
       -o-transition-delay: 0.40s !important;
          transition-delay: 0.40s !important; }

.delay-5 {
  -webkit-transition-delay: 0.50s !important;
       -o-transition-delay: 0.50s !important;
          transition-delay: 0.50s !important; }

.delay-6 {
  -webkit-transition-delay: 0.60s !important;
       -o-transition-delay: 0.60s !important;
          transition-delay: 0.60s !important; }

.delay-7 {
  -webkit-transition-delay: 0.70s !important;
       -o-transition-delay: 0.70s !important;
          transition-delay: 0.70s !important; }

.delay-8 {
  -webkit-transition-delay: 0.80s !important;
       -o-transition-delay: 0.80s !important;
          transition-delay: 0.80s !important; }

.delay-9 {
  -webkit-transition-delay: 0.90s !important;
       -o-transition-delay: 0.90s !important;
          transition-delay: 0.90s !important; }

.delay-10 {
  -webkit-transition-delay: 1s !important;
       -o-transition-delay: 1s !important;
          transition-delay: 1s !important; }

.show-in-view {
  -webkit-backface-visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity 0.75s, visibility 0.75s, -webkit-transform 0.75s;
  transition: opacity 0.75s, visibility 0.75s, -webkit-transform 0.75s;
  -o-transition: transform 0.75s, opacity 0.75s, visibility 0.75s;
  transition: transform 0.75s, opacity 0.75s, visibility 0.75s;
  transition: transform 0.75s, opacity 0.75s, visibility 0.75s, -webkit-transform 0.75s; }
  .show-in-view.animate {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }

.show-from-left {
  -webkit-backface-visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(-50px, 0, 0);
          transform: translate3d(-50px, 0, 0);
  -webkit-transition: all 0.75s;
  -o-transition: all 0.75s;
  transition: all 0.75s; }
  .show-from-left.animate {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }

.show-from-right {
  -webkit-backface-visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(50px, 0, 0);
          transform: translate3d(50px, 0, 0);
  -webkit-transition: all 0.75s;
  -o-transition: all 0.75s;
  transition: all 0.75s; }
  .show-from-right.animate {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }

.fade-in-view {
  opacity: 0;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s; }
  .fade-in-view.animate {
    opacity: 1; }

.show-border {
  position: relative; }
  .show-border:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #AC9883;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.35s 1s;
    transition: -webkit-transform 0.35s 1s;
    -o-transition: transform 0.35s 1s;
    transition: transform 0.35s 1s;
    transition: transform 0.35s 1s, -webkit-transform 0.35s 1s;
    position: absolute;
    bottom: 0;
    left: 0; }
  .show-border.animate-border:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1); }

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes float {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes float {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-webkit-keyframes jitter {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  50% {
    -webkit-transform: translate3d(-2px, 0, 0);
            transform: translate3d(-2px, 0, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes jitter {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  50% {
    -webkit-transform: translate3d(-2px, 0, 0);
            transform: translate3d(-2px, 0, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg); }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg); }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

::-webkit-input-placeholder {
  color: #ac9883; }

:-moz-placeholder {
  color: #ac9883;
  opacity: 1; }

:-ms-input-placeholder {
  color: #ac9883; }

::-ms-input-placeholder {
  color: #ac9883; }

::placeholder {
  color: #ac9883; }

input,
select,
textarea {
  border-radius: 8px;
  border: 1px solid #ac9883;
  display: block;
  width: 100%;
  padding: 20px;
  resize: none;
  color: #AC9883;
  font-family: "CF ModGrotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.2px;
  margin: 0 0 10px 0; }
  @media (max-width: 1680px) {
    input,
    select,
    textarea {
      font-size: 16px; } }
  @media (max-width: 1680px) {
    input,
    select,
    textarea {
      font-size: 15px; } }
  @media (max-width: 960px) {
    input,
    select,
    textarea {
      padding: 10px; } }
  input:focus::-webkit-input-placeholder,
  select:focus::-webkit-input-placeholder,
  textarea:focus::-webkit-input-placeholder {
    color: transparent !important; }
  input:focus:-moz-placeholder,
  select:focus:-moz-placeholder,
  textarea:focus:-moz-placeholder {
    color: transparent !important; }
  input:focus:-ms-input-placeholder,
  select:focus:-ms-input-placeholder,
  textarea:focus:-ms-input-placeholder {
    color: transparent !important; }
  input:focus::-ms-input-placeholder,
  select:focus::-ms-input-placeholder,
  textarea:focus::-ms-input-placeholder {
    color: transparent !important; }
  input:focus::placeholder,
  select:focus::placeholder,
  textarea:focus::placeholder {
    color: transparent !important; }

.gform_ajax_spinner,
.validation_error,
.validation_message {
  display: none !important; }

.gfield.nolabel label {
  display: none; }

.gfield.full {
  width: 100% !important; }

.gfield_label {
  display: none; }

.gfield_error input,
.gfield_error select,
.gfield_error textarea {
  border-color: red !important; }

.gfield_visibility_hidden {
  display: none !important; }

.screen-reader-text {
  display: none !important; }

.gform_button {
  cursor: pointer;
  background: #000;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s; }
  .gform_button:hover {
    background: #ac9883;
    color: #fff; }

.gform_confirmation_wrapper {
  text-align: center; }

#header {
  position: fixed;
  top: 0;
  z-index: 20;
  left: 0;
  right: 0;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 54px;
  opacity: 0.96;
  background: rgba(0, 0, 0, 0.9); }
  @media (max-width: 660px) {
    #header {
      padding: 0 10px; } }

.header__left ul,
.header__right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.header__left li.current-menu-item a,
.header__right li.current-menu-item a {
  color: #fff; }

.header__left a,
.header__right a {
  color: #ac9883;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2px; }
  @media (max-width: 1680px) {
    .header__left a,
    .header__right a {
      font-size: 16px; } }
  .header__left a:hover,
  .header__right a:hover {
    color: #fff; }

.header__left li {
  margin: 0 15px 0 0; }

@media (max-width: 768px) {
  .header__left {
    display: none; } }

.header__right {
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .header__right ul {
    margin-right: 15px; }
  .header__right li {
    margin: 0 0 0 15px; }
  @media (max-width: 768px) {
    .header__right {
      display: none; } }
  .header__right .lang-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .header__right .lang-selector span {
      color: #AC9883; }
    .header__right .lang-selector a {
      color: #453D34; }
      .header__right .lang-selector a:hover {
        color: #AC9883; }
    .header__right .lang-selector .lang-item {
      font-size: 20px;
      display: inline-block;
      margin-left: 20px;
      position: relative; }
      .header__right .lang-selector .lang-item:before {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        background-color: #453D34;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: -13px;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); }
      .header__right .lang-selector .lang-item:first-child {
        margin-left: 0; }
      .header__right .lang-selector .lang-item:last-child:before {
        display: none; }

.header__logo {
  text-align: center;
  font-family: "CF ModGrotesk";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 93.333% */
  letter-spacing: 0.3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  .header__logo a {
    color: #ac9883; }
    @media (max-width: 960px) {
      .header__logo a {
        font-size: 24px;
        display: inline-block;
        line-height: .86;
        position: relative;
        top: 2px;
        max-width: 80%;
        text-align: center; } }
    @media (max-width: 660px) {
      .header__logo a {
        font-size: 24px;
        display: inline-block;
        max-width: unset; } }

.header__mobile {
  display: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden; }
  @media (max-width: 768px) {
    .header__mobile {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 0 20px 20px 20px;
      z-index: 21;
      background: #000;
      position: fixed;
      top: 54px;
      left: 0;
      right: 0;
      bottom: 0;
      text-align: center;
      color: #ac9883;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; } }
  @media (max-width: 768px) and (max-width: 660px) {
    .header__mobile {
      padding: 0 10px 10px 10px; } }
  @media (max-width: 768px) {
      .header__mobile a {
        color: #ac9883; } }
  .header__mobile .menu {
    width: 100%; }
    .header__mobile .menu a {
      border-top: 1px solid #ac9883;
      display: block;
      line-height: 54px; }
  .header__mobile .socials {
    width: 100%;
    border-top: 1px solid #ac9883;
    padding: 12px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .header__mobile .socials a {
      display: inline-block;
      margin: 0 10px; }
  .header__mobile .contact {
    width: 100%;
    text-align: left;
    margin: auto 0 0 0;
    padding: 0 0 75px 0; }
  .header__mobile.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }
  .header__mobile li.current-menu-item a {
    color: #fff; }

.header__burger {
  position: relative;
  cursor: pointer;
  height: 30px;
  width: 30px;
  margin: 0 0 0 auto;
  display: none; }
  @media (max-width: 768px) {
    .header__burger {
      display: block; } }
  .header__burger:before, .header__burger:after {
    -webkit-transition: top .35s .35s, -webkit-transform .35s 0s;
    transition: top .35s .35s, -webkit-transform .35s 0s;
    -o-transition: top .35s .35s, transform .35s 0s;
    transition: top .35s .35s, transform .35s 0s;
    transition: top .35s .35s, transform .35s 0s, -webkit-transform .35s 0s; }
  .header__burger:before, .header__burger:after,
  .header__burger span {
    background: #ac9883;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    width: 30px; }
  .header__burger:before {
    top: 12px; }
  .header__burger:after {
    top: 18px; }
  .header__burger span {
    top: 13.5px;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s; }
  .header__burger.is-active span {
    opacity: 0; }
  .header__burger.is-active:before {
    top: 12.5px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: top .35s 0s, -webkit-transform 0.35s 0.35s;
    transition: top .35s 0s, -webkit-transform 0.35s 0.35s;
    -o-transition: top .35s 0s, transform 0.35s 0.35s;
    transition: top .35s 0s, transform 0.35s 0.35s;
    transition: top .35s 0s, transform 0.35s 0.35s, -webkit-transform 0.35s 0.35s; }
  .header__burger.is-active:after {
    top: 12.5px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: top .35s 0s, -webkit-transform 0.35s 0.35s;
    transition: top .35s 0s, -webkit-transform 0.35s 0.35s;
    -o-transition: top .35s 0s, transform 0.35s 0.35s;
    transition: top .35s 0s, transform 0.35s 0.35s;
    transition: top .35s 0s, transform 0.35s 0.35s, -webkit-transform 0.35s 0.35s; }

.header__menu {
  padding: 25px 40px; }
  .header__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 768px) {
      .header__menu ul {
        display: block; } }
  .header__menu li {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center; }
    .header__menu li:first-child {
      text-align: left; }
      @media (max-width: 768px) {
        .header__menu li:first-child {
          text-align: center; } }
    .header__menu li:last-child {
      text-align: right; }
      @media (max-width: 768px) {
        .header__menu li:last-child {
          text-align: center;
          display: none; } }
  .header__menu a {
    font-weight: 800;
    opacity: 0.2; }
    @media (max-width: 768px) {
      .header__menu a {
        opacity: 1; } }
    .header__menu a:hover {
      opacity: 1; }
    .header__menu a.is-active {
      opacity: 1; }
  @media (max-width: 768px) {
    .header__menu {
      position: fixed;
      background: #fff;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 0;
      -webkit-transition: all 0.35s;
      -o-transition: all 0.35s;
      transition: all 0.35s;
      opacity: 0;
      visibility: hidden;
      pointer-events: none; }
      .header__menu.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; } }

.newsletter-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: rgba(172, 152, 131, 0.8);
  width: 40%;
  padding: 70px 20px 45px;
  border: 2px solid;
  -webkit-border-image: -webkit-linear-gradient(315deg, #6C5C4C 0%, #D2B493 100%) 1;
       -o-border-image: -o-linear-gradient(315deg, #6C5C4C 0%, #D2B493 100%) 1;
          border-image: linear-gradient(135deg, #6C5C4C 0%, #D2B493 100%) 1;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: opacity .45s ease-in-out;
  -o-transition: opacity .45s ease-in-out;
  transition: opacity .45s ease-in-out; }
  @media (max-width: 1280px) {
    .newsletter-popup {
      width: 70%; } }
  @media (max-width: 768px) {
    .newsletter-popup {
      width: 90%;
      padding: 90px 20px 95px; } }
  .newsletter-popup.hidden {
    opacity: 0;
    pointer-events: none; }
  .newsletter-popup .popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    -webkit-transition: color .25s ease-in-out;
    -o-transition: color .25s ease-in-out;
    transition: color .25s ease-in-out; }
    .newsletter-popup .popup-close:hover {
      color: #fff; }
  .newsletter-popup .popup-title {
    color: #000;
    text-transform: uppercase;
    margin: 0 0 15px;
    font-size: 20px;
    letter-spacing: .5px; }
  .newsletter-popup .ginput_container_email input {
    text-align: center;
    color: #6C5C4C;
    border: 1px solid #6C5C4C;
    border-radius: 0;
    margin: 0; }
    .newsletter-popup .ginput_container_email input::-webkit-input-placeholder {
      color: #6C5C4C; }
    .newsletter-popup .ginput_container_email input::-ms-input-placeholder {
      color: #6C5C4C; }
    .newsletter-popup .ginput_container_email input::placeholder {
      color: #6C5C4C; }
    .newsletter-popup .ginput_container_email input:focus {
      color: #43372A; }
  .newsletter-popup .gform_footer {
    margin: auto;
    width: 112px;
    position: relative;
    margin-top: 15px; }
    .newsletter-popup .gform_footer:before {
      content: "";
      display: block;
      width: 14px;
      height: 14px;
      border: 1px solid #000;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 10px;
      -webkit-transition: border .25s ease-in-out, background-color .25s ease-in-out;
      -o-transition: border .25s ease-in-out, background-color .25s ease-in-out;
      transition: border .25s ease-in-out, background-color .25s ease-in-out;
      pointer-events: none; }
    .newsletter-popup .gform_footer:hover:before {
      background-color: #fff;
      border: 1px solid #fff; }
  .newsletter-popup .gform_button.button {
    background-color: transparent;
    margin: 0;
    height: 36px;
    border: 1px solid #000;
    color: #000;
    border-radius: 50px;
    padding: 0 30px;
    font-size: 20px;
    text-align: left;
    -webkit-transition: border .25s ease-in-out, color .25s ease-in-out;
    -o-transition: border .25s ease-in-out, color .25s ease-in-out;
    transition: border .25s ease-in-out, color .25s ease-in-out; }
    .newsletter-popup .gform_button.button:hover {
      color: #fff;
      border: 1px solid #fff; }

#footer {
  padding: 25vh 0 0 0;
  color: #000;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transition: opacity 0.75s;
  -o-transition: opacity 0.75s;
  transition: opacity 0.75s; }
  @media (max-width: 660px) {
    #footer {
      padding: 0; } }
  #footer > div {
    width: 100%; }
  #footer a:hover {
    color: #fff; }
  #footer .contact {
    padding: 200px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto; }
    @media (max-width: 660px) {
      #footer .contact {
        padding: 100px 0; } }
    #footer .contact .form .gform_confirmation_message {
      margin: 20px 0 0 0; }
    #footer .contact .form input[type="email"] {
      font-family: "CF ModGrotesk";
      font-size: 90px;
      line-height: 80px;
      font-weight: 400;
      letter-spacing: -1px;
      text-align: center;
      border: none;
      background: transparent;
      padding: 0;
      margin: 0;
      color: #fff; }
      @media (max-width: 1680px) {
        #footer .contact .form input[type="email"] {
          font-size: 80px;
          line-height: 70px; } }
      @media (max-width: 1440px) {
        #footer .contact .form input[type="email"] {
          font-size: 60px;
          line-height: 56px; } }
      @media (max-width: 1160px) {
        #footer .contact .form input[type="email"] {
          font-size: 50px;
          line-height: 50px; } }
      @media (max-width: 960px) {
        #footer .contact .form input[type="email"] {
          font-size: 40px;
          line-height: 40px; } }
      @media (max-width: 660px) {
        #footer .contact .form input[type="email"] {
          font-size: 28px;
          line-height: 28px;
          letter-spacing: 0.5px; } }
      #footer .contact .form input[type="email"]::-webkit-input-placeholder {
        color: #fff; }
      #footer .contact .form input[type="email"]:-moz-placeholder {
        color: #fff;
        opacity: 1; }
      #footer .contact .form input[type="email"]:-ms-input-placeholder {
        color: #fff; }
      #footer .contact .form input[type="email"]::-ms-input-placeholder {
        color: #fff; }
      #footer .contact .form input[type="email"]::placeholder {
        color: #fff; }
    #footer .contact .form .gform_button {
      font-family: "CF ModGrotesk";
      font-size: 90px;
      line-height: 80px;
      font-weight: 400;
      letter-spacing: -1px;
      color: rgba(255, 255, 255, 0.4);
      padding: 0;
      background: transparent;
      border: none; }
      @media (max-width: 1680px) {
        #footer .contact .form .gform_button {
          font-size: 80px;
          line-height: 70px; } }
      @media (max-width: 1440px) {
        #footer .contact .form .gform_button {
          font-size: 60px;
          line-height: 56px; } }
      @media (max-width: 1160px) {
        #footer .contact .form .gform_button {
          font-size: 50px;
          line-height: 50px; } }
      @media (max-width: 960px) {
        #footer .contact .form .gform_button {
          font-size: 40px;
          line-height: 40px; } }
      @media (max-width: 660px) {
        #footer .contact .form .gform_button {
          font-size: 28px;
          line-height: 28px;
          letter-spacing: 0.5px; } }
      #footer .contact .form .gform_button:hover {
        color: #fff; }
    #footer .contact .form .gfield_error ::-webkit-input-placeholder {
      color: red !important; }
    #footer .contact .form .gfield_error :-moz-placeholder {
      color: red !important;
      opacity: 1; }
    #footer .contact .form .gfield_error :-ms-input-placeholder {
      color: red !important; }
    #footer .contact .form .gfield_error ::-ms-input-placeholder {
      color: red !important; }
    #footer .contact .form .gfield_error ::placeholder {
      color: red !important; }
  #footer .logo {
    margin: 0 0 20px 0; }
  #footer .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 20px 0; }
    @media (max-width: 660px) {
      #footer .top {
        margin: 0 0 0 0;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    #footer .top > div:nth-child(1) {
      width: 25%; }
      @media (max-width: 1280px) {
        #footer .top > div:nth-child(1) {
          width: 50%; } }
      @media (max-width: 660px) {
        #footer .top > div:nth-child(1) {
          width: 100%; } }
      #footer .top > div:nth-child(1) strong {
        font-weight: 400;
        color: rgba(255, 255, 255, 0.3); }
  #footer .menu {
    width: 16.66667%; }
    @media (max-width: 660px) {
      #footer .menu {
        width: 100%;
        margin: 20px 0 0 0; } }
    #footer .menu ul ul {
      margin: 20px 0 0 0; }
      @media (max-width: 1160px) {
        #footer .menu ul ul {
          margin: 0; } }
      #footer .menu ul ul li {
        padding: 0 0 0 20px;
        position: relative; }
        @media (max-width: 660px) {
          #footer .menu ul ul li {
            padding: 0; } }
        #footer .menu ul ul li:before {
          content: '';
          background: rgba(255, 255, 255, 0.3);
          width: 5px;
          height: 5px;
          border-radius: 100%;
          position: absolute;
          display: block;
          left: 0;
          top: 50%;
          -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
                  transform: translateY(-50%); }
          @media (max-width: 660px) {
            #footer .menu ul ul li:before {
              content: none; } }
  #footer .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media (max-width: 1280px) {
      #footer .socials {
        margin: 20px 0 0 0;
        width: 100%;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    @media (max-width: 660px) {
      #footer .socials {
        margin: 20px 0; } }
    #footer .socials a {
      display: block;
      margin: 0 0 0 20px; }
      @media (max-width: 1160px) {
        #footer .socials a {
          margin: 0 20px 0 0; } }
      #footer .socials a:hover {
        opacity: 0.5; }
    @media (max-width: 660px) {
      #footer .socials img {
        height: 20px;
        width: auto; } }
  #footer .bottom {
    color: rgba(0, 0, 0, 0.8);
    font-family: "CF ModGrotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.14px;
    border-top: 1px solid #000;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0; }
    @media (max-width: 660px) {
      #footer .bottom {
        padding: 20px 0 20px 0; } }
    #footer .bottom > div {
      width: 50%; }
      #footer .bottom > div:nth-child(2) {
        text-align: right; }
  #footer .k2 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #footer .k2 a img {
      margin: 0 0 0 5px; }
  @media (max-width: 660px) {
    #footer .rights {
      display: none; } }

.in-footer body {
  background: #AC9883; }

.in-footer #footer {
  opacity: 1; }

.in-footer .gold, .in-footer .title {
  color: #000 !important; }

.in-footer .button > div {
  border: 1px solid #000; }

.in-footer .button span {
  color: #000; }
  .in-footer .button span:nth-child(1) {
    border: 1px solid #000; }

.in-footer .tease--service img {
  -webkit-filter: brightness(0);
          filter: brightness(0); }

.in-footer input, .in-footer select, .in-footer textarea {
  border: 1px solid #000;
  color: #000; }

.in-footer ::-webkit-input-placeholder {
  color: #000; }

.in-footer :-moz-placeholder {
  color: #000;
  opacity: 1; }

.in-footer :-ms-input-placeholder {
  color: #000; }

.in-footer ::-ms-input-placeholder {
  color: #000; }

.in-footer ::placeholder {
  color: #000; }

.in-footer .gform_button {
  color: #fff; }
  .in-footer .gform_button:hover {
    color: #000; }

.in-footer .texts .title {
  border-bottom: 1px solid #000; }

.in-footer .show-border:after {
  background: #000; }

.slick-slider {
  width: 100%;
  padding: 0;
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0 !important; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

/* .slick-arrow.slick-hidden {
    display: none;
} */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "\2190"; }
    [dir="rtl"] .slick-prev:before {
      content: "\2192"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "\2192"; }
    [dir="rtl"] .slick-next:before {
      content: "\2190"; }

.slick-dots {
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /*  @media all and (max-width:960px) {
         bottom: 26px;
         right:153px;
     } */ }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 10px !important;
    width: 10px !important;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    background: #efefef !important;
    border: none !important;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; }
    .slick-dots li:last-of-type {
      margin: 0 0 0 5px; }
    .slick-dots li button {
      border: 0;
      display: block;
      height: 100%;
      width: 100%;
      outline: none;
      cursor: pointer;
      color: #000 !important;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
      font-size: 0; }
    .slick-dots li:hover {
      background: #000 !important; }
      .slick-dots li:hover button {
        color: #000 !important; }
    .slick-dots li.slick-active {
      background: #000 !important; }
      .slick-dots li.slick-active button {
        color: #000 !important; }

.page-template-template-company .icon {
  padding: 25vh 20px 0; }
  @media (max-width: 960px) {
    .page-template-template-company .icon {
      padding: 10vw 20px 0; } }
  @media (max-width: 960px) {
    .page-template-template-company .icon {
      padding: 10vw 20px 0; } }

.page-template-template-home .tease--project a {
  position: relative; }

.page-template-template-home .tease--project .badges {
  color: #ac9883;
  position: absolute;
  left: 100%;
  -webkit-transform: rotate(90deg) translateY(-100%);
      -ms-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  padding: 0 0 10px 0;
  margin: 0; }

.page-template-template-home .tease--project .button {
  display: none; }

.page-template-template-projects .intro {
  margin-top: 90px;
  margin-bottom: 0;
  padding-bottom: 0; }

.page-template-template-projects .switch {
  padding: 200px 0 90px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 960px) {
    .page-template-template-projects .switch {
      padding: 90px 0 90px 0; } }
  .page-template-template-projects .switch a {
    font-size: 18px;
    line-height: 22px;
    display: inline-block;
    border: 1px solid #ac9883;
    color: #ac9883;
    border-radius: 8px;
    padding: 6px 10px;
    opacity: 0.5;
    margin: 0 10px; }
    @media (max-width: 1680px) {
      .page-template-template-projects .switch a {
        font-size: 16px;
        line-height: 20px; } }
    .page-template-template-projects .switch a:hover {
      opacity: 1; }
    .page-template-template-projects .switch a.is-active {
      opacity: 1; }

.single-project .menu-projects a {
  color: #fff; }

.projects .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

.tease--project {
  padding: 0 10px;
  width: 25%;
  margin: 0 0 120px 0; }
  @media (max-width: 960px) {
    .tease--project {
      margin: 0 0 90px 0;
      width: 50%; } }
  @media (max-width: 660px) {
    .tease--project {
      width: 100%; } }
  .tease--project .badges {
    color: rgba(255, 255, 255, 0.4);
    font-family: "CF ModGrotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.14px;
    margin: 0 0 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .tease--project .badges span {
      display: inline-block;
      margin: 0 10px 0 0; }
  .tease--project .imagewrap {
    position: relative;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(172, 152, 131, 0.9)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
    padding: 1px; }
  .tease--project .title {
    color: #ac9883;
    margin: 10px 0 40px 0;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s; }
    @media (max-width: 660px) {
      .tease--project .title {
        margin: 10px 0 20px 0; } }
    .tease--project .title span:nth-child(2) {
      display: none; }
  .tease--project:hover .title {
    color: #fff; }
  .tease--project:hover .button > div {
    border-color: #fff; }
  .tease--project:hover .button span {
    color: #fff;
    border-color: #fff; }
    .tease--project:hover .button span:nth-child(1) {
      background: #fff; }
  .tease--project.is-list {
    width: 100%;
    margin: 0; }
    .tease--project.is-list:first-child a {
      border-top: 1px solid #ac9883; }
    .tease--project.is-list a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 5px 0;
      border-bottom: 1px solid #ac9883; }
      @media (max-width: 960px) {
        .tease--project.is-list a {
          padding: 10px 0; } }
    .tease--project.is-list .imagewrap {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      width: 8.33333%;
      min-height: 150px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      min-width: 100px; }
      @media (max-width: 960px) {
        .tease--project.is-list .imagewrap {
          min-width: 0;
          min-height: 0; } }
    .tease--project.is-list .badges {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      padding: 0 0 0 20px;
      margin: 0;
      width: 8.33333%; }
      @media (max-width: 960px) {
        .tease--project.is-list .badges {
          display: none;
          width: auto;
          padding: 0 20px; }
          .tease--project.is-list .badges span {
            margin: 0; } }
    .tease--project.is-list .title {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
      margin: 0;
      font-family: "CF ModGrotesk";
      font-size: 60px;
      font-style: normal;
      font-weight: 400;
      line-height: 60px;
      letter-spacing: -0.6px; }
      @media (max-width: 1680px) {
        .tease--project.is-list .title {
          font-size: 50px;
          line-height: 50px; } }
      @media (max-width: 1160px) {
        .tease--project.is-list .title {
          font-size: 35px;
          line-height: 35px; } }
      @media (max-width: 960px) {
        .tease--project.is-list .title {
          font-size: 28px;
          line-height: 28px;
          letter-spacing: 0.5px; } }
      @media (max-width: 660px) {
        .tease--project.is-list .title {
          font-size: 20px;
          line-height: 20px;
          letter-spacing: 0.5px; } }
      @media (max-width: 960px) {
        .tease--project.is-list .title {
          padding: 0 0 0 20px; } }
    .tease--project.is-list .button {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4;
      margin: 0 0 0 auto; }
      @media (max-width: 660px) {
        .tease--project.is-list .button {
          display: none; } }

.quad {
  padding: 20px 20px 60px 20px; }
  @media (max-width: 960px) {
    .quad {
      padding: 20px 0 60px 0; } }
  @media (max-width: 660px) {
    .quad {
      padding: 20px 0 30px 0; } }
  .quad .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .quad .inner > div {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      .quad .inner > div:nth-child(1) {
        width: 25%; }
        @media (max-width: 960px) {
          .quad .inner > div:nth-child(1) {
            -webkit-box-ordinal-group: 3;
                -ms-flex-order: 2;
                    order: 2;
            width: 50%; } }
        @media (max-width: 660px) {
          .quad .inner > div:nth-child(1) {
            width: 100%; } }
      .quad .inner > div:nth-child(2) {
        width: 41.66667%;
        padding: 0 8.33333% 0 0; }
        @media (max-width: 960px) {
          .quad .inner > div:nth-child(2) {
            -webkit-box-ordinal-group: 2;
                -ms-flex-order: 1;
                    order: 1;
            width: 100%; } }
        @media (max-width: 660px) {
          .quad .inner > div:nth-child(2) {
            padding: 0;
            width: 100%; } }
      .quad .inner > div:nth-child(3) {
        width: 33.33333%; }
        @media (max-width: 960px) {
          .quad .inner > div:nth-child(3) {
            -webkit-box-ordinal-group: 4;
                -ms-flex-order: 3;
                    order: 3;
            width: 50%; } }
        @media (max-width: 660px) {
          .quad .inner > div:nth-child(3) {
            width: 100%; } }
  .quad .information > div {
    margin: 0 0 30px 0; }
    @media (max-width: 660px) {
      .quad .information > div {
        margin: 0 0 10px 0; } }
  .quad .label {
    color: #FFF;
    font-family: "CF ModGrotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.14px;
    text-transform: uppercase; }
  .quad .text .buttons {
    margin: 60px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 960px) {
      .quad .text .buttons {
        margin: 60px 0; } }
    @media (max-width: 660px) {
      .quad .text .buttons {
        margin: 30px 0;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .quad .text .buttons .button {
      margin: 0 20px 0 0;
      white-space: nowrap; }
      @media (max-width: 660px) {
        .quad .text .buttons .button {
          width: 100%;
          margin: 0 0 10px 0; }
          .quad .text .buttons .button:last-child {
            margin: 0; } }
      .quad .text .buttons .button:hover > div {
        border-color: #fff; }
      .quad .text .buttons .button:hover span {
        color: #fff;
        border-color: #fff; }
        .quad .text .buttons .button:hover span:nth-child(1) {
          background: #fff; }
  .quad .tags {
    margin-top: 50px; }
    .quad .tags .tag {
      color: #453D34;
      text-transform: uppercase;
      border: 1px solid #453D34;
      padding: 3px 8px;
      display: inline-block;
      margin-right: 5px;
      font-size: 14px;
      -webkit-transition: color .25s ease-in-out, border .25s ease-in-out;
      -o-transition: color .25s ease-in-out, border .25s ease-in-out;
      transition: color .25s ease-in-out, border .25s ease-in-out; }
      .quad .tags .tag:hover {
        color: #ac9883;
        border: 1px solid #ac9883; }
  @media (max-width: 660px) {
    .quad .distances {
      margin: 20px 0 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .quad .distance {
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media (max-width: 660px) {
      .quad .distance {
        margin: 0 0 10px 0;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        width: 50%;
        padding: 0 10px 0 0; } }
    .quad .distance .icon {
      margin: 0 20px 0 0; }
      @media (max-width: 660px) {
        .quad .distance .icon {
          width: 100%;
          padding: 0;
          text-align: left;
          margin: 0 0 10px 0; }
          .quad .distance .icon img {
            width: auto; } }

.floors .titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
  border-top: 1px solid #ac9883;
  border-bottom: 1px solid #ac9883; }
  @media (max-width: 660px) {
    .floors .titles {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      overflow: scroll; }
      .floors .titles::-webkit-scrollbar {
        width: 0;
        height: 0; } }
  .floors .titles .title {
    margin: 0 10px;
    cursor: pointer;
    color: rgba(172, 152, 131, 0.5);
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    white-space: nowrap; }
    @media (max-width: 660px) {
      .floors .titles .title {
        margin: 0 20px 0 0; } }
    .floors .titles .title:hover {
      color: #ac9883; }
    .floors .titles .title.is-active {
      color: #ac9883; }

.floors .floor {
  display: none; }

.floors .tab__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #ac9883;
  position: relative; }
  .floors .tab__title:last-child {
    border-bottom: none; }
  .floors .tab__title.is-disabled {
    cursor: auto;
    pointer-events: none; }
  .floors .tab__title span {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: absolute;
    right: 0; }
  .floors .tab__title > div {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .floors .tab__title > div:nth-child(1) {
      width: 25%; }
    .floors .tab__title > div:nth-child(2) {
      width: 41.66667%; }
    .floors .tab__title > div:nth-child(3) {
      width: 33.33333%; }

.floors .tab__content img {
  max-height: 600px;
  margin: 0 1px 0 0; }
  @media (max-width: 1340px) {
    .floors .tab__content img {
      max-height: 400px; } }

.floors .tab__content .slider {
  line-height: 0;
  margin-bottom: 1px; }

.gallery {
  margin: 200px 0 0 0; }
  @media (max-width: 660px) {
    .gallery {
      margin: -1px 0 0 0; } }
  .gallery .main {
    line-height: 0;
    margin: 0 0 1px 0; }
    .gallery .main img {
      max-height: 850px;
      margin: 0 1px 0 0; }
      @media (max-width: 1340px) {
        .gallery .main img {
          max-height: 600px; } }
  .gallery .label {
    margin: 10px 0 0 0;
    color: #ac9883;
    font-family: "CF ModGrotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.14px;
    text-transform: uppercase; }
  .gallery .slick-slide > div img {
    padding-right: 20px; }
    @media (max-width: 660px) {
      .gallery .slick-slide > div img {
        padding-right: 0;
        width: 100%; } }
  .gallery .slick-slide:last-child > div img {
    padding-right: 0; }

.gallery__title {
  padding: 20px 0;
  border-top: 1px solid #ac9883;
  border-bottom: 1px solid #ac9883;
  text-align: center;
  margin: 0 0 20px 0; }
  @media (max-width: 660px) {
    .gallery__title {
      margin: 0 0 10px 0; } }

.gallery-tools {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0; }
  .gallery-tools .gallery-prev,
  .gallery-tools .gallery-next {
    padding: 5px;
    margin: 0 20px;
    cursor: pointer; }

.map-row {
  padding: 20px 40px 60px 40px; }
  @media (max-width: 960px) {
    .map-row {
      padding: 20px 10px 60px; } }
  .map-row #map {
    max-width: 50%;
    margin: 0 25%;
    width: 100%;
    height: 500px; }
    .map-row #map .pin {
      color: #000;
      text-align: center; }
      .map-row #map .pin .button-wrap {
        margin-top: 5px; }
        .map-row #map .pin .button-wrap a {
          text-decoration: underline; }
    @media (max-width: 1180px) {
      .map-row #map {
        max-width: 80%;
        margin: 0 10%; } }
    @media (max-width: 980px) {
      .map-row #map {
        max-width: 100%;
        margin: 0; } }

.related {
  margin: 200px 0 0 0;
  padding: 0 8.33333%; }
  @media (max-width: 660px) {
    .related {
      margin: 90px 0 0 0;
      padding: 0; } }
  .related .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 660px) {
      .related .list {
        display: block;
        padding: 0 25% 0 0;
        margin: 0 -5px; }
        .related .list .slick-list {
          overflow: visible; } }
  .related .tease--project {
    width: 20%; }
    @media (max-width: 1160px) {
      .related .tease--project {
        width: 25%; }
        .related .tease--project:last-child {
          display: none; } }
    @media (max-width: 960px) {
      .related .tease--project {
        width: 50%; } }
    @media (max-width: 660px) {
      .related .tease--project {
        width: 100%;
        margin-bottom: 0;
        padding: 0 5px; } }

.related__title {
  text-align: center;
  background: -webkit-linear-gradient(3deg, rgba(174, 158, 134, 0.8) 31.28%, #FFF 48.93%, rgba(174, 158, 134, 0.8) 66.23%);
  background: -o-linear-gradient(3deg, rgba(174, 158, 134, 0.8) 31.28%, #FFF 48.93%, rgba(174, 158, 134, 0.8) 66.23%);
  background: linear-gradient(87deg, rgba(174, 158, 134, 0.8) 31.28%, #FFF 48.93%, rgba(174, 158, 134, 0.8) 66.23%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 60px 0;
  line-height: 1.1; }
  @media (max-width: 660px) {
    .related__title {
      margin: 0 0 30px 0; } }

section.faq-row {
  padding: 50px 20px 100px; }
  section.faq-row .content-grid {
    max-width: 70%;
    margin: 0 15%; }
    @media (max-width: 1280px) {
      section.faq-row .content-grid {
        max-width: 100%;
        margin: 0; } }
  section.faq-row .faq-item {
    margin-bottom: 25px; }
    section.faq-row .faq-item:last-child {
      margin-bottom: 0; }
  section.faq-row .faq-title {
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
    font-size: 20px; }
  section.faq-row .faq-content {
    padding-left: 50%;
    color: #AC9883;
    font-size: 20px;
    line-height: 1.2; }
    @media (max-width: 768px) {
      section.faq-row .faq-content {
        padding-left: 0; } }

@media (max-width: 660px) {
  .page-template-template-services .intro {
    padding-bottom: 90px; } }

@media (max-width: 660px) {
  .page-template-template-services .services {
    padding-bottom: 90px; } }

.tease--service {
  border-bottom: 1px solid #ac9883;
  padding: 20px 0; }
  @media (max-width: 660px) {
    .tease--service {
      padding: 10px 0; } }
  .tease--service:nth-child(1) {
    border-top: 1px solid #ac9883; }
  .tease--service .tab__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .tease--service .tab__title .title {
      -webkit-transition: all 0.35s;
      -o-transition: all 0.35s;
      transition: all 0.35s; }
      @media (max-width: 660px) {
        .tease--service .tab__title .title {
          font-size: 20px; } }
    .tease--service .tab__title:hover .title {
      color: #fff; }
  .tease--service .tab__content .inner {
    padding: 30px 0 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 660px) {
      .tease--service .tab__content .inner {
        padding: 10px 0; } }
  .tease--service .tab__content .image {
    width: 33.33333%; }
    @media (max-width: 660px) {
      .tease--service .tab__content .image {
        width: 100%; } }
  .tease--service .tab__content .text {
    width: 33.33333%;
    padding: 20px 0; }
    @media (max-width: 960px) {
      .tease--service .tab__content .text {
        padding: 0 0 20px 20px;
        width: 66.66666%; } }
    @media (max-width: 660px) {
      .tease--service .tab__content .text {
        width: 100%;
        padding: 20px 0; } }
  .tease--service .tab__content .button {
    margin: 30px 0 0 0; }
    @media (max-width: 660px) {
      .tease--service .tab__content .button {
        margin: 10px 0 0 0; } }
    .tease--service .tab__content .button:hover > div {
      border-color: #fff; }
    .tease--service .tab__content .button:hover span {
      color: #fff;
      border-color: #fff; }
      .tease--service .tab__content .button:hover span:nth-child(1) {
        background: #fff; }

.single-service .menu-services a {
  color: #fff; }

.single-service .services {
  margin: 300px 0 0 0; }
  @media (max-width: 660px) {
    .single-service .services {
      margin: 90px 0 0 0; } }

.single-service .triple .images {
  display: none; }

.news .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

.news__title {
  background: -webkit-linear-gradient(3deg, rgba(174, 158, 134, 0.8) 31.28%, #FFF 48.93%, rgba(174, 158, 134, 0.8) 66.23%);
  background: -o-linear-gradient(3deg, rgba(174, 158, 134, 0.8) 31.28%, #FFF 48.93%, rgba(174, 158, 134, 0.8) 66.23%);
  background: linear-gradient(87deg, rgba(174, 158, 134, 0.8) 31.28%, #FFF 48.93%, rgba(174, 158, 134, 0.8) 66.23%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin: 0 0 60px 0; }
  @media (max-width: 660px) {
    .news__title {
      margin: 0 0 30px 0; } }

.tease--post {
  width: 16.66666%;
  padding: 0 10px;
  margin: 0 0 120px 0; }
  @media (max-width: 1160px) {
    .tease--post {
      width: 25%; } }
  @media (max-width: 960px) {
    .tease--post {
      margin: 0 0 90px 0;
      width: 33.33333%; } }
  @media (max-width: 660px) {
    .tease--post {
      width: 100%; } }
  .tease--post .meta {
    color: rgba(255, 255, 255, 0.4);
    font-family: "CF ModGrotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
    margin: 0 0 10px 0; }
  .tease--post .imagewrap {
    position: relative;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(172, 152, 131, 0.9)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
    padding: 1px;
    margin: 0 0 10px 0; }
  .tease--post .title {
    height: 90px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden; }
    @media (max-width: 660px) {
      .tease--post .title {
        height: auto; } }
  .tease--post .button {
    margin: 20px 0 0 0; }
  .tease--post:hover a {
    color: #fff; }
  .tease--post:hover .button > div {
    border-color: #fff; }
  .tease--post:hover .button span {
    color: #fff;
    border-color: #fff; }
    .tease--post:hover .button span:nth-child(1) {
      background: #fff; }

.article {
  margin: 0 0 500px 0; }
  @media (max-width: 660px) {
    .article {
      margin: 0 0 90px 0; } }
  .article .inner {
    padding: 0 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1160px) {
      .article .inner {
        padding: 0 8.33333%; } }
    @media (max-width: 960px) {
      .article .inner {
        padding: 0; } }
    .article .inner .image {
      margin: 0 0 20px 0;
      width: 100%; }
    .article .inner .imagewrap {
      position: relative;
      background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(172, 152, 131, 0.9)));
      background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
      background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
      background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
      padding: 1px; }
      .article .inner .imagewrap img {
        width: 100%;
        height: auto; }
    .article .inner .atext {
      width: 100%; }
      .article .inner .atext iframe {
        width: 100%;
        min-height: 450px;
        height: auto; }
      .article .inner .atext .text a {
        color: rgba(255, 255, 255, 0.4); }
        .article .inner .atext .text a:hover {
          color: #fff; }
      .article .inner .atext .text li {
        position: relative;
        padding: 0 0 0 15px; }
        .article .inner .atext .text li:before {
          content: '';
          position: absolute;
          top: 8px;
          left: 0;
          background: #ac9883;
          border-radius: 100%;
          width: 5px;
          height: 5px; }
    .article .inner .meta {
      color: rgba(255, 255, 255, 0.4);
      font-family: "CF ModGrotesk";
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 14px;
      /* 100% */
      letter-spacing: 0.14px;
      margin: 0 0 10px 0; }
    .article .inner .share {
      font-family: "CF ModGrotesk";
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 16px;
      letter-spacing: 0.14px;
      margin: 30px 0 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .article .inner .share .label {
        color: #FFF;
        margin: 0 0 5px 0; }
      .article .inner .share .links a {
        display: inline-block;
        color: rgba(255, 255, 255, 0.4); }
        .article .inner .share .links a:hover {
          color: #fff; }
  @media (max-width: 660px) {
    .article .gallery {
      margin-top: 50px; } }

.formwrap .inner {
  max-width: 640px;
  margin: 0 auto; }
  @media (max-width: 960px) {
    .formwrap .inner {
      max-width: none; } }

.formwrap .info {
  margin: 0 0 40px 0;
  text-align: center; }
  .formwrap .info a {
    color: #ac9883; }
    .formwrap .info a:hover {
      color: #fff; }
  .formwrap .info strong {
    font-weight: 400;
    color: rgba(172, 152, 131, 0.4); }

.formwrap .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 0 50px 0; }
  .formwrap .socials a {
    display: block;
    margin: 0 10px; }
    .formwrap .socials a:hover {
      opacity: 0.5; }

.homehero .content {
  text-align: center;
  padding: 90px 0; }
  @media (max-width: 660px) {
    .homehero .content {
      padding: 60px 0; } }
  .homehero .content > div {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0); }

.homehero .title {
  background: -webkit-linear-gradient(4deg, #AC9883 12.19%, #FFF 57.85%, #AC9883 87.65%);
  background: -o-linear-gradient(4deg, #AC9883 12.19%, #FFF 57.85%, #AC9883 87.65%);
  background: linear-gradient(86deg, #AC9883 12.19%, #FFF 57.85%, #AC9883 87.65%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 20px 0; }
  @media (max-width: 660px) {
    .homehero .title {
      padding: 10px 0; } }

.homehero .image {
  position: relative;
  z-index: 1; }
  .homehero .image img {
    width: 100%; }
    @media (max-width: 660px) {
      .homehero .image img {
        width: 150vw;
        max-width: none;
        margin-left: -25%; } }

.homeicon {
  margin-top: -35%;
  padding: 0 0 90px 0;
  position: relative;
  z-index: 1; }

.homeabout {
  color: #000;
  text-align: center;
  position: relative;
  z-index: 1; }
  .homeabout .content {
    position: absolute;
    top: 280px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 960px;
    width: 100%;
    padding: 0 10px; }
  .homeabout .title {
    background: -webkit-linear-gradient(4deg, rgba(0, 0, 0, 0.9) 15.6%, rgba(127, 113, 99, 0.6) 48.22%, rgba(0, 0, 0, 0.6) 80.18%);
    background: -o-linear-gradient(4deg, rgba(0, 0, 0, 0.9) 15.6%, rgba(127, 113, 99, 0.6) 48.22%, rgba(0, 0, 0, 0.6) 80.18%);
    background: linear-gradient(86deg, rgba(0, 0, 0, 0.9) 15.6%, rgba(127, 113, 99, 0.6) 48.22%, rgba(0, 0, 0, 0.6) 80.18%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px 0; }
  .homeabout .button {
    margin: 20px 0 0 0; }
    .homeabout .button > div {
      border: 1px solid #000; }
    .homeabout .button span {
      color: #000; }
      .homeabout .button span:nth-child(1) {
        border: 1px solid #000; }
    .homeabout .button:hover > div {
      border-color: #fff; }
    .homeabout .button:hover span {
      color: #fff;
      border-color: #fff; }
      .homeabout .button:hover span:nth-child(1) {
        background: #fff; }
  .homeabout .triangle svg {
    width: 100%; }
    @media (max-width: 960px) {
      .homeabout .triangle svg {
        width: 150vw;
        max-width: none;
        margin-left: -25vw; } }
    @media (max-width: 960px) {
      .homeabout .triangle svg {
        width: 200vw;
        margin-left: -50vw; } }

.homeprojects {
  position: relative;
  z-index: 2;
  background: #000;
  border-bottom: 1px solid #AC9883;
  padding: 0 0 50px 0;
  margin: 0 0 50px 0; }
  .homeprojects .content {
    text-align: center;
    padding: 40vh 0 90px; }
    @media all and (max-width: 1160px) {
      .homeprojects .content {
        padding: 25vh 0 90px; } }
    @media all and (max-width: 960px) {
      .homeprojects .content {
        padding: 90px 0; } }
    .homeprojects .content .title {
      background: -webkit-linear-gradient(4deg, #AC9883 15.14%, #FFF 63.48%, #AC9883 87.27%);
      background: -o-linear-gradient(4deg, #AC9883 15.14%, #FFF 63.48%, #AC9883 87.27%);
      background: linear-gradient(86deg, #AC9883 15.14%, #FFF 63.48%, #AC9883 87.27%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
    .homeprojects .content .text {
      margin: 20px 0 0 0;
      padding: 0 20px; }
      @media (max-width: 660px) {
        .homeprojects .content .text {
          padding: 0 10px; }
          .homeprojects .content .text br {
            display: none; } }
    .homeprojects .content .button {
      margin: 20px 0 0 0; }
  .homeprojects .list {
    padding: 0 8.33333%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (max-width: 660px) {
      .homeprojects .list {
        padding: 0 10px; } }
    .homeprojects .list .tease--project {
      margin: 0;
      padding: 0;
      width: 33.33333%; }
      @media (max-width: 660px) {
        .homeprojects .list .tease--project {
          width: 100%; } }
      .homeprojects .list .tease--project:nth-child(1) {
        padding: 100px 8.33333% 0 0; }
        @media (max-width: 660px) {
          .homeprojects .list .tease--project:nth-child(1) {
            padding: 0 16.66667% 90px 0; } }
      .homeprojects .list .tease--project:nth-child(2) {
        padding: 0 16.66667% 0 0; }
        @media (max-width: 660px) {
          .homeprojects .list .tease--project:nth-child(2) {
            padding: 0 0 90px 16.66667%; } }
      .homeprojects .list .tease--project:nth-child(3) {
        padding: 15px 16.66667% 0 0; }
        @media (max-width: 660px) {
          .homeprojects .list .tease--project:nth-child(3) {
            padding: 0 16.66667% 90px 0; } }
      .homeprojects .list .tease--project:nth-child(4) {
        padding: 45px 0 0 8.33333%; }
        @media (max-width: 660px) {
          .homeprojects .list .tease--project:nth-child(4) {
            padding: 0 0 90px 16.66667%; } }
      .homeprojects .list .tease--project:nth-child(5) {
        padding: 200px 0 0 16.66667%; }
        @media (max-width: 660px) {
          .homeprojects .list .tease--project:nth-child(5) {
            padding: 0 16.66667% 90px 0; } }
      .homeprojects .list .tease--project:nth-child(6) {
        padding: 0 0 0 8.33333%; }
        @media (max-width: 660px) {
          .homeprojects .list .tease--project:nth-child(6) {
            padding: 0 0 90px 16.66667%; } }
  .homeprojects .button:hover > div {
    border-color: #fff; }
  .homeprojects .button:hover span {
    color: #fff;
    border-color: #fff; }
    .homeprojects .button:hover span:nth-child(1) {
      background: #fff; }

.homeservices {
  position: relative;
  z-index: 1; }
  .homeservices .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
    min-height: 800px; }
    @media (max-width: 660px) {
      .homeservices .inner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        height: auto; } }
  .homeservices .content {
    padding: 0 20px;
    width: 25%; }
    @media all and (max-width: 1160px) {
      .homeservices .content {
        width: 33.33333%; } }
    @media (max-width: 960px) {
      .homeservices .content {
        width: 40%; } }
    @media (max-width: 660px) {
      .homeservices .content {
        padding: 0 10px 90px 10px;
        width: 100%; } }
    .homeservices .content .button {
      margin: 20px 0 0 0; }
      .homeservices .content .button:hover > div {
        border-color: #fff; }
      .homeservices .content .button:hover span {
        color: #fff;
        border-color: #fff; }
        .homeservices .content .button:hover span:nth-child(1) {
          background: #fff; }
  .homeservices .list {
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative; }
    @media all and (max-width: 1160px) {
      .homeservices .list {
        width: 66.66667%; } }
    @media (max-width: 960px) {
      .homeservices .list {
        width: 60%; } }
    @media (max-width: 660px) {
      .homeservices .list {
        width: 100%;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 180px 10px 0 10px; } }
  .homeservices .service .imagewrap {
    position: relative;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(172, 152, 131, 0.9)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(172, 152, 131, 0.9));
    padding: 1px; }
  .homeservices .service .title {
    white-space: nowrap;
    margin: 0 50px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .homeservices .service .title > div {
      background: #000; }
  .homeservices .service:nth-child(1) {
    margin-bottom: 22.22222%;
    margin-left: 44.44444%; }
    @media (max-width: 660px) {
      .homeservices .service:nth-child(1) {
        margin: 0;
        padding: 0 16.66667% 90px 0; } }
  .homeservices .service:nth-child(2) {
    margin-top: 33.33333%;
    margin-left: 33.33333%; }
    @media (max-width: 660px) {
      .homeservices .service:nth-child(2) {
        margin: 0;
        padding: 0 0 90px 16.66667%; } }
  .homeservices .service:nth-child(3) {
    margin-bottom: 27.77778%;
    margin-left: 27.77778%; }
    @media (max-width: 660px) {
      .homeservices .service:nth-child(3) {
        margin: 0;
        padding: 0 16.66667% 90px 0; } }
  .homeservices .service:nth-child(4) {
    margin-left: 44.44444%; }
    @media (max-width: 660px) {
      .homeservices .service:nth-child(4) {
        margin: 0;
        padding: 0 0 90px 16.66667%; } }
  .homeservices .service:hover .button > div {
    border-color: #fff; }
  .homeservices .service:hover .button span {
    color: #fff;
    border-color: #fff; }
    .homeservices .service:hover .button span:nth-child(1) {
      background: #fff; }
  .homeservices .big {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ac9883;
    color: transparent;
    font-family: "CF ModGrotesk";
    font-size: 41.66667vw;
    line-height: 46.875vw;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    z-index: -1; }
    @media (max-width: 1440px) {
      .homeservices .big {
        font-size: 31.66667vw;
        line-height: 36.875vw; } }
    @media (max-width: 660px) {
      .homeservices .big {
        font-size: 20vw;
        line-height: 1;
        top: 0; } }

.stats {
  position: relative;
  z-index: 1;
  padding: 90px 0;
  text-align: center; }
  @media (max-width: 660px) {
    .stats {
      padding: 0 0 90px 0; } }
  .stats .number {
    max-width: 500px;
    margin: 0 auto; }
  .stats .title {
    padding: 0 0 10px 0; }
  .stats .stat {
    padding: 10px 0; }
    @media (max-width: 660px) {
      .stats .stat .text {
        font-size: 20px;
        line-height: 20px; } }

.ginput_recaptcha {
  display: none !important; }
