@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmSU5vAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me5Q.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmEU9vAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmWUlvAw.ttf) format('truetype');
}
/*
font-family: 'Playfair Display', serif;
font-family: 'Roboto', sans-serif;
guía de anchos para css tipografias

UltraThin/Hairline: 100
ExtraThin: 150
Thin/Extra Light/Ultra Light: 200
ExtraLite: 250
Lite: 300
Book: 350
Text: 375
Normal/Regular: 400
Thick: 425
ExtraThick: 450
Medium: 500
ExtraDark: 550
Dark/SemiBold/DemiBold: 600
Bold: 700
ExtraBold/UltraBold: 800
Black/Heavy: 900
ExtraBlack/UltraBlack: 999
*/
@font-face {
  font-family: "Bold";
  src: url("../fonts/Compose-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Extra Bold";
  src: url("../fonts/Compose-Extra-Bold.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "Light";
  src: url("../fonts/Compose-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Medium";
  src: url("../fonts/Compose-Medium.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Regular";
  src: url("../fonts/compose-medium-n.ttf");
  font-weight: 500;
}
:root {
  font-size: 16px;
  --color-white: #fff;
  --color-primary: #000000;
  --color-secondary: #e5be20;
  --light-background: #f7f8f9;
  --secondary-hover-color: rgb(229, 190, 32, 0.75);
  --text-color: #3b4249;
  --color-gray-light: #c9d1d4;
  --color-gray-dark: #0a3444;
  --color-hightlihts: #000000;
  --color-blue: #174167;
  --color-green: #2d6b7a;
  --font-body: "Roboto", sans-serif;
  --font-title: "Playfair Display", serif;
  --standard-padding: 4em;
  --xs-size: 1.2rem;
  --xs-size-2: 1.85rem;
  --sm-size: 2.1rem;
  --sm-size-2: 2.7rem;
  --md-size: 3.125rem;
  --lg-size: 5rem;
  --xl-size: 7.5rem;
  --max-width: 1140px;
  --margin-b: 1.25rem;
}
@media (max-width: 479px) {
  :root {
    font-size: 12px;
  }
}
@media (min-width: 1440px) {
  :root {
    font-size: 0.92vw;
    --max-width: 66%;
  }
}
p,
a,
li {
  font-family: var(--font-body);
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 300;
  padding-bottom: 0;
  margin-bottom: var(--margin-b);
  line-height: 1.875rem;
}
a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  padding-bottom: auto;
  margin-bottom: auto;
}
h1,
h2,
h3,
h4,
h5,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  font-family: var(--font-title);
  color: var(--text-color);
}
h1 {
  font-size: 2.5rem;
}
h2,
.et_pb_column_1_3 h2,
.et_pb_column_1_4 h2,
.et_pb_column_1_5 h2,
.et_pb_column_1_6 h2,
.et_pb_column_2_5 h2 {
  font-size: 2.5rem;
  margin-bottom: var(--margin-b);
  padding-bottom: 0;
}
.row_title .et_pb_text_inner {
  margin: auto;
  max-width: 55.0625rem;
  padding: 0.625rem;
  padding-bottom: 0;
}
.row_title h1::before,
.row_title h2::before,
.row_title h3::before {
  content: "";
  background: var(--color-primary);
  width: 5.380625rem;
  margin: 0 auto;
  display: flex;
  direction: ltr;
  height: 0.125rem;
  margin-top: 0.9375rem;
  margin-bottom: 2.1875rem;
}
.row_title p {
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.container {
  max-width: var(--max-width);
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
  width: 100%;
}
.et_pb_section .et_pb_row {
  padding-bottom: var(--md-size) !important;
  max-width: var(--max-width);
  width: 100%;
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}
.et_pb_section .et_pb_row:last-of-type {
  padding-bottom: 0!important;
}
.et_pb_section.dl_full_width .et_pb_row {
  max-width: 100%;
  width: 100%;
  padding-left: 0!important;
  padding-right: 0!important;
}
.et_pb_section.dl_mw-80 .et_pb_row {
  max-width: 53.8125rem;
  padding-left: 3.125rem !important;
  padding-right: 3.125rem !important;
}
.et_pb_section.dl_mw-80 .et_pb_row:first-of-type {
  padding-top: 3.125rem;
}
.et_pb_section.dl_mw-80 .et_pb_row:last-of-type {
  padding-bottom: 3.125rem !important;
}
#et_search_icon:hover,
#top-menu li.current-menu-ancestor > a,
#top-menu li.current-menu-item > a,
.bottom-nav li.current-menu-item > a,
.comment-reply-link,
.entry-summary p.price ins,
.et-social-icon a:hover,
.et_password_protected_form .et_submit_button,
.footer-widget h4,
.form-submit .et_pb_button,
.mobile_menu_bar:after,
.mobile_menu_bar:before,
.nav-single a,
.posted_in a,
.woocommerce #content div.product p.price,
.woocommerce #content div.product span.price,
.woocommerce #content input.button,
.woocommerce #content input.button.alt,
.woocommerce #content input.button.alt:hover,
.woocommerce #content input.button:hover,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt,
.woocommerce #respond input#submit.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page #content div.product p.price,
.woocommerce-page #content div.product span.price,
.woocommerce-page #content input.button,
.woocommerce-page #content input.button.alt,
.woocommerce-page #content input.button.alt:hover,
.woocommerce-page #respond input#submit,
.woocommerce-page #respond input#submit.alt,
.woocommerce-page #respond input#submit.alt:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page .star-rating span:before,
.woocommerce-page a.button,
.woocommerce-page a.button.alt,
.woocommerce-page a.button.alt:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button,
.woocommerce-page button.button.alt,
.woocommerce-page button.button.alt.disabled,
.woocommerce-page button.button.alt.disabled:hover,
.woocommerce-page button.button.alt:hover,
.woocommerce-page button.button:hover,
.woocommerce-page div.product p.price,
.woocommerce-page div.product span.price,
.woocommerce-page input.button,
.woocommerce-page input.button.alt,
.woocommerce-page input.button.alt:hover,
.woocommerce-page input.button:hover,
.woocommerce .star-rating span:before,
.woocommerce a.button,
.woocommerce a.button.alt,
.woocommerce a.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:hover,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce input.button,
.woocommerce input.button.alt,
.woocommerce input.button.alt:hover,
.woocommerce input.button:hover,
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  color: var(--color-secondary);
}
.et_mobile_menu {
  border-top: 3px solid var(--color-yellow);
}
.et_pb_section .et_pb_row .et_pb_column_1_3 {
  padding: 0.9375rem;
}
@media (min-width: 981px) {
  .et_pb_section .et_pb_row .et_pb_column_1_3 {
    width: 33.333%;
    margin-right: 0;
  }
}
.et_pb_section .et_pb_row .et_pb_column_1_4 {
  padding: 0.9375rem;
}
@media (min-width: 981px) {
  .et_pb_section .et_pb_row .et_pb_column_1_4 {
    width: 25%;
    margin-right: 0;
  }
}
.et_pb_section {
  padding: var(--md-size) 0;
}
.et_pb_section .et_pb_row {
  padding: 0;
}
.dl-no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.dl-xm-padding {
  padding-top: var(--xs-size);
  padding-bottom: var(--xs-size);
}
.dl-sm-padding {
  padding-top: var(--sm-size);
  padding-bottom: var(--sm-size);
}
.dl-md-padding {
  padding-top: var(--md-size);
  padding-bottom: var(--md-size);
}
.dl-lg-padding {
  padding-top: var(--lg-size);
  padding-bottom: var(--lg-size);
}
.dl-xl-padding {
  padding-top: var(--xl-size);
  padding-bottom: var(--xl-size);
}
.dl-no-padding-top {
  padding-top: 0;
}
.dl-lg-padding-bottom {
  padding-bottom: 0;
}
.dl-sm-padding-bottom {
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1350px) {
  .et_pb_section {
    padding: var(--md-size) 0;
  }
  .dl-sm-padding-bottom {
    padding-bottom: 2rem;
  }
  body .dl-no-padding {
    padding-top: 0;
    padding-bottom: 0;
  }
  body .dl-xm-padding {
    padding-top: var(--xs-size);
    padding-bottom: var(--xs-size);
  }
  body .dl-sm-padding {
    padding-top: var(--sm-size);
    padding-bottom: var(--sm-size);
  }
  body .dl-md-padding {
    padding-top: var(--md-size);
    padding-bottom: var(--md-size);
  }
  body .dl-lg-padding {
    padding-top: var(--lg-size);
    padding-bottom: var(--lg-size);
  }
  body .dl-xl-padding {
    padding-top: var(--xl-size);
    padding-bottom: var(--xl-size);
  }
  body .dl-no-padding-top {
    padding-top: 0;
  }
  body .dl-lg-padding-bottom {
    padding-bottom: 0;
  }
  body .dl-sm-padding-bottom {
    padding-bottom: 2rem;
  }
}
.dl-bg-primary h1,
.dl-bg-secondary h1,
.dl-bg-primary h2,
.dl-bg-secondary h2,
.dl-bg-primary h3,
.dl-bg-secondary h3,
.dl-bg-primary h4,
.dl-bg-secondary h4,
.dl-bg-primary h5,
.dl-bg-secondary h5,
.dl-bg-primary h6,
.dl-bg-secondary h6 {
  color: white;
}
.dl-bg-primary div,
.dl-bg-secondary div,
.dl-bg-primary p,
.dl-bg-secondary p,
.dl-bg-primary a,
.dl-bg-secondary a,
.dl-bg-primary li,
.dl-bg-secondary li,
.dl-bg-primary span,
.dl-bg-secondary span {
  color: white;
}
.dl-bg-primary {
  background-color: var(--color-primary);
}
.dl-bg-secondary {
  background-color: var(--color-secondary);
}
.dl_bg_light_background {
  background-color: var(--light-background);
}
.dl_bg_white {
  background: #fff;
}
.dl-bg-gray {
  background-color: #80222222;
}
.dl_banner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl_banner::before {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
}
.dl_banner.lg_banner {
  height: 97vh;
}
.dl_banner.md_banner {
  min-height: 35rem;
}
.dl_banner.md_banner::before {
  background-image: linear-gradient(180deg, rgb(41 37 63 / 41%) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.dl_banner.md_banner .et_pb_text_inner {
  padding-top: 6rem;
}
.dl_banner.md_banner .et_pb_text_inner h1 {
  letter-spacing: 0.5rem;
}
@media (max-width: 980px) {
  .dl_banner.md_banner .et_pb_text_inner h1 {
    letter-spacing: 0;
  }
}
.dl_banner .et_pb_row .et_pb_column {
  margin-top: -5rem;
}
.dl_banner .et_pb_row .et_pb_column .et_pb_module {
  margin-bottom: 0!important;
}
.dl_banner .et_pb_button_module_wrapper {
  display: flex;
  justify-content: center;
}
.dl_banner h1 {
  color: #fff;
  padding-bottom: 0;
  text-align: center;
  line-height: 3.125rem;
}
.dl_banner p {
  font-size: 1.5rem;
  line-height: 3.125rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.2rem;
}
.dl_banner .btn_down {
  background: transparent;
  background-image: url(../images/btn_down.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0;
}
.et_pb_button,
.et_pb_module .et_pb_button,
.et_pb_posts a.more-link,
.frm_style_formidable-style.with_frm_style .frm_submit button,
.dl_btn {
  font-family: var(--font-body);
  background: transparent;
  font-size: 1rem;
  padding: 0.9375rem 1.875rem;
  border-radius: 0.5rem 0 0.5rem 0 !important;
  border: 0.198rem solid var(--color-primary);
  line-height: 1!important;
  color: var(--color-primary);
  text-align: center;
  font-weight: 500;
  border-radius: 0.25rem;
}
.et_pb_button:hover,
.et_pb_module .et_pb_button:hover,
.et_pb_posts a.more-link:hover,
.frm_style_formidable-style.with_frm_style .frm_submit button:hover,
.dl_btn:hover {
  background: var(--color-primary);
  padding: 0.9375rem 1.875rem;
  color: #ffffff;
}
.et_pb_button:hover::after,
.et_pb_module .et_pb_button:hover::after,
.et_pb_posts a.more-link:hover::after,
.frm_style_formidable-style.with_frm_style .frm_submit button:hover::after,
.dl_btn:hover::after {
  display: none;
}
.btn_yellow .et_pb_button,
.btn_yellow .et_pb_module .et_pb_button,
.btn_yellow .et_pb_posts a.more-link,
.btn_yellow .frm_style_formidable-style.with_frm_style .frm_submit button,
.btn_yellow .dl_btn {
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn_yellow .et_pb_button:hover,
.btn_yellow .et_pb_module .et_pb_button:hover,
.btn_yellow .et_pb_posts a.more-link:hover,
.btn_yellow .frm_style_formidable-style.with_frm_style .frm_submit button:hover,
.btn_yellow .dl_btn:hover {
  color: var(--color-primary);
}
.btn_yellow .et_pb_button:hover::after,
.btn_yellow .et_pb_module .et_pb_button:hover::after,
.btn_yellow .et_pb_posts a.more-link:hover::after,
.btn_yellow .frm_style_formidable-style.with_frm_style .frm_submit button:hover::after,
.btn_yellow .dl_btn:hover::after {
  display: none;
}
.btn_yellow .et_pb_button.btn_down,
.btn_yellow .et_pb_module .et_pb_button.btn_down,
.btn_yellow .et_pb_posts a.more-link.btn_down,
.btn_yellow .frm_style_formidable-style.with_frm_style .frm_submit button.btn_down,
.btn_yellow .dl_btn.btn_down {
  background: transparent;
  background-image: url(../images/btn_down.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0;
  padding: 0;
  width: 2.5625rem;
  height: 2.5625rem;
  position: absolute;
  bottom: -32vh;
  border: 0;
}
/* Footewr Styling */
#main-footer {
  background-color: #fff;
  padding: 0;
}
#main-footer .container {
  max-width: 60.5625rem;
}
#main-footer #footer-widgets {
  padding-top: var(--lg-size);
  padding-bottom: var(--lg-size);
  display: flex;
  flex-wrap: wrap;
}
#main-footer #footer-widgets p,
#main-footer #footer-widgets div,
#main-footer #footer-widgets span,
#main-footer #footer-widgets h1,
#main-footer #footer-widgets h2,
#main-footer #footer-widgets h3,
#main-footer #footer-widgets h4,
#main-footer #footer-widgets h5,
#main-footer #footer-widgets h6,
#main-footer #footer-widgets li {
  color: var(--text-color);
}
#main-footer #footer-widgets .footer-widget {
  margin-bottom: 0;
  width: 50%;
  margin-right: 0;
}
#main-footer #footer-widgets .footer-widget #text-3 {
  padding-top: 0;
}
#main-footer #footer-widgets .footer-widget:first-of-type {
  width: 100%;
}
#main-footer #footer-widgets .footer-widget:first-of-type h4 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 0;
  text-align: center;
}
#main-footer #footer-widgets .footer-widget:first-of-type h4::after {
  content: "";
  background: var(--color-primary);
  width: 5.380625rem;
  margin: 0 auto;
  display: flex;
  direction: ltr;
  height: 0.125rem;
  margin-top: 1.95rem;
  margin-bottom: 2.1875rem;
}
#main-footer #footer-widgets .footer-widget .et_pb_widget {
  width: 100%;
  padding: 1.25rem;
  padding-bottom: 0;
}
#main-footer #footer-widgets .footer-widget .et_pb_widget a {
  color: var(--color-primary);
}
#main-footer #footer-widgets .footer-widget .frm_forms .frm_html_container {
  margin-bottom: 0;
}
#main-footer #footer-widgets .footer-widget .frm_forms .frm_html_container p {
  margin-bottom: 0;
}
#main-footer #footer-widgets .footer-widget .dl_rrs_icons {
  display: flex;
  gap: 0.5rem;
}
#main-footer #footer-widgets .footer-widget .dl_rrs_icons a {
  width: 3.125rem;
  height: 3.125rem;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.3rem;
}
#main-footer #footer-widgets .footer-widget .dl_rrs_icons a i {
  padding: 0.9375rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
#main-footer #footer-widgets .footer-widget .dl_rrs_icons .icon_facebook {
  background: #3b5998;
}
#main-footer #footer-widgets .footer-widget .dl_rrs_icons .icon_facebook i {
  background-image: url(../images/facebook-f.svg);
}
#main-footer #footer-widgets .footer-widget .dl_rrs_icons .icon_twitter {
  background: #38a1f2;
}
#main-footer #footer-widgets .footer-widget .dl_rrs_icons .icon_twitter i {
  background-image: url(../images/x-twitter.svg);
}
#main-footer #footer-widgets .footer-widget .dl_rrs_icons .icon_youtube {
  background: #cd201e;
}
#main-footer #footer-widgets .footer-widget .dl_rrs_icons .icon_youtube i {
  background-image: url(../images/youtube.svg);
}
#main-footer #footer-widgets .footer-widget .fwidget {
  margin-bottom: 0;
}
#main-footer #footer-bottom {
  padding: 0.625rem 0;
  background-color: var(--text-color);
}
#main-footer #footer-bottom .container .et-social-icons {
  padding: 0.75rem 0;
  padding-bottom: 0;
}
#main-footer #footer-bottom .container .et-social-icons li {
  margin-bottom: 0;
}
#main-footer #footer-bottom .container p,
#main-footer #footer-bottom .container div,
#main-footer #footer-bottom .container span,
#main-footer #footer-bottom .container h1,
#main-footer #footer-bottom .container h2,
#main-footer #footer-bottom .container h3,
#main-footer #footer-bottom .container h4,
#main-footer #footer-bottom .container h5,
#main-footer #footer-bottom .container h6,
#main-footer #footer-bottom .container li,
#main-footer #footer-bottom .container a {
  color: #fff;
}
#main-footer #footer-bottom #footer-info {
  padding: 0.75rem 0;
}
.frm_style_formidable-style.with_frm_style input[type="text"],
.frm_style_formidable-style.with_frm_style input[type="password"],
.frm_style_formidable-style.with_frm_style input[type="email"],
.frm_style_formidable-style.with_frm_style input[type="number"],
.frm_style_formidable-style.with_frm_style input[type="url"],
.frm_style_formidable-style.with_frm_style input[type="tel"],
.frm_style_formidable-style.with_frm_style input[type="phone"],
.frm_style_formidable-style.with_frm_style input[type="search"],
.frm_style_formidable-style.with_frm_style select,
.frm_style_formidable-style.with_frm_style textarea,
.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement,
.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,
.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single {
  font-size: 0.875rem;
  border-radius: 0;
  box-shadow: unset;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-color);
  padding: 0 0.75rem;
  line-height: 1.42857143;
  border: 0.0625rem solid #ccc;
  border-color: #d8dce1;
  border-radius: 0.25rem;
}
.frm_style_formidable-style.with_frm_style input[type="text"]::-moz-placeholder, .frm_style_formidable-style.with_frm_style input[type="password"]::-moz-placeholder, .frm_style_formidable-style.with_frm_style input[type="email"]::-moz-placeholder, .frm_style_formidable-style.with_frm_style input[type="number"]::-moz-placeholder, .frm_style_formidable-style.with_frm_style input[type="url"]::-moz-placeholder, .frm_style_formidable-style.with_frm_style input[type="tel"]::-moz-placeholder, .frm_style_formidable-style.with_frm_style input[type="phone"]::-moz-placeholder, .frm_style_formidable-style.with_frm_style input[type="search"]::-moz-placeholder, .frm_style_formidable-style.with_frm_style select::-moz-placeholder, .frm_style_formidable-style.with_frm_style textarea::-moz-placeholder, .frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement::-moz-placeholder, .frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices::-moz-placeholder, .frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single::-moz-placeholder {
  font-size: 0.875rem;
  border-radius: 0;
  box-shadow: unset;
  font-weight: 500;
  color: var(--text-color);
}
.frm_style_formidable-style.with_frm_style input[type="text"]::placeholder,
.frm_style_formidable-style.with_frm_style input[type="password"]::placeholder,
.frm_style_formidable-style.with_frm_style input[type="email"]::placeholder,
.frm_style_formidable-style.with_frm_style input[type="number"]::placeholder,
.frm_style_formidable-style.with_frm_style input[type="url"]::placeholder,
.frm_style_formidable-style.with_frm_style input[type="tel"]::placeholder,
.frm_style_formidable-style.with_frm_style input[type="phone"]::placeholder,
.frm_style_formidable-style.with_frm_style input[type="search"]::placeholder,
.frm_style_formidable-style.with_frm_style select::placeholder,
.frm_style_formidable-style.with_frm_style textarea::placeholder,
.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement::placeholder,
.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices::placeholder,
.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single::placeholder {
  font-size: 0.875rem;
  border-radius: 0;
  box-shadow: unset;
  font-weight: 500;
  color: var(--text-color);
}
.frm_style_formidable-style.with_frm_style input[type="text"]:focus,
.frm_style_formidable-style.with_frm_style input[type="password"]:focus,
.frm_style_formidable-style.with_frm_style input[type="email"]:focus,
.frm_style_formidable-style.with_frm_style input[type="number"]:focus,
.frm_style_formidable-style.with_frm_style input[type="url"]:focus,
.frm_style_formidable-style.with_frm_style input[type="tel"]:focus,
.frm_style_formidable-style.with_frm_style input[type="phone"]:focus,
.frm_style_formidable-style.with_frm_style input[type="search"]:focus,
.frm_style_formidable-style.with_frm_style select:focus,
.frm_style_formidable-style.with_frm_style textarea:focus,
.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement:focus,
.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices:focus,
.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single:focus {
  box-shadow: unset !important;
}
.frm_style_formidable-style.with_frm_style input[type="text"],
.frm_style_formidable-style.with_frm_style input[type="password"],
.frm_style_formidable-style.with_frm_style input[type="email"],
.frm_style_formidable-style.with_frm_style input[type="number"],
.frm_style_formidable-style.with_frm_style input[type="url"],
.frm_style_formidable-style.with_frm_style input[type="tel"],
.frm_style_formidable-style.with_frm_style input[type="phone"],
.frm_style_formidable-style.with_frm_style input[type="search"],
.frm_style_formidable-style.with_frm_style select {
  height: 2.625rem;
}
.frm_style_formidable-style.with_frm_style textarea {
  padding: 0.9rem 0.75rem;
}
.frm_style_formidable-style.with_frm_style .frm_form_field {
  margin-bottom: 1.125rem;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_primary_label {
  padding: 0;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_primary_label .frm_required {
  display: none;
}
.frm_style_formidable-style.with_frm_style .frm_submit button {
  width: 100%;
  margin: 0;
}
.frm_style_formidable-style.with_frm_style .frm_message {
  background-color: var(--color-primary);
}
#main-header {
  background-color: #fff;
  box-shadow: none;
}
#main-header .et_menu_container {
  max-width: 100%;
  width: 100%;
  padding: 1.25rem 1.875rem;
  display: flex;
  justify-content: end;
}
@media (max-width: 980px) {
  #main-header .et_menu_container {
    justify-content: end;
    height: 8rem;
  }
}
#main-header .et_menu_container .logo_container {
  top: 0;
  padding-left: 1.875rem;
}
#main-header .et_menu_container #et-top-navigation {
  padding-left: 0px!important;
  padding-top: 0rem;
}
#main-header .et_menu_container #et-top-navigation #top-menu li {
  margin-left: 0.3125rem;
  margin-bottom: 0;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
#main-header .et_menu_container #et-top-navigation #top-menu li.btn_yellow {
  padding-left: 0;
  padding-right: 0;
}
#main-header .et_menu_container #et-top-navigation #top-menu li.btn_yellow a {
  font-family: var(--font-body);
  background: var(--color-secondary);
  font-size: 0.875rem;
  padding: 0 0.9375rem;
  border-radius: 0.25rem;
  border: 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 2.5rem;
}
#main-header .et_menu_container #et-top-navigation #top-menu li.btn_yellow a::before {
  display: none;
}
#main-header .et_menu_container #et-top-navigation #top-menu li.current-menu-item {
  color: var(--color-green);
}
#main-header .et_menu_container #et-top-navigation #top-menu li.menu-item-has-children a:first-child:after {
  top: -0.06rem;
  right: -0.3rem;
  font-size: 1.15rem;
}
#main-header .et_menu_container #et-top-navigation #top-menu li.menu-item-has-children .sub-menu {
  border-top: 0;
  box-shadow: var(--box-shadow);
  padding: 0.625rem;
  min-width: 8.125rem;
  transition: 0.3s ease-in-out;
  width: auto;
}
#main-header .et_menu_container #et-top-navigation #top-menu li.menu-item-has-children .sub-menu li {
  padding: 0.4rem 1.25rem;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
}
#main-header .et_menu_container #et-top-navigation #top-menu li.menu-item-has-children .sub-menu li a {
  color: var(--color-black);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0px;
  font-size: 0.9375rem;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5rem;
}
#main-header .et_menu_container #et-top-navigation #top-menu li.menu-item-has-children .sub-menu li.current-menu-item {
  color: var(--color-primary);
}
#main-header .et_menu_container #et-top-navigation #top-menu li:hover a {
  opacity: 1;
}
#main-header .et_menu_container #et-top-navigation #top-menu li:hover a::before {
  width: 100%;
}
#main-header .et_menu_container #et-top-navigation #top-menu li a {
  color: var(--color-black);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0px;
  font-size: 0.9375rem;
  padding-bottom: 0;
}
#main-header .et_menu_container #et-top-navigation #top-menu li a::before {
  height: 0.1875rem;
  width: 100%;
  background: #fff;
  content: '';
  position: absolute;
  top: -1.25rem;
  left: 0;
  right: 0;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
  margin: 0 auto;
  width: 0;
}
#main-header .et_menu_container #et-top-navigation #et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar:before {
  content: "\4d";
}
/* Transparent Header template */
.page-template-page-template-transparent-header.et_fixed_nav.et_show_nav #page-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.page-template-page-template-transparent-header.et_fixed_nav.et_show_nav #page-container .et_pb_section_0:not(.et_pb_fullwidth_section) {
  padding-top: 7.3rem !important;
}
.page-template-page-template-transparent-header #main-header:not(.et-fixed-header) {
  background-color: transparent;
}
.page-template-page-template-transparent-header #main-header:not(.et-fixed-header):after {
  border-bottom: 0.2rem solid white;
}
.page-template-page-template-transparent-header #main-header:not(.et-fixed-header) .et_menu_container #et-top-navigation #top-menu li a {
  color: white;
}
#mobile_menu {
  display: block !important;
  min-height: 100vh;
  top: 0;
  border-top: none;
  padding-top: 80px;
  z-index: 9998;
}
.mobile_nav.closed #mobile_menu {
  transform: rotateY(90deg);
  -webkit-transform: rotateY(90deg);
  transform-origin: right;
  -webkit-transform-origin: right;
  background: #fff;
  transition: 0.8s ease-in-out !important;
}
.mobile_nav.opened {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mobile_nav.opened .mobile_menu_bar {
  position: absolute;
  top: 3em;
  right: 2em;
}
.mobile_nav.opened #mobile_menu {
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform-origin: right;
  -webkit-transform-origin: right;
  transition: 0.8s ease-in-out;
}
@media (max-width: 980px) {
  .et_header_style_split .mobile_menu_bar,
  .et_header_style_left .mobile_menu_bar {
    z-index: 9999;
  }
  #main-header .container.clearfix.et_menu_container {
    width: 100%;
  }
  .logo_container {
    padding-left: 30px;
  }
  #et-top-navigation {
    padding-right: 30px;
  }
}
@media (min-width: 341px) {
  #mobile_menu {
    width: 340px;
    margin-left: calc(100% - 340px);
  }
}
@media (max-width: 340px) {
  #mobile_menu {
    width: 100%;
    margin-left: 0;
  }
}
.dl_fixed_footer_buttons_container {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.dl_fixed_footer_buttons_container .dl_mensaje {
  position: relative;
  transition: 300ms ease-out;
}
.dl_fixed_footer_buttons_container .dl_mensaje .mensaje_container {
  transform: translate(-1.5rem, -1rem);
  background-color: white;
  box-shadow: 1px 1px 5px 0px #9a9a9a7a;
  color: var(--color-primary);
  font-size: 0.6rem;
  font-weight: var(--font-black);
  padding: 0;
  transition: 600ms cubic-bezier(0.94, -0.01, 0.6, 1.39);
}
.dl_fixed_footer_buttons_container .dl_mensaje .mensaje_container.hidde {
  transform: translate(20rem, -1rem);
}
.dl_fixed_footer_buttons_container .dl_mensaje .mensaje_container p {
  margin-bottom: 0;
}
.dl_fixed_footer_buttons_container .dl_mensaje .mensaje_container .btn_close {
  position: absolute;
  width: 0;
  height: 0;
  cursor: pointer;
}
.dl_fixed_footer_buttons_container .dl_mensaje .mensaje_container .btn_close::after {
  content: "";
  display: block;
  position: relative;
  opacity: 1;
  animation-duration: 6s;
  background-image: url(../images/btn_close.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 1.469655rem;
  height: 1.469655rem;
  border-radius: 110px;
  background-size: 81%;
  transform: translate(-0.6rem, -0.6rem);
  background-color: #fff;
}
.dl_fixed_footer_buttons_container .dl_mensaje .mensaje_container .mensaje {
  padding: 1em;
  display: block;
  width: 100%;
}
.dl_fixed_footer_buttons_container .dl_fixed_button_container {
  position: relative;
  height: 4em;
}
.dl_fixed_footer_buttons_container .dl_fixed_button_container .dl_button_desc {
  position: absolute;
  left: -4em;
  background-color: white;
  box-shadow: 1px 1px 5px 0px #9a9a9a7a;
  color: var(--color-primary);
  font-size: 0.6rem;
  font-weight: var(--font-black);
  padding: 0 0.25em;
  border-radius: 0.3em;
  top: -0.3em;
}
.dl_fixed_footer_buttons_container .dl_fixed_button_container .dl_button_img_container {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.dl_fixed_footer_buttons_container .dl_fixed_button_container .dl_button_img_container a.dl_button_url {
  padding: 0.5em;
  display: block;
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  line-height: 1;
  color: white;
  margin: 0;
}
.dl_fixed_footer_buttons_container .dl_fixed_button_container .dl_button_img_container a.dl_button_url .dl_button_icon {
  width: 2.85842414rem;
  height: 2.87054138rem;
}
.dl_fixed_footer_buttons_container .dl_fixed_button_container .dl_button_img_container a.dl_button_url .dl_button_icon svg {
  width: 100%;
  height: 100%;
}
.dl-icon {
  width: 1.18377586rem;
  height: 1.18377586rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.dl-icon.dl-icon-cart {
  background-image: url('../images/icon-cart.svg');
}
.dl-icon.dl-icon-user {
  background-image: url('../images/icon-user.svg');
}
.dl-icon.dl-icon-search {
  background-image: url('../images/icon-search.svg');
}
.dl-icon.dl-icon-close {
  background-image: url('../images/icon-close.png');
}
.dl_slick_slider_container .slick-arrow {
  position: absolute;
  top: calc(50% - (3.04rem / 2));
  height: 3.04rem;
  width: 1.95125rem;
  background-image: url("../images/slider-arrow.svg");
  background-size: contain;
  border: unset;
  overflow: hidden;
  background-color: transparent;
  color: transparent;
  cursor: pointer;
}
.dl_slick_slider_container .slick-arrow.slick-prev {
  left: calc(0rem - 1.875rem - 1.95125rem);
  transform: rotate(180deg);
}
.dl_slick_slider_container .slick-arrow.slick-next {
  right: calc(0rem - 1.875rem - 1.95125rem);
}
.dl_slick_slider_container .slick-dots {
  text-align: center;
  line-height: 1;
  margin-top: 3.4375rem;
  position: absolute;
  width: 100%;
}
.dl_slick_slider_container .slick-dots > li {
  display: inline-block;
}
.dl_slick_slider_container .slick-dots > li button {
  background: transparent;
  border-radius: 100rem;
  border: 0.0625rem solid #707070;
  width: 1.5625rem;
  height: 1.5625rem;
  color: transparent;
  margin: 0 0.5625rem;
}
.dl_slick_slider_container .slick-dots > li.slick-active button {
  background: var(--color-primary);
  border-color: var(--color-secondary);
}
.dl_slick_slider_container .slick-track {
  display: flex;
}
.dl_slick_slider_container .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .dl_slick_slider_container .slick-dots {
    margin-top: 2rem;
  }
}
.et_pb_blurb {
  margin-bottom: var(--margin-b) !important;
}
.et_pb_blurb .et_pb_blurb_content .et_pb_main_blurb_image {
  margin-bottom: var(--margin-b);
}
.et_pb_blurb .et_pb_blurb_content .et_pb_blurb_container h4 {
  text-align: center!important;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--margin-b);
  padding-bottom: 0;
  font-weight: 600;
}
.et_pb_blurb .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description {
  margin-bottom: var(--margin-b);
}
.et_pb_blurb .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description p {
  text-align: center;
}
.section_galery .et_pb_row {
  padding-bottom: 0!important;
  display: flex;
  flex-wrap: wrap;
}
.section_galery .et_pb_row .et_pb_column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  order: 1;
}
@media (max-width: 980px) {
  .section_galery .et_pb_row .et_pb_column {
    margin-bottom: 30px;
  }
  .section_galery .et_pb_row .et_pb_column.movil-left {
    order: 0;
  }
}
@media (min-width: 981px) {
  .section_galery .et_pb_row .et_pb_column {
    width: 50%;
    margin-right: 0;
  }
}
.section_galery .et_pb_row .et_pb_column .et_pb_text,
.section_galery .et_pb_row .et_pb_column .et_pb_button_module_wrapper {
  padding: 0 3.125rem 0 3.125rem;
}
.section_galery .et_pb_row .et_pb_column .et_pb_text {
  margin-bottom: 1rem;
}
.single-rooms #main-content {
  background-color: var(--light-background);
}
.single-rooms #main-content #left-area {
  background-color: var(--color-white);
  padding-right: 0rem;
  width: 66%;
}
.single-rooms .container::before {
  display: none;
}
.single-rooms .slider_single_product {
  height: 31.25rem;
  width: 100%;
}
.single-rooms .slider_single_product img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-rooms .et_post_meta_wrapper {
  padding: 2.5rem;
}
.single-rooms .et_post_meta_wrapper .gps img {
  width: 1rem;
  height: 1rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-rooms .et_post_meta_wrapper .ubicacion {
  font-size: 1rem;
}
.single-rooms .et_post_meta_wrapper .entry-title {
  font-size: 1.75rem;
  font-weight: 400;
}
.single-rooms .et_post_meta_wrapper .post-meta {
  display: none;
}
.single-rooms .et_post_meta_wrapper #comment {
  background-color: var(--color-white);
  border: 0.111rem solid var(--color-gray-light);
  font-size: 1rem;
  color: var(--text-color);
}
.single-rooms .et_post_meta_wrapper #comment::-moz-placeholder {
  font-size: 1rem;
  color: var(--text-color);
}
.single-rooms .et_post_meta_wrapper #comment::placeholder {
  font-size: 1rem;
  color: var(--text-color);
}
.single-rooms .entry-content h2 {
  font-size: 1.25rem;
}
.single-rooms .entry-content,
.single-rooms .details {
  padding: 0rem 2.5rem 2.5rem 2.5rem !important;
}
.single-rooms .info-precio {
  width: 32%;
  float: right;
  position: sticky;
  top: 0;
}
.single-rooms .precios {
  background-color: var(--color-white);
}
.single-rooms .precios .precio {
  padding: 1.25rem 1.875rem;
  font-size: 1.75rem;
  background-color: var(--color-hightlihts);
  color: var(--color-white);
}
.single-rooms .precios .button {
  padding: 2rem;
}
.single-rooms .precios .button button {
  border-radius: 0.2225rem;
  padding: 0rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  line-height: 2.5rem;
  border: none;
  width: 100%;
}
.single-rooms .precios .bar {
  background-color: var(--color-gray-light);
  height: 1px;
  width: 100%;
}
.single-rooms .precios .btn-contact {
  padding: 2rem;
}
.single-rooms .precios .btn-contact button {
  border-radius: 0.2225rem;
  padding: 0rem 2rem;
  background-color: var(--color-white);
  color: var(--color-gray-light);
  font-weight: 700;
  line-height: 2.5rem;
  border: 0.1rem solid var(--color-gray-light);
  width: 100%;
}
.single-rooms .redes-sociales {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0rem;
}
.single-rooms .redes-sociales a {
  padding: 1rem;
  height: 1rem;
}
.single-rooms .redes-sociales a img {
  width: 1.2rem;
  height: 1.2rem;
}
.single-rooms .characteristics {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  border-bottom: 0.111rem solid var(--color-gray-light);
  border-top: 0.111rem solid var(--color-gray-light);
}
.single-rooms .characteristics .information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.875rem 1.25rem;
  border-right: 0.111rem solid var(--color-gray-light);
}
.single-rooms .characteristics .information:last-of-type {
  border-right: 0rem;
}
.single-rooms .characteristics .information img {
  width: 2rem;
}
.single-rooms .characteristics .information span {
  font-size: 0.875rem;
}
.single-rooms .details {
  display: flex;
}
.single-rooms .details .details-info {
  display: flex;
  justify-content: space-between;
  width: 66.6%;
}
.single-rooms .details h2 {
  font-size: 1rem;
  width: 30.3%;
}
.single-rooms .details div ul {
  list-style: none !important;
}
.single-rooms .details img {
  width: 1rem;
}
.single-rooms .lg-outer .lg-prev {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../images/left-arrow-White.png');
  height: 2rem;
  width: 2rem;
}
.single-rooms .lg-outer .lg-prev::after {
  display: none;
}
.single-rooms .lg-outer .lg-next {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../images/right-arrow-White.png');
  height: 2rem;
  width: 2rem;
}
.single-rooms .lg-outer .lg-next::before {
  display: none;
}
.single-rooms #customize-thumbnails-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.1111rem;
}
.single-rooms #customize-thumbnails-gallery a {
  height: 11rem;
}
.single-rooms #customize-thumbnails-gallery a img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.single-rooms #commentform .et_pb_button {
  color: var(--color-white);
}
.single-rooms #commentform .et_pb_button:hover {
  padding: 0.9375rem 1.875rem;
  color: var(--color-hightlihts);
}
@media (max-width: 980px) {
  .single-rooms .galery .images {
    grid-template-columns: repeat(3, 1fr);
  }
  .single-rooms .details {
    flex-direction: column;
  }
  .single-rooms .info-precio {
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    float: none;
  }
  .single-rooms .redes-sociales {
    background-color: var(--color-white);
  }
  .single-rooms h2 {
    font-size: 1rem;
    width: 100% !important;
  }
  .single-rooms .details-info {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .single-rooms .galery .images {
    grid-template-columns: repeat(2, 1fr);
  }
  .single-rooms .details-info {
    flex-direction: column;
  }
  .single-rooms div ul {
    padding: 0rem !important;
  }
}
