/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("~owl.carousel/src/img/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*
 *  Owl Carousel - Animate Plugin
 */
/*.owl-carousel{
	.animated {
		animation-duration: 1000ms;
		animation-fill-mode: both;
	}
	.owl-animated-in {
		z-index: 0;
	}
	.owl-animated-out {
		z-index: 1;
	}
	.fadeOut {
		animation-name: fadeOut;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}*/
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

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

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion) {
  .animated {
    animation: unset !important;
    transition: none !important;
  }
}
/* ------------------------------------------------------------------------- */
/* WordPress WYSIWYG Editor Styles */
/* ------------------------------------------------------------------------- */
.entry-content img {
  margin: 0 0 1.5em 0;
}

.alignleft, img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright, img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone,
img.alignnone {
  /* not sure about this one */
}

.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/* ------------------------------------------------------------------------- */
/* VARIABLES */
/* ------------------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
figure,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
}

/* ==========================================================================
   RESET CSS
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
figure,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
}

a {
  text-decoration: none;
  outline: 0;
}

a:hover {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

p a {
  outline: 0;
}

p a:hover {
  text-decoration: underline;
}

input[type=submit],
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html,
body {
  /*overflow-x: hidden;*/
}

/* ------------------------------------------------------------------------- */
/* MIXINS */
/* ------------------------------------------------------------------------- */
/*
@mixin theme($theme: DarkGray) {
  background: $theme;
  box-shadow: 0 0 1px rgba($theme, .25);
  color: #fff;
}

.info {
  @include theme;
}
.alert {
  @include theme($theme: DarkRed);
}
.success {
  @include theme($theme: DarkGreen);
}*/
/* ------------------------------------------------------------------------- */
/* GENEREAL STYLE - Classes used throught all the project */
/* ------------------------------------------------------------------------- */
/*html { background-color: $color-bg;}
html.bg-dark { background-color: $color-txt; color:$color-white; }*/
body {
  min-height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #1C2023;
  font-size: 1.125rem;
  line-height: 135%;
  text-wrap: pretty;
  background-color: #F1EFEB;
  -webkit-font-smoothing: antialiased;
}

body.bg-dark {
  background-color: #262626;
  color: #F5F4F2;
}

p {
  font-size: 1.125rem;
  line-height: 135%;
  margin-bottom: 20px;
}

ul li {
  font-size: 1.125rem;
  line-height: 135%;
  margin-bottom: 1.5rem;
}

.container-xs, .container-s, .container-m, .container-l, .container-xl, .container-full {
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.container-full {
  max-width: unset;
}

.container-xl {
  max-width: 1600px;
}

.container-l {
  max-width: 1400px;
}

.container-m {
  max-width: 1100px;
}

.container-s {
  max-width: 800px;
}

.container-xs {
  max-width: 600px;
}

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

a,
button {
  cursor: pointer;
  -webkit-appearance: none;
  background: transparent;
  border: none;
}

.clearfix, .clear {
  clear: both;
}

strong {
  font-family: "Montserrat-SemiBold", sans-serif;
}

p a, a {
  text-decoration: none;
  color: #1C2023;
  font-family: "Montserrat", sans-serif;
}

p i, i, p em, em {
  font-style: italic;
}

ul {
  list-style: none;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

.no_padding {
  padding: 0px !important;
}

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

.align-right {
  text-align: right;
}

.pt-0 {
  padding-top: 0;
}

.pt-xs {
  padding-top: 20px;
}

.pt-s {
  padding-top: 40px;
}

.pt-m {
  padding-top: 80px;
}

.pt-l {
  padding-top: 140px;
}

.pt-xl {
  padding-top: 200px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-xs {
  padding-bottom: 20px;
}

.pb-s {
  padding-bottom: 40px;
}

.pb-m {
  padding-bottom: 80px;
}

.pb-l {
  padding-bottom: 140px;
}

.pb-xl {
  padding-bottom: 200px;
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: 20px;
}

.mt-s {
  margin-top: 40px;
}

.mt-m {
  margin-top: 80px;
}

.mt-l {
  margin-top: 140px;
}

.mt-xl {
  margin-top: 200px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: 20px;
}

.mb-s {
  margin-bottom: 40px;
}

.mb-m {
  margin-bottom: 80px;
}

.mb-l {
  margin-bottom: 140px;
}

.mb-xl {
  margin-bottom: 200px;
}

.marginbig {
  margin-bottom: 70px;
}

.maxwidth {
  max-width: 1100px;
}

hr {
  border: none;
  background: rgba(0, 0, 0, 0.2);
  height: 1px;
  margin: 20px auto;
}

.bg-gold {
  background-color: #81715A;
  color: #F5F4F2;
}

.overflowx-hidden {
  overflow-x: hidden;
}

/* CALLTOACTIONS */
.cta-container {
  text-align: center;
}

.calltoaction {
  position: relative;
  display: inline-block;
  margin: 0;
  width: auto;
  text-align: center;
  padding: 14px 40px;
  color: #1C2023;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 1.125rem;
  line-height: 110%;
  letter-spacing: 0px;
  text-transform: uppercase;
  border-radius: 100px;
  border: 3px solid #1C2023;
  background-color: transparent;
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  opacity: 1;
  -webkit-appearance: none;
  cursor: pointer;
  overflow: hidden;
}

.calltoaction:hover {
  background-color: #1C2023;
  color: #F5F4F2;
}

.calltoaction.white {
  color: #F5F4F2;
  border-color: #F5F4F2;
}

.calltoaction.white:hover {
  background-color: #F5F4F2;
  color: #1C2023;
}

.calltoaction.gold {
  color: #F5F4F2;
  border-color: #AD8957;
  background-color: #AD8957;
}

.calltoaction.gold:hover {
  color: #AD8957;
  background-color: transparent;
  border-color: #AD8957;
}

.lozad {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.lozad.loaded {
  opacity: 1;
}

/* ANIMATIONS */
.animated {
  animation-fill-mode: both;
  animation-duration: 1.6s;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeToLeft {
  animation-name: fadeToLeft;
}

.fadeToRight {
  animation-name: fadeToRight;
}

.fadeOpacity {
  animation-name: fadeOpacity;
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes blinkingimage {
  50% {
    transform: scaleY(1);
  }
}
@keyframes blinking {
  50% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(0, 200px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeToLeft {
  0% {
    opacity: 0;
    transform: translate(100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeToRight {
  0% {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* ANIMATIONS APPEAR EFFECT */
.appear-up {
  position: relative;
  transform: translateY(200px);
  -webkit-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
  opacity: 0;
  visibility: hidden;
  transition: all 2 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 2 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 2 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 2 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 2 cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.appear-up.show {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.appear-from-left {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-200px);
  -webkit-transform: translateX(-200px);
  -moz-transform: translateX(-200px);
  -ms-transform: translateX(-200px);
  -o-transform: translateX(-200px);
  transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.appear-from-left.show {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.appear-from-right {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateX(200px);
  -webkit-transform: translateX(200px);
  -moz-transform: translateX(200px);
  -ms-transform: translateX(200px);
  -o-transform: translateX(200px);
  transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 2.4 cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.appear-from-right.show {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 1400px) {
  .marginbig {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .marginbig {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1100px) {
  p, ul li {
    font-size: 17px;
  }
  .mt-m {
    margin-top: 70px;
  }
  .mt-l {
    margin-top: 120px;
  }
  .mt-xl {
    margin-top: 160px;
  }
  .mb-m {
    margin-bottom: 70px;
  }
  .mb-l {
    margin-bottom: 120px;
  }
  .mb-xl {
    margin-bottom: 160px;
  }
  .pt-m {
    padding-top: 70px;
  }
  .pt-l {
    padding-top: 120px;
  }
  .pt-xl {
    padding-top: 160px;
  }
  .pb-m {
    padding-bottom: 70px;
  }
  .pb-l {
    padding-bottom: 120px;
  }
  .pb-xl {
    padding-bottom: 160px;
  }
  .marginbig {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 900px) {
  .mt-m {
    margin-top: 60px;
  }
  .mt-l {
    margin-top: 100px;
  }
  .mt-xl {
    margin-top: 120px;
  }
  .mb-m {
    margin-bottom: 60px;
  }
  .mb-l {
    margin-bottom: 100px;
  }
  .mb-xl {
    margin-bottom: 120px;
  }
  .pt-m {
    padding-top: 60px;
  }
  .pt-l {
    padding-top: 100px;
  }
  .pt-xl {
    padding-top: 120px;
  }
  .pb-m {
    padding-bottom: 60px;
  }
  .pb-l {
    padding-bottom: 100px;
  }
  .pb-xl {
    padding-bottom: 120px;
  }
  .marginbig {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 800px) {
  p, ul li {
    font-size: 16px;
  }
  .mt-s {
    margin-top: 30px;
  }
  .mt-m {
    margin-top: 50px;
  }
  .mt-l {
    margin-top: 80px;
  }
  .mt-xl {
    margin-top: 110px;
  }
  .mb-s {
    margin-bottom: 30px;
  }
  .mb-m {
    margin-bottom: 50px;
  }
  .mb-l {
    margin-bottom: 80px;
  }
  .mb-xl {
    margin-bottom: 110px;
  }
  .pt-s {
    padding-top: 30px;
  }
  .pt-m {
    padding-top: 50px;
  }
  .pt-l {
    padding-top: 80px;
  }
  .pt-xl {
    padding-top: 110px;
  }
  .pb-s {
    padding-bottom: 30px;
  }
  .pb-m {
    padding-bottom: 50px;
  }
  .pb-l {
    padding-bottom: 80px;
  }
  .pb-xl {
    padding-bottom: 110px;
  }
}
@media only screen and (max-width: 600px) {
  /*p, ul li { font-size: 15px;}
  .mt-m{ margin-top:40px;}
  .mt-l{ margin-top:60px;}
  .mt-xl{ margin-top:100px;}
  .mb-m{ margin-bottom:40px;}
  .mb-l{ margin-bottom:60px;}
  .mb-xl{ margin-bottom:100px;}

  .pt-m{ padding-top:40px;}
  .pt-l{ padding-top:60px;}
  .pt-xl{ padding-top:100px;}
  .pb-m{ padding-bottom:40px;}
  .pb-l{ padding-bottom:60px;}
  .pb-xl{ padding-bottom:100px;}
  .marginbig { margin-bottom:30px; }*/
}
/* ------------------------------------------------------------------------- */
/* GENEREAL STYLE - Classes used throught all the project */
/* ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat-SemiBold", sans-serif;
  color: #1C2023;
  line-height: 110%;
  margin-bottom: 30px;
  text-wrap: balance;
}

h1, .title_h1 {
  font-size: clamp(1.7rem, 1.7rem + (1vw - 0.2rem) * 3.5, 3.5rem);
}

h2, .title_h2 {
  font-size: clamp(1.6rem, 1.6rem + (1vw - 0.2rem) * 3, 3rem);
}

h3, .title_h3 {
  font-size: clamp(1.2rem, 1.2rem + (1vw - 0.2rem) * 1.9, 1.9rem);
}

h4, .title_h4 {
  font-size: clamp(1rem, 1rem + (1vw - 0.2rem) * 1.4, 1.4rem);
}

.title_center, .title-center {
  text-align: center;
}

.title_white, .title-white {
  color: #F5F4F2;
}

.uppercase {
  text-transform: uppercase;
}

@media only screen and (max-width: 800px) {
  h1, h2, h3, h4 {
    margin-bottom: 20px;
  }
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  border-radius: 5px;
  background-color: #F1EFEB;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #F1EFEB;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  background-color: #1C2023;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.bg-dark ::-webkit-scrollbar-track {
  background-color: #1C2023;
}

.bg-dark ::-webkit-scrollbar {
  background-color: #1C2023;
}

.bg-dark ::-webkit-scrollbar-thumb {
  background-color: #F5F4F2;
}

/* ------------------------------------------------------------------------- */
/* HEADER STYLES */
/* ------------------------------------------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  box-sizing: border-box;
  background-color: transparent;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  padding: 30px 0 15px;
  top: 0;
  left: 0;
}

.header .menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header.fixed {
  background-color: rgba(241, 239, 235, 0.5);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  padding: 10px 0;
}

.bg-dark .header.fixed {
  background-color: rgba(30, 30, 30, 0.5);
}

.header .header__logo {
  position: relative;
  width: 73px;
  z-index: 10001;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header .header__logo.white {
  display: none;
}

.header .header__logo.dark {
  display: block;
}

.header.header-clear .header__logo.white {
  display: block;
}

.header.header-clear .header__logo.dark {
  display: none;
}

.header.fixed .header__logo.white {
  display: none;
}

.header.fixed .header__logo.dark {
  display: block;
}

.header.menu-opened.fixed .header__logo.white {
  display: block;
}

.header.menu-opened.fixed .header__logo.dark {
  display: none;
}

.bg-dark .header.fixed .header__logo.white {
  display: block;
}

.bg-dark .header.fixed .header__logo.dark {
  display: none;
}

.header .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* MENUS */
.header__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header__nav ul li {
  padding: 0 10px;
  margin: 0 10px;
}

.header__nav ul li a {
  color: #1C2023;
  font-size: 1.125rem;
  line-height: 110%;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 3px 1px;
}

.header__nav ul li a:after {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1C2023;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  transform: translate3d(-103%, 0, 0);
  -webkit-transform: translate3d(-103%, 0, 0);
}

.header__nav ul li a:hover:after,
.header__nav ul li.current-menu-item a:after,
.header__nav ul li.selected a:after {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.header__nav ul li.destacado {
  background-color: #1C2023;
  padding: 8px 8px;
  border-radius: 100px;
  margin-top: -8px;
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header__nav ul li.destacado a {
  font-weight: normal;
  padding: 1px 15px;
  color: #F5F4F2;
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header__nav ul li.destacado a:after {
  display: none;
}

/*2n nivel*/
.header__nav ul li ul.sub-menu {
  margin-left: -15px;
  border: 0;
  position: absolute;
  width: auto;
  z-index: 3;
  background: #F5F4F2;
  padding: 15px 15px 10px;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header__nav ul li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}

.header__nav ul li ul.sub-menu li {
  padding: 0;
  margin: 0 0 5px;
  border-right: none;
}

.header__nav ul li ul.sub-menu li:last-child {
  border: none;
}

.header__nav ul li ul.sub-menu li a {
  font-size: 14px;
  color: #1C2023;
  padding: 1px 1px;
  cursor: pointer;
}

.header__nav ul li.current-menu-parent ul.sub-menu li a,
.header__nav ul li.current-menu-item ul.sub-menu li a {
  color: #1C2023;
}

.header__nav ul li.current-menu-parent ul.sub-menu li a:hover,
.header__nav ul li.current-menu-parent ul.sub-menu li.current-menu-item a {
  color: #1C2023;
}

.header__nav ul li.current-menu-parent ul.sub-menu a {
  color: #1C2023;
}

.header__nav ul li.destacado ul.sub-menu li a {
  color: #1C2023;
}

.header.header-clear .header__nav ul li a {
  color: #F5F4F2;
}

.header.header-clear .header__nav ul li a:after {
  background: #F5F4F2;
}

.header.header-clear .header__nav ul li.destacado {
  background-color: #F5F4F2;
}

.header.header-clear .header__nav ul li.destacado a {
  color: #1C2023;
}

.header.header-clear .header__nav ul li ul.sub-menu a {
  color: #1C2023;
}

.header.fixed .header__nav ul li a {
  color: #1C2023;
}

.header.fixed .header__nav ul li a:after {
  background: #1C2023;
}

.header.fixed .header__nav ul li.destacado {
  background-color: #1C2023;
}

.header.fixed .header__nav ul li.destacado a {
  color: #F5F4F2;
}

.header.fixed .header__nav ul li.destacado ul.sub-menu a {
  color: #1C2023;
}

.header.header-clear .header__nav ul li.current-menu-parent ul.sub-menu li a,
.header.header-clear .header__nav ul li.current-menu-item ul.sub-menu li a {
  color: #1C2023;
}

.header.header-clear .header__nav ul li.current-menu-parent ul.sub-menu li a:hover,
.header.header-clear .header__nav ul li.current-menu-parent ul.sub-menu li.current-menu-item a {
  color: #1C2023;
}

.header.header-clear .header__nav ul li.current-menu-parent ul.sub-menu li a {
  color: #1C2023;
}

.bg-dark .header.fixed .header__nav ul li a {
  color: #F5F4F2;
}

.bg-dark .header.fixed .header__nav ul li a:after {
  background: #F5F4F2;
}

.bg-dark .header.fixed .header__nav ul li.destacado {
  background-color: #F5F4F2;
}

.bg-dark .header.fixed .header__nav ul li.destacado a {
  color: #1C2023;
}

.bg-dark .header.fixed .header__nav ul li.destacado ul.sub-menu a {
  color: #F5F4F2;
}

/* MENU BURGER */
.header__menu-burguer {
  display: none;
  margin-left: 30px;
}

#nav-open-close {
  display: inline-block;
  position: relative;
  z-index: 10001;
  width: 30px;
  height: 20px;
  cursor: pointer;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

#nav-open-close span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  opacity: 1;
  left: 0;
  border-radius: 6px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transition: all 0.25s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.25s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.25s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.25s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.25s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

#nav-open-close span {
  background: #1C2023;
}

#nav-open-close span:nth-child(1) {
  top: 0px;
}

#nav-open-close span:nth-child(2) {
  top: 9px;
}

#nav-open-close span:nth-child(3) {
  top: 18px;
}

#nav-open-close.open span {
  background: #F5F4F2;
}

#nav-open-close.open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  width: 34px;
  left: -2px;
}

#nav-open-close.open span:nth-child(2) {
  opacity: 0;
  left: 0px;
}

#nav-open-close.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  width: 34px;
  left: -2px;
}

.header.header-clear #nav-open-close span {
  background: #F5F4F2;
}

.header.fixed #nav-open-close span {
  background: #1C2023;
}

.header.header-clear #nav-open-close.open span,
.header.fixed #nav-open-close.open span {
  background: #F5F4F2;
}

.bg-dark .header.fixed #nav-open-close span {
  background: #F5F4F2;
}

/* MENU MOBILE */
/*MENU DESPLEGABLE*/
.header__desplegable {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100vh - 0px);
  background-color: #1C2023;
  z-index: 999;
  padding: 80px 5% 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header__desplegable.appear {
  visibility: visible;
  opacity: 1;
}

.header__desplegable .web-logo-mobile {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 35px;
  text-align: center;
}

.header__desplegable .web-logo-mobile .mobile__logo {
  height: 35px;
  width: auto;
}

.header__desplegable .desplegable-container {
  overflow-y: auto;
}

.header__desplegable nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.header__desplegable nav ul li {
  margin: 0 0 10px;
  padding: 0;
}

.header__desplegable nav ul li a {
  color: #F5F4F2;
  font-size: 1.8rem;
  line-height: 110%;
  font-weight: normal;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
}

.header__desplegable nav ul li.destacado {
  margin-top: 15px;
}

.header__desplegable nav ul li.destacado a {
  padding: 5px 30px;
  border-radius: 50px;
  background-color: #F5F4F2;
  color: #1C2023;
}

.header__desplegable nav ul li.current-menu-item a {
  border-bottom: 1px solid;
}

.header__desplegable nav ul ul.sub-menu {
  height: auto;
  margin: 0 0;
}

.header__desplegable nav ul ul.sub-menu li {
  margin: 7px 0;
  padding: 0;
}

.header__desplegable nav ul ul.sub-menu li a {
  font-size: 1.8rem;
}

.header__desplegable nav ul li.menu-item-has-children > a {
  display: none;
}

.header__desplegable .header__social-buttons {
  margin: 25px 0 12px;
}

.header__desplegable .header__social-buttons ul {
  justify-content: center;
}

.header__desplegable .header__social-buttons ul li {
  margin: 0;
}

main {
  margin-top: 200px;
}

main.transparent {
  margin-top: 0px;
}

@media only screen and (max-width: 1200px) {
  .header__nav ul li a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  main {
    margin-top: 160px;
  }
  .header {
    padding: 15px 0;
  }
  .header__nav {
    display: none;
  }
  .header__menu-burguer {
    display: flex;
  }
}
/* ------------------------------------------------------------------------- */
/* HOME CSS */
/* ------------------------------------------------------------------------- */
/* SLIDER HOME */
.slider {
  position: relative;
  height: 100vh;
  background-color: #F1EFEB;
}

.slider:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
}

.slider .slider-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 30px 5% 0;
}

.slider .slider-info .slider-logo {
  margin-bottom: 30px;
  max-width: 500px;
  width: 100%;
}

.slider .slider-info .slider-title {
  color: #F5F4F2;
  text-align: center;
  max-width: 600px;
  padding: 0 20px;
}

.slider .slider-info .slider-title h1,
.slider .slider-info .slider-title h2,
.slider .slider-info .slider-title h3,
.slider .slider-info .slider-title h4,
.slider .slider-info .slider-title h5 {
  margin-bottom: 20px;
  color: #F5F4F2;
}

.slider .slider-info .slider-title p {
  margin-bottom: 10px;
  font-size: clamp(1rem, 1rem + (1vw - 0.2rem) * 1.25, 1.25rem);
}

.slider .slider-info .slider-title p a {
  color: #F5F4F2;
  font-family: "Montserrat-SemiBold", sans-serif;
}

.slider-movement {
  position: absolute;
  bottom: 7%;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.slider-movement-container {
  color: #F5F4F2;
  font-size: clamp(2rem, 2rem + (1vw - 0.2rem) * 2.75, 2.75rem);
  line-height: 100%;
  font-family: "Montserrat-SemiBold", sans-serif;
  text-wrap: nowrap;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  animation: loop 30s linear infinite;
}

.slider .slider-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider .slider-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8C8882;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.slider .slider-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  animation: growingImage 20s linear infinite;
}

.slider .slider-image .image.mobile {
  display: none;
}

.slider.interior {
  height: 80vh;
}

.slider.interior .slider-info {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 5% 70px;
  text-align: left;
}

/* CARRUSEL */
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes growingImage {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.carrusel-movement {
  display: flex;
  flex-wrap: nowrap;
  /*overflow: hidden;*/
  /*-webkit-mask-image: linear-gradient(90deg,#0000 0%,#000 20% 80%,#0000 100%);
  mask-image: linear-gradient(90deg,#0000 0%,#000 20% 80%,#0000 100%);*/
}

/*.carrusel-container { display:flex; align-items: center; justify-content: center; width:fit-content; animation-name: loop; animation-timing-function: linear; animation-duration: 80s; animation-iteration-count: infinite; }
.carrusel-container li { display: flex; flex-direction: column; justify-content: center; align-items: center; margin:0 40px; padding:0;  }
.carrusel-container li img { max-width: 400px; object-fit: cover; object-position: center; aspect-ratio: 100 / 143; }
.carrusel-container li span { display:block; width: 100%; margin-top:10px; font-size: 16px; line-height: $line-height2; text-transform: uppercase; }
*/
.margin0 {
  margin: 0;
}

.title-group { /*margin-bottom: 30px;*/ }

.title-group p {
  margin-bottom: 10px;
}

.bg-home {
  position: relative;
  overflow: hidden;
}

.bg-home img.bg-home {
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
  height: auto;
}

.home-services-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 5%;
}

.home-service-item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.home-service-item a .image {
  position: relative;
  aspect-ratio: 90/100;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.home-service-item a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.home-service-item a .title {
  margin-bottom: 1rem;
}

.home-service-item a .text {
  font-size: 1rem;
}

.home-service-item a:hover .image img {
  transform: scale(1.1);
}

.section-home-presentation {
  position: relative;
}

.section-home-presentation .presentation-bg {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section-home-presentation .presentation-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}

.section-home-presentation .content {
  position: relative;
  color: #F5F4F2;
  max-width: 40%;
}

.section-home-presentation .content .icon {
  margin-bottom: 20px;
}

.section-home-actividades {
  position: relative;
}

.section-home-actividades .actividades-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.section-home-actividades .actividades-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}

.section-home-actividades .content {
  position: relative;
  color: #F5F4F2;
  max-width: 650px;
}

.section-home-actividades .text-content h1,
.section-home-actividades .text-content h2,
.section-home-actividades .text-content h3,
.section-home-actividades .text-content h4,
.section-home-actividades .text-content h5 {
  margin-bottom: 20px;
  color: #F5F4F2;
}

.section-home-actividades .text-content p {
  margin-bottom: 10px;
  font-size: clamp(1rem, 1rem + (1vw - 0.2rem) * 1.25, 1.25rem);
}

.section-home-actividades .text-content p a {
  color: #F5F4F2;
  font-family: "Montserrat-SemiBold", sans-serif;
}

.section-separated {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20%;
}

.section__slider .slide-item .image {
  aspect-ratio: 75/100;
}

.section__slider .slide-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}

.section__slider .slide-item p {
  margin: 7px 0 0;
  font-size: 0.8rem;
}

/*  RESPONSIVE  */
@media only screen and (max-width: 1600px) {
  .bg-home img.bg-home {
    bottom: -10%;
  }
}
@media only screen and (max-width: 1400px) {
  .bg-home img.bg-home {
    bottom: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .section-separated {
    gap: 30px 10%;
  }
}
@media only screen and (max-width: 900px) {
  .home-services-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-home-presentation .content {
    max-width: unset;
  }
  .bg-home img.bg-home {
    display: none;
  }
  .section-home-presentation .presentation-bg {
    display: block;
  }
  .section-separated {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .section__slider .slider-image .image.desktop {
    display: none;
  }
  .section__slider .slider-image .image.mobile {
    display: block;
  }
  .home-services-container {
    grid-template-columns: 1fr;
  }
  .home-service-item a .calltoaction {
    width: 100%;
  }
}
/* ------------------------------------------------------------------------- */
/* POST SINGLE PAGE STYLES */
/* ------------------------------------------------------------------------- */
/* TEXT CONTENT */
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5 {
  margin-bottom: 20px;
}

.text-content .label {
  color: #1C2023;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 28px;
  line-height: 110%;
  margin-bottom: 10px;
}

.text-content .calltoaction {
  margin-top: 30px;
  margin-bottom: 30px;
  text-decoration: none;
}

.bg-gold .text-content .label,
.bg-gold .text-content span,
.bg-gold .text-content .title,
.bg-gold .text-content p {
  color: #F5F4F2;
}

.bg-gold .text-content .calltoaction {
  background: #F5F4F2;
  color: #1C2023;
}

.bg-grey {
  background-color: #CBC7C0;
}

.centered {
  text-align: center;
}

.flex-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.no-margin {
  margin-bottom: 0;
}

/* Esencia */
.bg-esencia {
  position: relative;
  overflow: hidden;
}

.bg-esencia img.bg-esencia {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.section-esencia {
  position: relative;
}

.section-esencia-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.section-esencia-item {
  max-width: 700px;
  padding: 45px 5%;
  background-color: #F1EFEB;
}

/* Tarifas */
.bg-tarifas {
  position: relative;
  overflow: hidden;
}

.bg-tarifas img.bg-tarifas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.6;
}

.section-tarifas {
  position: relative;
}

.section-tarifas-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.tarifas-item {
  padding: 30px 10%;
  background-color: #F1EFEB;
  color: #1C2023;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.tarifas-item .title {
  margin-bottom: 18px;
}

.tarifas-item p {
  margin-bottom: 12px;
}

.tarifas-item p.mini {
  font-size: 0.8rem;
}

.tarifas-item .calltoaction {
  padding: 8px 20px;
}

.desplegable-item {
  border-bottom: 1px solid #262626;
}

.desplegable-item:first-child {
  border-top: 1px solid #262626;
}

.desplegable-item .desplegable-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 20px;
  cursor: pointer;
}

.desplegable-item .desplegable-button .title {
  margin-bottom: 0;
}

.desplegable-item .desplegable-button .icon {
  position: absolute;
  left: -10px;
  display: flex;
  align-items: center;
  width: 30px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.desplegable-item .desplegable-button:hover .icon {
  opacity: 1;
  transform: translateX(0px);
}

.desplegable-item .desplegable-content {
  display: none;
  padding: 0 20px 25px;
  color: #1C2023;
}

/* Contacto */
.bg-contacto {
  position: relative;
  overflow: hidden;
}

.bg-contacto img.bg-contacto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 1;
}

.section-contacto {
  position: relative;
}

.section-contacto a {
  color: #F5F4F2;
}

.section-contacto-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px 10%;
}

.contacto-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.contacto-left p {
  margin: 0;
}

.contacto-left .contacts a {
  display: block;
  font-family: "Georgia", serif;
  color: #AD8957;
  font-size: clamp(1.6rem, 1.6rem + (1vw - 0.2rem) * 2.5, 2.5rem);
  line-height: 110%;
  margin-bottom: 10px;
}

.contacto-left .contacts a:hover {
  text-decoration: underline;
}

.contacto-left .contacts a.email-contact {
  font-size: clamp(1.2rem, 1.2rem + (1vw - 0.2rem) * 1.6, 1.6rem);
}

.contacto-left a.insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #F5F4F2;
}

/* MAP */
.section__map .map-image {
  position: relative;
  display: block;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.section__map .map-image .map-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #1C2023;
  border-radius: 100px;
}

.section__map .map-image .map-icon img {
  z-index: 1;
}

.section__map .map-image .map-icon:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: #1C2023;
  opacity: 0.2;
  transform: scale(1);
  top: -10px;
  left: -10px;
  border-radius: 100px;
  animation: blinkingmap 2s infinite;
}

@keyframes blinkingmap {
  50% {
    opacity: 0;
    transform: scale(1.3);
  }
}
/* services */
.section-service-intro {
  position: relative;
}

.section-service-intro .service-intro-content {
  max-width: 800px;
}

.section-service-intro .service-intro-content p {
  font-size: 1.4rem;
}

.section-services-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
}

.section-services-links .service-link {
  padding: 60px 10%;
  border-radius: 20px;
  background-color: #F5F4F2;
  text-align: center;
}

.section-services-links .service-link.tarifas {
  background-color: #81715A;
}

/* 404 page */
.errorpage {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.errorpage .text {
  flex-basis: 50%;
  padding-left: 5%;
  padding-right: 3%;
}

.errorpage .image {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.errorpage .image img {
  max-width: 400px;
}

/* carrusel */
.owl-theme .owl-dots {
  position: relative;
  bottom: auto;
  margin-top: 25px !important;
  text-align: left;
}

.owl-theme .owl-dots .owl-dot {
  background: none;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 4px 15px 4px 0;
  background: #1C2023;
  opacity: 0.3;
  border: none;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 40px;
  background: #1C2023;
  opacity: 1;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background: #1C2023;
  opacity: 1;
}

.owl-theme.black-dots .owl-dots .owl-dot span,
.owl-theme.black-dots .owl-dots .owl-dot.active span,
.owl-theme.black-dots .owl-dots .owl-dot:hover span {
  background: #F1EFEB;
}

/*
.owl-theme .owl-nav { 
	position:absolute;
	top:calc(50% - 25px);
	left:-60px;
	width: calc(100% + 120px); 
	display: flex; 
	justify-content: space-between; 
	margin:auto;
}
.owl-theme .owl-nav [class*=owl-] { 
	position:absolute;
	top:-25px;
	width:50px; 
	height:50px; 
	background: transparent url(../images/arrow-carousel.svg) no-repeat center !important; 
	background-size:35% !important;
	border-radius:100px; 
	border:none !important; 
}
.owl-theme .owl-nav [class*=owl-]:hover {  background: transparent url(../images/arrow-carousel.svg) no-repeat center !important; background-size:40% !important; }
.owl-theme .owl-nav button span { display: none; } 
.owl-theme .owl-nav .owl-prev { transform:rotate(180deg); } 
.owl-theme .owl-nav .owl-next { right:0; } 

.owl-theme .owl-nav .disabled { opacity: 0.3;}

.owl-carousel-postsrelated.owl-theme .owl-nav { top: 100px; }

.owl-carousel-highlights .owl-stage-outer { overflow: unset;}

.owl-theme.white-arrow .owl-nav [class*=owl-] { background: transparent url(../images/arrow-carousel-white.svg) no-repeat center !important; }
.owl-theme.white-arrow .owl-nav [class*=owl-]:hover {  background: transparent url(../images/arrow-carousel-white.svg) no-repeat center !important; }
*/
/* ----------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------- */
@media only screen and (max-width: 1100px) {
  .section-tarifas-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1000px) {
  .section-contacto-container {
    grid-template-columns: 1fr;
  }
  .errorpage .image img {
    max-width: 300px;
  }
}
@media only screen and (max-width: 900px) {
  .bg-esencia img.bg-esencia {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .section-tarifas-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .section__map .map-image {
    height: auto;
    aspect-ratio: 100/70;
  }
  .section__map .map-image .map-icon {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
  }
  .section__map .map-image .map-icon:after {
    width: 60px;
    height: 60px;
  }
  .section-services-links {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 800px) {
  .errorpage {
    flex-direction: column;
  }
  .errorpage .text {
    text-align: center;
    padding: 0 0 50px;
  }
}
@media only screen and (max-width: 600px) {
  .landing-bg {
    height: 800px;
  }
  form .column p {
    flex-direction: column;
  }
  form .column p span {
    margin-bottom: 0;
  }
  /*.section-contacto .section_left .title { font-size: 25px;}
  .section-contacto .section_left .text { font-size: 17px;}*/
  /* tarifas*/
  .section-tarifas-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tarifas-item .calltoaction {
    width: 100%;
  }
  .desplegable-item .desplegable-button {
    padding: 20px 0px;
  }
  .desplegable-item .desplegable-button .icon {
    display: none;
  }
  .desplegable-item .desplegable-content {
    padding: 0 0 25px;
  }
}
/* ------------------------------------------------------------------------- */
/* EDIBLES */
/* ------------------------------------------------------------------------- */
/* TEXT IMAGE SECTION */
.text-image-section .two-columns {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}

.text-image-section .two-columns.reverse {
  flex-direction: row-reverse;
}

.text-image-section .two-columns .two-columns_column {
  flex-basis: 50%;
}

.text-image-section .two-columns.big-info .column_info {
  flex-basis: 60%;
}

.text-image-section .two-columns.big-info .column_image {
  flex-basis: 40%;
}

.text-image-section .two-columns.big-image .column_info {
  flex-basis: 40%;
}

.text-image-section .two-columns.big-image .column_image {
  flex-basis: 60%;
}

.text-image-section .two-columns .column_image .image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.text-image-section .two-columns.reverse .column_image .image {
  justify-content: flex-start;
}

.text-image-section .two-columns .column_image .image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
}

.text-image-section.professionals-section .two-columns .two-columns_column {
  width: 50%;
  position: relative;
}

.text-image-section.professionals-section .two-columns .column_image:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 400px;
  background: #05d5ff;
  top: -100px;
  right: calc(50% - 100px);
  transform: rotate(30deg);
  border-radius: 200px;
  filter: blur(25px);
}

/* TEXT IMAGE BACKGROUND SECTION */
.text-imagebg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-imagebg .image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.text-imagebg .image-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.text-imagebg .image-background img.mobile {
  display: none;
}

.text-imagebg .color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 46, 0.7);
}

.text-imagebg .content {
  z-index: 1;
  width: 100%;
}

.text-imagebg .content .label {
  font-size: 17px;
}

.text-imagebg .content .title {
  margin: 0 auto 15px;
}

.text-imagebg .content .text {
  max-width: 1100px;
}

.text-imagebg .content .text p {
  font-size: 20px;
  margin: 0 auto 10px;
}

.text-imagebg .content .button-box {
  margin-top: 30px;
}

/* IMAGE SECTION */
.image-section img {
  border-radius: 12px;
}

.image-section img.desktop {
  width: 100%;
}

.image-section img.mobile {
  display: none;
}

/* ----------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------- */
@media only screen and (max-width: 1200px) {
  /* TEXT IMAGE SECTION */
  .text-image-section .two-columns.big-info .column_info,
  .text-image-section .two-columns.big-info .column_image,
  .text-image-section .two-columns.big-image .column_info,
  .text-image-section .two-columns.big-image .column_image {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 1000px) {
  /* TEXT IMAGE SECTION */
  .text-image-section .two-columns,
  .text-image-section .two-columns.reverse {
    flex-direction: column;
  }
  .text-image-section .two-columns.image-top-mobile,
  .text-image-section .two-columns.image-top-mobile.reverse {
    flex-direction: column-reverse;
  }
  .text-image-section .two-columns.bg-blue {
    padding: 40px 5%;
    border-radius: 30px;
  }
  .text-image-section .two-columns .column_image .image,
  .text-image-section .two-columns.reverse .column_image .image {
    justify-content: center;
  }
  .text-image-section .two-columns .column_image .image img {
    margin-top: 0 !important;
    max-width: 300px;
  }
  .text-image-section.professionals-section .two-columns .two-columns_column {
    width: 100%;
  }
  .text-image-section.professionals-section .two-columns .column_image:before {
    width: 150px;
    height: 250px;
    top: -50px;
    right: calc(50% - 75px);
  }
}
@media only screen and (max-width: 900px) {
  /* IMAGE SECTION */
  .image-section img.desktop {
    display: none;
  }
  .image-section img.mobile {
    display: inline-block;
  }
  .image-section.no-mobile img.desktop {
    display: block;
    min-width: 1200px;
  }
}
@media only screen and (max-width: 600px) {
  /* TEXT IMAGE SECTION*/
  .text-image-section .two-columns {
    gap: 30px;
  }
  .text-image-section .two-columns.bg-blue {
    padding: 30px 5%;
    border-radius: 20px;
  }
  /* TEXT IMAGE BACKGOUND */
  .text-imagebg .image-background img.desktop {
    display: none;
  }
  .text-imagebg .image-background img.mobile {
    display: inline-block;
  }
}
/* ------------------------------------------------------------------------- */
/* GENERAL FORM STYLES */
/* ------------------------------------------------------------------------- */
/*  CONTACT FORM INPUTS */
.form-field {
  margin-bottom: 20px;
}

.form-field.big-space {
  margin: 30px 0;
}

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

form .column .form-field {
  flex-basis: 49%;
}

.form-field label {
  font-family: "Montserrat-SemiBold", sans-serif;
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  line-height: 120%;
  margin-bottom: 6px;
  text-transform: uppercase;
  text-align: left;
  padding-left: 5px;
}

input[type=email],
input[type=text],
input[type=tel],
textarea {
  border: 1px solid #F5F4F2;
  padding: 12px 12px;
  border-radius: 8px;
  color: #1C2023;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 1rem;
  background: #F5F4F2;
  outline: 0;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-appearance: none;
}

textarea {
  resize: none;
  max-height: 70px;
}

select {
  border: 1px solid #F5F4F2;
  padding: 12px 40px 12px 12px;
  background: transparent url(../images/arrow.svg) calc(100% - 20px) center no-repeat;
  font-size: 14px;
  border-radius: 8px;
  width: 100%;
  color: #F5F4F2;
  font-family: "Montserrat-SemiBold", sans-serif;
  box-sizing: border-box;
  outline: 0;
  -webkit-appearance: none;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  color: #F5F4F2;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 135%;
  vertical-align: middle;
  padding-left: 30px;
  position: relative;
  text-align: left;
}

.wpcf7-acceptance .wpcf7-list-item-label:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 15px;
  border: 1px solid #F5F4F2;
  background-color: transparent;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}

.wpcf7-acceptance .wpcf7-list-item-label a {
  border-bottom: 1px solid #F5F4F2;
}

form input[type=checkbox]:checked ~ .wpcf7-list-item-label:before {
  background-color: #F5F4F2;
}

.wpcf7-acceptance label input {
  display: none;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  line-height: 100%;
  padding: 8px 0 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: transparent;
  color: #46b450;
}

input[type=submit] {
  display: inline-block;
  position: relative;
  background: transparent;
  font-size: 1.125rem;
  font-family: "Montserrat-SemiBold", sans-serif;
  cursor: pointer;
  border-radius: 100px;
  border: 3px solid #F5F4F2;
  color: #F5F4F2;
  text-transform: uppercase;
  margin: 0;
  outline: 0;
  padding: 12px 80px;
  -webkit-appearance: none;
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

form input[type=submit]:hover {
  color: #1C2023;
  background: #F5F4F2;
}

input[type=submit]:disabled {
  opacity: 0.5;
}

.submit-container {
  position: relative;
  margin-top: 30px;
}

.submit-container .wpcf7-spinner {
  position: absolute;
  right: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.7;
}

:-moz-placeholder {
  color: inherit;
  opacity: 0.7;
}

::-moz-placeholder {
  color: inherit;
  opacity: 0.7;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 0.7;
}

/* SEARCH FORM */
/*.search { 
    margin:0 auto 25px; 
    display:inline-flex;
    border-bottom:1px solid $color-txt;
    padding:0 10px 3px;
}
.search .search-image {
    margin-right:15px;
}
.search form input[type=text] {
    border:none;
    padding:0;
    margin:0;
    border-radius:0;
    color:$color-txt;
    font-family:$second;
    text-transform:uppercase;
    font-size:25px;
    line-height:110%;
    background:transparent;
    width:200px;
}
.search form input[type=submit] {
    display: none;
}*/
/* SEARCH FORM */
/*.search-header { 
    margin:0; 
    display:inline-flex;
    border-bottom:1px solid white;
    padding:0;
}
.search-header .search-image {
    margin-right:15px;
}
.search-header .search-image path { fill: white;}
.search-header form input[type=text] {
    border:none;
    padding:0;
    margin:0;
    border-radius:0;
    color:white;
    font-family:$second;
    text-transform:uppercase;
    font-size:25px;
    line-height:110%;
    background:transparent;
    width:200px;
}
.search-header form input[type=submit] {
    display: none;
}*/
/* ----------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------- */
@media only screen and (max-width: 800px) {
  form input[type=submit] {
    font-size: 18px;
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .form-field label {
    margin-bottom: 4px;
  }
  form .column {
    flex-direction: column;
  }
  .form-field {
    margin-bottom: 10px;
  }
  .newsletter-form.footer-newsletter-form .newsletter-box {
    flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 480px) {
  /*form input[type=submit] { padding:12px;}
  form input[type=email], form input[type=text], form input[type=tel], form textarea {font-size: 16px; padding: 10px 20px;}
  select { font-size: 16px; padding: 10px 50px 10px 20px;}
  .wpcf7-acceptance .wpcf7-list-item-label {font-size:14px;}*/
}
/* ------------------------------------------------------------------------- */
/* FOOTER STYLES */
/* ------------------------------------------------------------------------- */
.footer {
  position: relative;
  display: flex;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 200px 0 100px;
}

.footer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.footer .footer-container {
  text-align: center;
  color: #F5F4F2;
  z-index: 1;
}

.footer .footer-container a {
  color: #F5F4F2;
  text-decoration: none;
}

.footer .footer_logo {
  max-width: 400px;
  margin-bottom: 40px;
}

.footer .phone-contact {
  font-size: clamp(1.6rem, 1.6rem + (1vw - 0.2rem) * 2.5, 2.5rem);
  line-height: 110%;
  margin-bottom: 0px;
}

.footer .phone-contact a {
  font-family: "Georgia", serif;
  color: #AD8957;
}

.footer .phone-contact a:hover {
  text-decoration: underline;
}

.footer .email-contact {
  font-size: clamp(1.2rem, 1.2rem + (1vw - 0.2rem) * 2, 2rem);
}

.footer .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-bottom ul.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.footer .footer-bottom ul.footer-social li {
  margin: 0 10px;
}

.footer .footer-bottom .footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 25px;
}

.footer .footer-bottom .footer-links a {
  font-size: 0.9rem;
  line-height: 110%;
}

.footer .footer-bottom .footer-links a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------- */
@media only screen and (max-width: 1100px) {
  .footer {
    padding: 120px 0 80px;
  }
}
@media only screen and (max-width: 800px) {
  .footer {
    padding: 80px 0 60px;
  }
}
@media only screen and (max-width: 480px) {
  .footer .footer_logo {
    width: 220px;
    margin-bottom: 20px;
  }
  .footer {
    padding: 50px 0 30px;
  }
}

/*# sourceMappingURL=main.min.css.map*/