@charset "UTF-8";
@import "vendors/slick.css";
html.show-c .wowo {
  opacity: 0;
}
html .wowo {
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
html .wowo.animated {
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  visibility: visible;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0) scale(1.4);
            transform: translate(0, 0) scale(1.4);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}

@keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0) scale(1.4);
            transform: translate(0, 0) scale(1.4);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInBigUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInBigUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
            transform: translate3d(-30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
            transform: translate3d(-30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
            transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
            transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.zoomOut.animated {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}

.fadeInLeft.animated {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

.fadeInRight.animated {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

.fadeIn.animated {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.fadeInUp.animated {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.fadeInBigUp.animated {
  -webkit-animation-name: fadeInBigUp;
          animation-name: fadeInBigUp;
}

.fadeInDown.animated {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.delay-in-1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.delay-in-2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-in-3 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-in-4 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-in-5 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-in-6 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-in-1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.delay-in-2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-in-3 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-in-4 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-in-5 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-in-6 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-in-7 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.delay-in-8 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay-in-9 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.delay-in-10 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-in-11 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.delay-in-12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.delay-in-13 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.delay-in-14 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.delay-in-15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-in-16 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.delay-in-17 {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.delay-in-18 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.delay-in-19 {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

.delay-in-20 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-in-21 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.delay-in-22 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.delay-in-23 {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.delay-in-24 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.delay-in-25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.delay-in-26 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.delay-in-27 {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.delay-in-28 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.delay-in-29 {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

.delay-in-30 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.wrapper-top {
  display: block;
  height: 144px;
  width: 100%;
}
@media (max-width: 1200px) {
  .wrapper-top {
    height: 110px;
  }
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  overflow-x: hidden;
  font-size: 20px;
  line-height: 1.25;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #a09a90;
  background: #000000;
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
html.bg-white,
body.bg-white {
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

a {
  text-decoration: underline;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #000000;
  font-size: 20px;
  line-height: 1.25;
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  color: #a09a90;
}
a:hover {
  color: #fff;
}

.content-page {
  padding: 244px 0 100px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .content-page {
    padding: 170px 0 60px;
  }
}
@media (max-width: 767px) {
  .content-page {
    padding: 140px 0 30px;
  }
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 140px;
}
@media (max-width: 1680px) {
  .container {
    padding: 0 120px;
  }
}
@media (max-width: 1440px) {
  .container {
    padding: 0 80px;
  }
}
@media (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 25px;
  }
}

.notfound {
  padding: 240px 0;
  text-align: center;
}
@media (max-width: 991px) {
  .notfound {
    padding: 150px 0;
  }
}
@media (max-width: 767px) {
  .notfound {
    padding: 120px 0;
  }
}
.notfound h1 {
  font-size: 72px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .notfound h1 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .notfound h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }
}
.notfound h2 {
  font-size: 44px;
}
@media (max-width: 991px) {
  .notfound h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .notfound h2 {
    font-size: 28px;
  }
}

h1 {
  font-size: 72px;
  line-height: 1;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 58px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 45px;
  }
}

h2 {
  font-size: 57px;
  line-height: 1;
}
@media (max-width: 1200px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 46px;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  h3 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 24px;
  line-height: 1.25;
}
@media (max-width: 767px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
  line-height: 1.25;
}
@media (max-width: 767px) {
  h6 {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 30px 0px;
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

ul,
li {
  list-style: none;
}

ul {
  margin-bottom: 30px;
}
ul:last-child {
  margin-bottom: 0;
}
ul > li {
  padding-left: 20px;
  position: relative;
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 20px;
  line-height: 1.25;
}
ul > li:last-child {
  margin-bottom: 0;
}
ul > li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  line-height: 25px;
}
ol {
  margin-bottom: 30px;
}
ol:last-child {
  margin-bottom: 0;
}
ol > li {
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.25;
}
ol > li::before {
  content: counter(list-item) ".";
  position: absolute;
  left: 0px;
  font-size: 20px;
  line-height: 1.25;
}
ol ul {
  padding-left: 20px;
}
ol ol {
  padding-left: 20px;
}

p {
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
p a {
  text-decoration: underline;
  font-size: inherit;
  line-height: inherit;
}

.wp-block-columns .wp-block-column {
  margin-bottom: 20px;
}
.wp-block-columns .wp-block-column .wp-block-buttons {
  margin-top: 20px;
}
.wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button__link {
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 24px;
  color: #a09a90;
  padding: 0 30px;
  line-height: 60px;
  background: transparent;
  border-radius: 0;
  border: 1px solid #a1998f;
}
@media (max-width: 767px) {
  .wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button__link {
    line-height: 45px;
    font-size: 20px;
    padding: 0 20px;
  }
}
.wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button__link:hover {
  background-color: #a09a90;
  color: #fff;
}

.wp-container-2 {
  margin-bottom: 20px;
}
.wp-container-2 .wp-block-button__link {
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 24px;
  color: #a09a90;
  padding: 0 30px;
  line-height: 60px;
  background: transparent;
  border-radius: 0;
  margin-bottom: 20px;
  border: 1px solid #a1998f;
}
@media (max-width: 767px) {
  .wp-container-2 .wp-block-button__link {
    line-height: 45px;
    font-size: 20px;
    padding: 0 20px;
  }
}
.wp-container-2 .wp-block-button__link:hover {
  background-color: #a09a90;
  color: #fff;
}

.wp-block-media-text .wp-block-media-text__media {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
    margin-bottom: 1.75em;
  }
}
.wp-block-media-text .wp-block-media-text__content .has-large-font-size {
  font-size: 57px;
  margin: 0 0 30px;
}
@media (max-width: 1200px) {
  .wp-block-media-text .wp-block-media-text__content .has-large-font-size {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .wp-block-media-text .wp-block-media-text__content .has-large-font-size {
    font-size: 32px;
  }
}

blockquote p {
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  margin-bottom: 20px;
  line-height: 1.25;
  font-size: 20px;
}
blockquote p span {
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  line-height: inherit;
}
blockquote cite {
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  line-height: 1.25;
  font-style: normal;
  font-size: 20px;
}

b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

sup {
  font-size: 80%;
  position: relative;
  top: -0.6em;
}

sub {
  font-size: 80%;
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

input,
textarea,
select,
button {
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
}

input,
textarea {
  border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}

input[type=number] {
  -moz-appearance: textfield;
}

button,
input:not([type=checkbox]):not([type=radio]),
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

textarea {
  overflow: auto;
}

footer {
  padding: 85px 0 60px;
  background-color: #a09a90;
}
@media (max-width: 1200px) {
  footer {
    padding: 60px 0 40px;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
}
footer .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1280px) {
  footer .content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
footer .content h2 {
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  color: #000000;
  font-size: 24px;
  margin: 0;
  line-height: 1;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
footer .content p {
  color: #000000;
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 16px;
  line-height: 1.5625;
  margin-bottom: 0;
}
footer .content p a {
  color: inherit;
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}
footer .content p a:hover {
  color: #fff;
}
footer .content .footer-logo {
  width: 33.66%;
}
@media (max-width: 1280px) {
  footer .content .footer-logo {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
}
footer .content .footer-logo a img {
  display: block;
  width: 340px;
  margin: 0;
}
@media (max-width: 1440px) {
  footer .content .footer-logo a img {
    width: 280px;
  }
}
@media (max-width: 1280px) {
  footer .content .footer-logo a img {
    margin: 0 auto;
  }
}
footer .content .footer-logo img {
  width: 180px;
  margin-top: 20px;
  margin-left: 90px;
}
@media (max-width: 1440px) {
  footer .content .footer-logo img {
    width: 120px;
  }
}
@media (max-width: 1280px) {
  footer .content .footer-logo img {
    margin: 0 auto;
  }
}
footer .content .loaction {
  width: 16.83%;
  padding-top: 5px;
}
@media (max-width: 1280px) {
  footer .content .loaction {
    width: 33%;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  footer .content .loaction {
    width: 50%;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  footer .content .loaction {
    width: 100%;
  }
}
footer .content .loaction p a {
  text-decoration: underline;
}
footer .content .contact {
  width: 25.24%;
  padding-top: 5px;
}
@media (max-width: 1280px) {
  footer .content .contact {
    width: 33%;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  footer .content .contact {
    width: 50%;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  footer .content .contact {
    width: 100%;
  }
}
footer .content .contact .logo {
  display: block;
  width: 135px;
  margin-top: 24px;
}
footer .content .links {
  padding-top: 5px;
  width: 24.27%;
}
footer .content .links p {
  margin-bottom: 5px;
}
footer .content .links p:last-child {
  margin: 34px 0 0;
}
@media (max-width: 1280px) {
  footer .content .links {
    width: 33%;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  footer .content .links {
    width: 100%;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  z-index: 5;
}
header a {
  text-decoration: none;
}
header a:hover {
  text-decoration: none;
}
header ul,
header li,
header ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
header ul::before,
header li::before,
header ol::before {
  content: none;
}
header.sticky .header {
  padding: 20px 0;
}
header.index_z {
  z-index: 10;
}
header .header {
  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: 40px 0 36px;
  -webkit-transition: padding 0.2s ease-in-out;
  transition: padding 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  header .header {
    padding: 30px 0;
  }
}
@media (max-width: 991px) {
  header .header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
header .header .logo-box {
  display: block;
  width: 260px;
  position: relative;
  z-index: 8;
  margin-top: 6px;
}
@media (max-width: 1200px) {
  header .header .logo-box {
    width: 200px;
    margin-top: 0;
  }
}
header .header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  header .header nav {
    display: none;
  }
}
header .header nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -38px;
  height: 100%;
}
@media (max-width: 1680px) {
  header .header nav .menu {
    margin: 0 -20px;
  }
}
@media (max-width: 1200px) {
  header .header nav .menu {
    margin: 0 -12px;
  }
}
header .header nav .menu li {
  padding: 0 38px;
}
@media (max-width: 1680px) {
  header .header nav .menu li {
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  header .header nav .menu li {
    padding: 0 12px;
  }
}
header .header nav .menu li.active a {
  color: #fff;
}
header .header nav .menu li a {
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  line-height: 1.1875;
  font-size: 16px;
  color: #a09a90;
  text-decoration: underline;
  text-transform: uppercase;
}
header .header nav .menu li a:hover {
  color: #fff;
}
header .header nav .btn {
  border: solid 1px #a1998f;
  padding: 0 20px;
  line-height: 40px;
  font-size: 16px;
  color: #a09a90;
  margin-left: 74px;
  text-transform: uppercase;
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@media (max-width: 1680px) {
  header .header nav .btn {
    margin-left: 36px;
  }
}
@media (max-width: 1200px) {
  header .header nav .btn {
    margin-left: 20px;
    padding: 0 15px;
  }
}
header .header nav .btn:hover {
  background: #a09a90;
  color: #fff;
}
header .header nav.show-m {
  display: none;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  padding: 200px 50px 0 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
}
@media (max-width: 991px) {
  header .header nav.show-m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .header nav.show-m.active {
  opacity: 1;
  top: 0;
}
header .header nav.show-m .menu {
  display: block;
  height: auto;
  text-align: center;
}
header .header nav.show-m .menu li {
  margin-bottom: 30px;
}
header .header nav.show-m .btn {
  margin-left: 0;
}
header .header .hamburger {
  position: relative;
  text-align: center;
  width: 32px;
  height: 48px;
  z-index: 9;
  display: none;
}
@media (max-width: 991px) {
  header .header .hamburger {
    display: block;
  }
}
header .header .hamburger.active span:first-child {
  top: 24px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .header .hamburger.active span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .header .hamburger.active span:last-child {
  opacity: 0;
}
header .header .hamburger span {
  position: absolute;
  width: 32px;
  height: 2px;
  background-color: #a09a90;
  left: 0px;
  top: 0;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .header .hamburger span:first-child {
  top: 16px;
}
header .header .hamburger span:nth-child(2) {
  top: 24px;
}
header .header .hamburger span:last-child {
  top: 33px;
}
header .header .hamburger::before {
  content: none;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.hero-banner.full-page {
  z-index: 9;
}
@media (max-width: 575px) {
  .hero-banner.full-page {
    height: 100vh;
  }
  .hero-banner.full-page::before {
    content: none;
  }
}
@media (max-width: 575px) {
  .hero-banner.full-page .container {
    height: 100%;
  }
}
@media (max-width: 575px) {
  .hero-banner {
    height: auto;
  }
  .hero-banner::before {
    content: "";
    width: 100%;
    height: 110px;
    display: block;
  }
}
.hero-banner .bg-box {
  background: no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-banner .container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media (max-width: 575px) {
  .hero-banner .container {
    height: 100vw;
  }
}
.hero-banner .container h1 {
  text-transform: uppercase;
  max-width: 978px;
  margin: 0 auto;
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 100px;
  line-height: 0.9;
  letter-spacing: 1.2px;
  color: #fff;
  text-align: center;
}
.hero-banner .container h1.diverse-c {
  color: #a09a90;
}
.hero-banner .container h1 span {
  font-style: italic;
}
@media (max-width: 1200px) {
  .hero-banner .container h1 {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .hero-banner .container h1 {
    font-size: 45px;
  }
}
.hero-banner .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 34px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 20px;
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  color: #fff;
  text-decoration: none;
  z-index: 2;
}
.hero-banner .scroll-down:hover {
  color: #a09a90;
}

.page-id-28 .hero-banner .bg-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-color: #000000;
}

.map-wrap {
  position: relative;
}
.map-wrap .map {
  position: relative;
  padding-top: 71.15%;
  width: 100%;
}
.map-wrap .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.map-wrap .map .marker-icon {
  width: 28px;
  height: 28px;
  background-color: #fff;
  font-size: 20px;
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
.map-wrap .map .addedmark {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.map-wrap .map .addedmark:last-child {
  background-color: transparent;
  width: 260px !important;
  height: 130px !important;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.map-wrap .map .addedmark .num-box {
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 16px;
  line-height: 1.3125;
}
.map-wrap .content {
  max-width: 1360px;
  margin: 0 auto;
}
.map-wrap .content .menu-place {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 94px -48px 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 104px;
}
@media (max-width: 1680px) {
  .map-wrap .content .menu-place {
    padding: 0;
    margin: 60px -24px;
  }
}
@media (max-width: 1440px) {
  .map-wrap .content .menu-place {
    height: 208px;
    margin: 60px 0;
  }
}
@media (max-width: 767px) {
  .map-wrap .content .menu-place {
    height: 208px;
    margin: 60px 0;
  }
}
@media (max-width: 575px) {
  .map-wrap .content .menu-place {
    height: auto;
  }
}
.map-wrap .content .menu-place li {
  padding: 0 48px;
  letter-spacing: 0.45px;
  color: #000000;
}
@media (max-width: 1680px) {
  .map-wrap .content .menu-place li {
    padding: 0 24px;
  }
}
@media (max-width: 1440px) {
  .map-wrap .content .menu-place li {
    padding: 0px;
  }
}
.map-wrap .content .menu-place li::before {
  content: none;
}

.full-page-slider .content {
  max-width: 1088px;
  margin: 0 auto;
  text-align: center;
  padding: 92px 0 96px;
}
@media (max-width: 1200px) {
  .full-page-slider .content {
    padding: 60px 0 70px;
  }
}
@media (max-width: 767px) {
  .full-page-slider .content {
    padding: 40px 0;
  }
}
.full-page-slider .content h2 {
  font-size: 66px;
  line-height: 1.06;
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  letter-spacing: 1.3px;
  color: #a09a90;
  margin: 0 auto 35px;
}
@media (max-width: 1200px) {
  .full-page-slider .content h2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .full-page-slider .content h2 {
    font-size: 32px;
    margin: 0 0 20px;
  }
}
.full-page-slider .content h2 span {
  font-style: italic;
  display: block;
}
.full-page-slider .content p {
  font-size: 30px;
  letter-spacing: 1.35px;
  line-height: 1.27;
}
@media (max-width: 767px) {
  .full-page-slider .content p {
    font-size: 24px;
  }
}
.full-page-slider .content p:last-child {
  margin-bottom: 0;
}
.full-page-slider .text {
  max-width: 1188px;
  margin: 0 auto;
  text-align: center;
  padding: 92px 0 96px;
}
@media (max-width: 1200px) {
  .full-page-slider .text {
    padding: 60px 0 70px;
  }
}
@media (max-width: 767px) {
  .full-page-slider .text {
    padding: 40px 0;
  }
}
.full-page-slider .text h2 {
  font-size: 66px;
  line-height: 1.06;
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  letter-spacing: 0.32px;
  color: #a09a90;
  margin: 0 auto 35px;
}
@media (max-width: 1200px) {
  .full-page-slider .text h2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .full-page-slider .text h2 {
    font-size: 32px;
    margin: 0 0 20px;
  }
}
.full-page-slider .text h2 span {
  font-style: italic;
  display: block;
}
.full-page-slider .text p {
  font-size: 30px;
  letter-spacing: 1.35px;
  line-height: 1.27;
}
@media (max-width: 767px) {
  .full-page-slider .text p {
    font-size: 24px;
  }
}
.full-page-slider .text p:last-child {
  margin-bottom: 0;
}
.full-page-slider .slider-content {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.full-page-slider .slider-content ul,
.full-page-slider .slider-content li,
.full-page-slider .slider-content ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.full-page-slider .slider-content ul::before,
.full-page-slider .slider-content li::before,
.full-page-slider .slider-content ol::before {
  content: none;
}
.full-page-slider .slider-content .slider-box {
  overflow: hidden;
}
.full-page-slider .slider-content .img-box {
  height: 48.28vw;
  background: no-repeat center;
  background-size: cover;
  cursor: -webkit-grab;
  cursor: grab;
}
.full-page-slider .slider-content .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 27px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media (max-width: 575px) {
  .full-page-slider .slider-content .slick-dots {
    bottom: 18px;
  }
}
.full-page-slider .slider-content .slick-dots li {
  margin: 0 12px;
}
.full-page-slider .slider-content .slick-dots li.slick-active button {
  background: #a09a90;
}
@media (max-width: 575px) {
  .full-page-slider .slider-content .slick-dots li {
    margin: 0 4px;
  }
}
.full-page-slider .slider-content .slick-dots li button {
  font-size: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  -webkit-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
  cursor: pointer;
}
@media (max-width: 575px) {
  .full-page-slider .slider-content .slick-dots li button {
    width: 13px;
    height: 13px;
  }
}
.full-page-slider .slider-content .slick-dots li button:hover {
  background: #a09a90;
}
.full-page-slider.single .content {
  max-width: 1258px;
  padding: 85px 0 85px;
}
@media (max-width: 1200px) {
  .full-page-slider.single .content {
    padding: 60px 0 70px;
  }
}
@media (max-width: 767px) {
  .full-page-slider.single .content {
    padding: 40px 0;
  }
}
.full-page-slider.single .content h2 {
  line-height: 1.06;
}
.full-page-slider.single .img-box {
  overflow: hidden;
}
.full-page-slider.single .img {
  height: 48.28vw;
  background: no-repeat center;
  background-size: cover;
}

.full-page-slider + .full-page-bg {
  height: 48.28vw;
  margin-bottom: 0;
}

.page-id-24 .full-text-c h2 span {
  display: inline;
}

.page-id-28 .full-text-c .content {
  max-width: 1188px;
}
.page-id-28 .full-page-slider + .full-text-c .content {
  max-width: 1258px;
}
.page-id-28 .full-page-bg + .full-text-c .content {
  max-width: 1223px;
}
.page-id-28 .text-img-box-groups .text-img.reverse .text {
  margin-left: 154px;
  margin-right: 139px;
}
@media (max-width: 1680px) {
  .page-id-28 .text-img-box-groups .text-img.reverse .text {
    margin-left: 120px;
    margin-right: 80px;
  }
}
@media (max-width: 1200px) {
  .page-id-28 .text-img-box-groups .text-img.reverse .text {
    margin-left: 80px;
    margin-right: 60px;
  }
}
@media (max-width: 991px) {
  .page-id-28 .text-img-box-groups .text-img.reverse .text {
    margin-left: 40px;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .page-id-28 .text-img-box-groups .text-img.reverse .text {
    max-width: none;
  }
}
.page-id-28 .text-img-box-groups .img-box .img {
  padding-top: 87.56%;
}
.page-id-28 .text-img-box-groups:last-child .img-box .img {
  padding-top: 89.68%;
}

.full-page-bg {
  height: 43.02vw;
  position: relative;
  margin-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .full-page-bg {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .full-page-bg {
    margin-bottom: 40px;
  }
}
.full-page-bg .bg-box {
  background: no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.full-page-bg .marker {
  position: absolute;
  top: 47.03%;
  left: 15.52%;
  width: 17.86%;
}
.full-page-bg .marker img {
  width: 100%;
}

.text-img-box-groups {
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  .text-img-box-groups {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups {
    margin-bottom: 40px;
  }
}
.text-img-box-groups:last-of-type .img-box {
  margin-bottom: 0;
}
.text-img-box-groups.the_image_takes_up_the_full_width .text-img .img-box {
  margin-bottom: 0;
}
.text-img-box-groups.the_image_takes_up_the_full_width .text-img .img-box .img {
  width: 100%;
  padding-top: 50.37%;
  background: no-repeat center;
  background-size: cover;
}
.text-img-box-groups .img-box {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .text-img-box-groups .img-box {
    margin-bottom: 40px;
  }
}
.text-img-box-groups .text-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .text-img-box-groups .text-img {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups .text-img {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.text-img-box-groups .text-img:last-child {
  margin-bottom: 0;
}
.text-img-box-groups .text-img.reverse .text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 189px;
  margin-right: 103px;
}
@media (max-width: 1680px) {
  .text-img-box-groups .text-img.reverse .text {
    margin-left: 120px;
    margin-right: 80px;
  }
}
@media (max-width: 1200px) {
  .text-img-box-groups .text-img.reverse .text {
    margin-left: 80px;
    margin-right: 60px;
  }
}
@media (max-width: 991px) {
  .text-img-box-groups .text-img.reverse .text {
    margin-left: 40px;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups .text-img.reverse .text {
    max-width: none;
  }
}
.text-img-box-groups .text-img .text {
  width: 100%;
  margin-left: 136px;
  margin-right: 154px;
  max-width: 398px;
}
@media (max-width: 1680px) {
  .text-img-box-groups .text-img .text {
    margin-left: 80px;
    margin-right: 100px;
  }
}
@media (max-width: 1200px) {
  .text-img-box-groups .text-img .text {
    margin-left: 60px;
    margin-right: 80px;
  }
}
@media (max-width: 991px) {
  .text-img-box-groups .text-img .text {
    margin-left: 30px;
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups .text-img .text {
    margin: 0px;
    max-width: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.text-img-box-groups .text-img .text p {
  letter-spacing: 1.2px;
}
.text-img-box-groups .text-img .text p:last-child {
  margin-bottom: 0;
}
.text-img-box-groups .text-img .img {
  width: 100%;
  padding-top: 133%;
  background: no-repeat center;
  background-size: cover;
}
.text-img-box-groups.big_image .text-img .text {
  margin-left: 0;
}
.text-img-box-groups.big_image .text-img .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 0;
}
.text-img-box-groups.big_image .text-img .img-box .img {
  padding-top: 76.19%;
}
.text-img-box-groups.team {
  margin: 100px 0;
}
@media (max-width: 1200px) {
  .text-img-box-groups.team {
    margin: 70px 0;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups.team {
    margin: 40px 0;
  }
}
.text-img-box-groups.team .text-img {
  max-width: 1396px;
  margin: 0 auto 105px;
}
@media (max-width: 1200px) {
  .text-img-box-groups.team .text-img {
    margin-bottom: 70px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups.team .text-img {
    margin-bottom: 40px;
  }
}
.text-img-box-groups.team .text-img .text .text-c {
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  .text-img-box-groups.team .text-img .text .text-c {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups.team .text-img .text .text-c {
    margin-bottom: 40px;
  }
}
.text-img-box-groups.team .text-img .text .text-c:last-child {
  margin-bottom: 0;
}
.text-img-box-groups.team .text-img:last-child {
  margin-bottom: 0;
}
.text-img-box-groups.team .text-img.reverse .text {
  margin-right: 15px;
  margin-left: 170px;
}
@media (max-width: 1680px) {
  .text-img-box-groups.team .text-img.reverse .text {
    margin-left: 100px;
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .text-img-box-groups.team .text-img.reverse .text {
    margin-left: 80px;
  }
}
@media (max-width: 991px) {
  .text-img-box-groups.team .text-img.reverse .text {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups.team .text-img.reverse .text {
    margin-left: 0;
  }
}
.text-img-box-groups.team .text-img .text {
  margin-left: 20px;
  margin-right: 165px;
}
@media (max-width: 1680px) {
  .text-img-box-groups.team .text-img .text {
    margin-right: 100px;
    margin-left: 20px;
  }
}
@media (max-width: 1200px) {
  .text-img-box-groups.team .text-img .text {
    margin-right: 80px;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .text-img-box-groups.team .text-img .text {
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups.team .text-img .text {
    margin-right: 0;
  }
}
.text-img-box-groups.team .text-img .text h2 {
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 40px;
  text-decoration: underline;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .text-img-box-groups.team .text-img .text h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .text-img-box-groups.team .text-img .text h2 {
    margin-bottom: 20px;
  }
}
.text-img-box-groups.team .text-img .text img {
  margin-bottom: 50px;
  padding-top: 132.84;
}
@media (max-width: 1200px) {
  .text-img-box-groups.team .text-img .text img {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .text-img-box-groups.team .text-img .text img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .text-img-box-groups.team .text-img .img-box {
    margin-bottom: 40px;
  }
}
.text-img-box-groups.team .text-img .img-box .img {
  padding-top: 132.84%;
}
@media (max-width: 767px) {
  .text-img-box-groups.team .text-img .img-box .img {
    padding-top: 100%;
    background-position-y: 10%;
  }
}

.home .text-img-box-groups .text-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .home .text-img-box-groups .text-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home .text-img-box-groups .text-img .text {
  width: 100%;
  margin-right: 154px;
  max-width: 398px;
  margin-left: 0;
}
@media (max-width: 1440px) {
  .home .text-img-box-groups .text-img .text {
    margin-right: 100px;
  }
}
@media (max-width: 1200px) {
  .home .text-img-box-groups .text-img .text {
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  .home .text-img-box-groups .text-img .text {
    margin-right: 0;
    max-width: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 575px) {
  .home .text-img-box-groups .text-img .text {
    text-align: center;
  }
}
.home .text-img-box-groups .text-img .text p {
  letter-spacing: 0.45px;
}
.home .text-img-box-groups .text-img .text p:last-child {
  margin-bottom: 0;
}
.home .text-img-box-groups .text-img .img-box {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home .text-img-box-groups .text-img .img-box {
    margin-bottom: 40px;
  }
}
.home .text-img-box-groups .text-img .img {
  width: 100%;
  padding-top: 75.92%;
  background: no-repeat center;
  background-size: cover;
}
.home .full-page-bg {
  height: 48.28vw;
}

.page-id-30 .text-img-box-groups .text-img .text {
  max-width: 280px;
  margin: 0 137px;
}
@media (max-width: 1680px) {
  .page-id-30 .text-img-box-groups .text-img .text {
    margin-left: 80px;
    margin-right: 80px;
  }
}
@media (max-width: 1200px) {
  .page-id-30 .text-img-box-groups .text-img .text {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (max-width: 991px) {
  .page-id-30 .text-img-box-groups .text-img .text {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .page-id-30 .text-img-box-groups .text-img .text {
    margin: 0;
    max-width: none;
  }
}
.page-id-30 .text-img-box-groups .text-img .img {
  padding-top: 75.92%;
}
.page-id-30 .text-img-box-groups .text-img.reverse .img {
  padding-top: 86.95%;
}
.page-id-30 .text-img-box-groups .text-img.reverse .text {
  width: 100%;
  margin-left: 136px;
  margin-right: 154px;
  max-width: 398px;
}
@media (max-width: 1680px) {
  .page-id-30 .text-img-box-groups .text-img.reverse .text {
    margin-left: 80px;
    margin-right: 100px;
  }
}
@media (max-width: 1200px) {
  .page-id-30 .text-img-box-groups .text-img.reverse .text {
    margin-left: 60px;
    margin-right: 80px;
  }
}
@media (max-width: 991px) {
  .page-id-30 .text-img-box-groups .text-img.reverse .text {
    margin-left: 30px;
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .page-id-30 .text-img-box-groups .text-img.reverse .text {
    margin: 0px;
    max-width: none;
  }
}
.page-id-30 .text-img-box-groups + .full-text-c .content {
  padding-top: 0;
}
.page-id-30 .text-img-box-groups:last-of-type .text-img .img-box {
  margin-bottom: 0;
}

@-webkit-keyframes markerjump {
  0% {
    top: 48.03%;
  }
  100% {
    top: 46.03%;
  }
}

@keyframes markerjump {
  0% {
    top: 48.03%;
  }
  100% {
    top: 46.03%;
  }
}
.form-block {
  padding: 86px 0 100px;
}
@media (max-width: 1200px) {
  .form-block {
    padding: 60px 0 80px;
  }
}
@media (max-width: 767px) {
  .form-block {
    padding: 40px 0;
  }
}
.form-block .form-box {
  max-width: 1335px;
  margin: 0 auto;
}
.form-block .form-box h1 {
  font-size: 66px;
  line-height: 1;
  letter-spacing: 0.2px;
  font-family: "freight-big-pro";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  margin: 0 0 93px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .form-block .form-box h1 {
    font-size: 48px;
    margin: 0 0 60px;
  }
}
@media (max-width: 767px) {
  .form-block .form-box h1 {
    font-size: 32px;
    margin: 0 0 40px;
  }
}
.form-block .form-box h1 em {
  font-style: italic;
  display: block;
}
.form-block .form-box .wpcf7-form.sent .wpcf7-response-output {
  color: #a09a90;
}
.form-block .form-box .wpcf7-form.invalid .wpcf7-response-output {
  color: red;
}
.form-block .form-box .wpcf7-form.invalid .list .wpcf7-form-control-wrap .wpcf7-not-valid {
  border-color: #dc3232;
}
.form-block .form-box .wpcf7-form .form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -43px;
}
@media (max-width: 1200px) {
  .form-block .form-box .wpcf7-form .form-list {
    margin: 0 -30px;
  }
}
@media (max-width: 991px) {
  .form-block .form-box .wpcf7-form .form-list {
    margin: 0px;
  }
}
.form-block .form-box .wpcf7-form .form-list .list {
  width: 50%;
  padding: 0 43px;
  margin-bottom: 48px;
}
@media (max-width: 1200px) {
  .form-block .form-box .wpcf7-form .form-list .list {
    padding: 0 20px;
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .form-block .form-box .wpcf7-form .form-list .list {
    padding: 0px;
    width: 100%;
  }
}
.form-block .form-box .wpcf7-form .form-list .list .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
  font-size: 24px;
  color: #a09a90;
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  margin-top: 5px;
  color: red;
}
@media (max-width: 767px) {
  .form-block .form-box .wpcf7-form .form-list .list .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .form-block .form-box .wpcf7-form .form-list .list .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    font-size: 16px;
  }
}
.form-block .form-box .wpcf7-form .form-list .list input {
  background: transparent;
  padding: 20px 0;
  font-size: 24px;
  line-height: 1.2083333333;
  border-bottom: 1px solid #707070;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #a09a90;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .form-block .form-box .wpcf7-form .form-list .list input {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .form-block .form-box .wpcf7-form .form-list .list input {
    font-size: 16px;
  }
}
.form-block .form-box .wpcf7-form .form-list .list input:focus {
  border-color: #fff;
}
.form-block .form-box .wpcf7-form .form-list .list input::-webkit-input-placeholder {
  font-size: 24px;
  color: #a09a90;
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@media (max-width: 767px) {
  .form-block .form-box .wpcf7-form .form-list .list input::-webkit-input-placeholder {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .form-block .form-box .wpcf7-form .form-list .list input::-webkit-input-placeholder {
    font-size: 16px;
  }
}
.form-block .form-box .wpcf7-form .form-list .send {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  position: relative;
}
.form-block .form-box .wpcf7-form .form-list .send .send-btn {
  width: auto;
  display: inline-block;
  background: transparent;
  border: 1px solid #a1998f;
  padding: 0 175px;
  line-height: 58px;
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 24px;
  color: #a09a90;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .form-block .form-box .wpcf7-form .form-list .send .send-btn {
    padding: 0;
    width: 100%;
    text-align: center;
    max-width: 375px;
    font-size: 20px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .form-block .form-box .wpcf7-form .form-list .send .send-btn {
    width: calc(100% - 50px);
  }
}
.form-block .form-box .wpcf7-form .form-list .send .send-btn:hover {
  background-color: #a09a90;
  color: #fff;
}
.form-block .form-box .wpcf7-form .form-list .send .wpcf7-spinner {
  border: 2px solid #fff;
  border-radius: 50%;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  -webkit-animation: loading 0.5s infinite linear;
          animation: loading 0.5s infinite linear;
  background: none;
  margin: 0 15px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 18px;
}
@media (max-width: 767px) {
  .form-block .form-box .wpcf7-form .form-list .send .wpcf7-spinner {
    top: 13.5px;
    width: 20px;
    height: 20px;
  }
}
.form-block .form-box .wpcf7-form .form-list .send .wpcf7-spinner::before {
  content: none;
}
.form-block .form-box .wpcf7-form .wpcf7-response-output {
  border: none;
  padding: 0;
  margin: 40px 0 0;
  font-size: 24px;
  color: red;
  text-align: center;
  font-family: "montserrat";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@media (max-width: 767px) {
  .form-block .form-box .wpcf7-form .wpcf7-response-output {
    font-size: 20px;
    margin: 20px 0 0;
  }
}
@media (max-width: 575px) {
  .form-block .form-box .wpcf7-form .wpcf7-response-output {
    font-size: 16px;
  }
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}