@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* import fonts */
@font-face {
  font-family: "vaughan-regular";
  src: url("../fonts/Vaughan-DEMO.otf") format("opentype");
}
@font-face {
  font-family: "pt-serif-regular";
  src: url("../fonts/PTSerif-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "pt-serif-bold";
  src: url("../fonts/PTSerif-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "playfair-regular";
  src: url("../fonts/PlayfairDisplay-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "playfair-bold";
  src: url("../fonts/PlayfairDisplay-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "playfair-regular-i";
  src: url("../fonts/PlayfairDisplay-MediumItalic.ttf") format("truetype");
}
@font-face {
  font-family: "playfair-bold-i";
  src: url("../fonts/PlayfairDisplay-BlackItalic.ttf") format("truetype");
}
/* Fonts */
:root {
  --default-font: "playfair-regular", sans-serif;
  --heading-font: "playfair-regular", serif;
  --nav-font: "pt-serif-regular", serif;
  --p-font: "Open-Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #020202; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #020202; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #C9B29C;
  --surface-color: #242429; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #242429; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --contrast-color-2: #FFEDA6;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #020202; /* The default color of the main navmenu links */
  --nav-hover-color: #C9B29C; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #020202; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #C9B29C; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #FFEDA6;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font) !important;
}

body.page {
  margin-bottom: 0;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "vaughan-regular";
}

h1 {
  font-size: 1.75rem;
}

h3 {
  font-family: "vaughan-regular";
}

p {
  font-family: var(--p-font) !important;
}

.top-title,
.top-title {
  text-transform: none !important;
  font-family: var(--default-font);
  padding-bottom: 10px;
  font-size: 20px;
  color: var(--accent-color);
  font-weight: 500;
}

.parallax {
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: -1;
}

.tabla-viviendas th .content-th {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.tabla-viviendas th .content-th img {
  width: 25px;
}
.tabla-viviendas th .content-th .small {
  font-size: 10px;
  display: none;
}

body.index-page .main {
  margin-top: -120px;
}

.vivdosc {
  background-color: #FCFCFC;
}

.content-line {
  height: 80px;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.content-line:after {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 2px solid var(--accent-color);
}

.texto-colorado .azul h6, .texto-colorado .azul .h6 {
  color: #21ADBC;
  text-transform: uppercase;
}
.texto-colorado .azul li {
  color: #21ADBC;
}
.texto-colorado .verde h6, .texto-colorado .verde .h6 {
  color: #146737;
  text-transform: uppercase;
}
.texto-colorado .verde li {
  color: #146737;
}
.texto-colorado .morado h6, .texto-colorado .morado .h6 {
  color: #865AA1;
  text-transform: uppercase;
}
.texto-colorado .morado li {
  color: #865AA1;
}
.texto-colorado .verde-claro h6, .texto-colorado .verde-claro .h6 {
  color: #75A23D;
  text-transform: uppercase;
}
.texto-colorado .verde-claro li {
  color: #75A23D;
}
.texto-colorado .orange h6, .texto-colorado .orange .h6 {
  color: #DE8E11;
  text-transform: uppercase;
}
.texto-colorado .orange li {
  color: #DE8E11;
}
.texto-colorado .azul-oscuro h6, .texto-colorado .azul-oscuro .h6 {
  color: #42418B;
  text-transform: uppercase;
}
.texto-colorado .azul-oscuro li {
  color: #42418B;
}
.texto-colorado .rojo h6, .texto-colorado .rojo .h6 {
  color: #E83E2E;
  text-transform: uppercase;
}
.texto-colorado .rojo li {
  color: #E83E2E;
}

img.glightbox:hover {
  cursor: pointer;
}

/**
* Maqueta SVG 
*/
#maquetasvg svg {
  height: 100%;
  margin-top: -50px;
}
#maquetasvg .maquetainfo {
  position: absolute;
  background-color: #f8f8f8;
  color: #333;
  padding: 20px;
  border: 1px solid var(--accent-color);
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
#maquetasvg .maquetainfo.show {
  display: flex;
}
#maquetasvg .maquetainfo .nombre {
  color: #000;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--accent-color);
}
#maquetasvg .maquetainfo .tipologia {
  color: #000;
  font-size: 18px;
  padding: 5px 0;
}
#maquetasvg .maquetainfo .tipologia.hide {
  display: none;
}
#maquetasvg .maquetainfo a.maqueta_link {
  color: var(--accent-color);
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#maquetasvg .maquetainfo a.maqueta_link:after {
  content: "\f285";
  font-family: "bootstrap-icons";
  padding-left: 5px;
  transition: all 0.5s ease;
}
#maquetasvg .maquetainfo a.maqueta_link:hover {
  color: #000;
}
#maquetasvg .maquetainfo a.maqueta_link:hover:after {
  padding-left: 15px;
}
#maquetasvg .maquetainfo a.maqueta_link.hide {
  display: none;
}
#maquetasvg .maquetainfo #no_disp {
  display: block;
  color: #E83E2E;
  text-transform: uppercase;
}
#maquetasvg .maquetainfo #no_disp.hide {
  display: none;
}
#maquetasvg .maquetainfo #reservada {
  display: block;
  color: #42418B;
  text-transform: uppercase;
}
#maquetasvg .maquetainfo #reservada.hide {
  display: none;
}
#maquetasvg .maquetafiltros {
  position: absolute;
  background-color: transparent;
  color: #333;
  padding: 20px;
  border: 0px solid var(--accent-color);
  text-align: left;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
}
#maquetasvg .maquetafiltros div.btn_filtro {
  padding: 10px 15px 10px 15px;
  background-color: rgba(202, 202, 202, 0.2);
  border-radius: 30px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  height: 40px;
  border: 1px solid #999;
  margin-bottom: 10px;
}
#maquetasvg .maquetafiltros div.btn_filtro.active {
  background-color: rgb(202, 202, 202);
}
#maquetasvg .maquetafiltros div.btn_filtro:hover {
  cursor: pointer;
  background-color: rgba(202, 202, 202, 0.9);
}
#maquetasvg .maquetafiltros div.btn_filtro .circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 10px;
}
#maquetasvg .maquetafiltros div.btn_filtro .txt {
  display: inline-block;
}
#maquetasvg .maquetafiltros #cat_reservadas .circle {
  background-color: #42418B;
}
#maquetasvg .maquetafiltros #cat_disponibles .circle {
  background-color: #146737;
}
#maquetasvg .maquetafiltros #cat_no_disponibles .circle {
  background-color: #E83E2E;
}
#maquetasvg .maquetafiltros #cat_all .circle {
  background-color: #111111;
}

i.bi-file-earmark-pdf {
  color: #146737;
}

i.bi-house-x,
i.bi-house-x-fill {
  color: #E83E2E;
}

.memoria-calidad {
  background-color: #fcfcfc;
}

.scroll-downs {
  position: absolute;
  right: 0;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 3%;
  z-index: 9;
  width: 27px;
  height: 45px;
  opacity: 0;
}
.scroll-downs .mousey {
  width: 0px;
  padding: 8px 13px 6px 9px;
  height: 26px;
  border: 2px solid #333;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.scroll-downs .mousey .scroller {
  width: 3px;
  height: 7px;
  border-radius: 50%;
  background-color: #333;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}
.scroll-downs.show {
  opacity: 1;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}
.accordion-button {
  font-family: var(--default-font) !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
}

.accordion-button:focus {
  box-shadow: none;
}

.brochure:hover {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.bi-envelope-x,
.bi-envelope-open {
  font-size: 10rem;
}

.bi-envelope-x {
  color: #E83E2E;
}

.bi-envelope-open {
  color: #146737;
}

.select2.select2-container {
  width: 100% !important;
}
.select2.select2-container .select2-selection--multiple {
  border-radius: 0 !important;
  min-height: 48px !important;
  padding: 10px 15px !important;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%) !important;
}
.select2.select2-container .select2-selection--multiple .select2-selection__choice__display {
  font-family: var(--default-font) !important;
}
.select2.select2-container ul.select2-selection__rendered {
  margin-left: 0 !important;
}
.select2.select2-container ul.select2-selection__rendered li.select2-selection__choice {
  margin-top: 0px !important;
  margin-bottom: 5px !important;
}

#contact a {
  color: var(--accent-color);
}

.bi.bi-send-check {
  font-size: 9rem;
  color: green;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: rgb(255, 255, 255);
  padding: 20px 0;
  transition: all 0.5s ease;
  z-index: 997;
}

body.index-page .header {
  background-color: rgba(255, 255, 255, 0.4);
}
body.index-page .header.scrolled {
  background-color: rgb(255, 255, 255);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 90px;
  margin-right: 8px;
  transition: all 0.5s ease;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header.scrolled {
  background-color: rgb(255, 255, 255);
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

.header.scrolled .logo img {
  max-height: 60px;
}

.navmenu {
  opacity: 0;
  transition: all 0.5s ease;
}
.navmenu.show {
  opacity: 1;
}
.navmenu ul li a:visited {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 16px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a:before {
    content: "";
    position: absolute;
    top: 5px;
    right: 50%;
    transform: translateX(50%);
    border-top: 3px solid #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu .current_page_item a,
  .navmenu .current_page_item a:focus {
    color: black;
  }
  .navmenu li:hover > a:before,
  .navmenu .active:before,
  .navmenu .active:focus:before,
  .navmenu .current_page_item a:before,
  .navmenu .current_page_item a:focus:before {
    content: "";
    opacity: 1;
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a,
  .navmenu .dropdown ul .current_page_item {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 38px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    top: 2px;
    right: -10px;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu .current_page_item,
  .navmenu .current_page_item:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i,
  .navmenu .current_page_item i,
  .navmenu .current_page_item:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  margin-top: -5px;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: black;
  background: var(--accent-color);
  text-decoration: none;
}

#hero h3 {
  color: var(--accent-color);
}

#contesto {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  background-color: red;
}

.header {
  padding-top: 10px;
}
.header .logo img {
  max-height: 60px;
}
.header #navmenu {
  margin-top: 0;
}

#navmenuul {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../img/fondo-menu.JPG");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}

body.mobile-nav-active #navmenuul {
  display: flex;
}

#hero {
  margin-top: 40px;
}

.hero .carousel {
  min-height: 50vh;
}

.services .content .service-item.si-1,
.services .content .service-item.si-2,
.services .content .service-item.si-3,
.services .content .service-item.si-4 {
  border: 0 !important;
}

.services .content .service-item.si-2,
.services .content .service-item.si-3,
.services .content .service-item.si-4 {
  border-left: 0px !important;
}

.texto-colorado ul li {
  font-size: 14px;
}

.quote {
  font-size: 25px;
}

#maquetainfo {
  right: 5px;
  bottom: 50px;
  min-width: 350px;
  min-height: 150px;
}

#maquetafiltros {
  left: 0;
  top: 100px;
}

.texto {
  font-size: 14px;
}

.h2, h2, h1 {
  font-size: 1.8rem;
}

.azul ul, .verde ul, .morado ul, .verde-claro ul, .orange ul, .azul-oscuro ul, .rojo ul {
  padding: 10px 0 10px 0;
  list-style: none;
}

.content_image_principal {
  height: 45vh !important;
}

.header #navmenu {
  margin-top: 0px;
}

.quote span.qt::before {
  left: -30px;
  opacity: 0.3;
}

.parallax-right {
  background-position: 90% center;
}

@media only screen and (max-width: 801px) and (orientation: landscape) {
  #contesto {
    background-color: orange;
  }
  #maquetainfo {
    min-width: 250px;
    min-height: 100px;
    right: 10px;
    bottom: 30px;
  }
  #maquetasvg .maquetafiltros div.btn_filtro .txt {
    font-size: 13px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #contesto {
    background-color: yellow;
  }
  #maquetainfo {
    right: 50px;
    bottom: 150px;
    min-width: 350px;
    min-height: 150px;
  }
  #navmenuul {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  p.texto {
    font-size: 14px !important;
  }
  p.texto.texto-big {
    font-size: 16px !important;
  }
}
@media (min-width: 768px) {
  #contesto {
    background-color: rgb(130, 130, 26);
  }
  #navmenuul {
    display: none;
    flex-direction: column;
  }
  .video iframe,
  .video video {
    transform: scale(1.42);
  }
}
@media (min-width: 992px) {
  #contesto {
    background-color: rgb(136, 136, 107);
  }
  .header {
    padding-top: 10px;
  }
  .header .logo img {
    max-height: 90px;
  }
  .header #navmenu {
    margin-top: 20px;
    opacity: 0;
  }
  .header #navmenu.show {
    opacity: 1;
  }
  .header #navmenu ul {
    opacity: 0;
  }
  .header #navmenu ul.show {
    opacity: 1;
  }
  .header #navmenuul.show {
    opacity: 1;
  }
  .header #navmenuul {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-image: none;
  }
  #hero {
    margin-top: 0px;
  }
  .hero .carousel {
    min-height: 100vh;
  }
  .about-3 {
    height: calc(100vh - 90px);
  }
  .services .content .service-item.si-1,
  .services .content .service-item.si-2,
  .services .content .service-item.si-3,
  .services .content .service-item.si-4 {
    border: 0 !important;
  }
  .services .content .service-item.si-2,
  .services .content .service-item.si-3,
  .services .content .service-item.si-4 {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%) !important;
  }
  .quote {
    font-size: 35px;
  }
  #maquetainfo {
    right: 50px;
    bottom: 50px;
    min-width: 350px;
    min-height: 150px;
  }
  #maquetafiltros {
    left: 100px;
    top: 200px;
  }
  #maquetasvg .maquetafiltros div.btn_filtro .txt {
    font-size: 16px;
  }
  .texto-colorado ul li {
    font-size: 12px;
  }
  .quote span.qt::before {
    left: -45px;
    opacity: 0.8;
  }
  .parallax-right {
    background-position: center center;
  }
  .texto {
    font-size: 14px !important;
  }
  .texto.texto-big {
    font-size: 16px !important;
  }
  .h2, h2, h1 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  #contesto {
    background-color: rgb(19, 19, 227);
  }
  #maquetainfo {
    right: 50px;
    bottom: 50px;
    min-width: 350px;
    min-height: 150px;
  }
  #maquetasvg .maquetafiltros div.btn_filtro .txt {
    font-size: 16px;
  }
  .azul ul, .verde ul, .morado ul, .verde-claro ul, .orange ul, .azul-oscuro ul, .rojo ul {
    padding: 5px 0 5px 0;
    list-style: none;
  }
  .header #navmenu {
    margin-top: 20px;
  }
  .content_image_principal {
    height: auto !important;
  }
  #navmenuul {
    display: flex !important;
  }
  .video iframe, .video video {
    bottom: 0px;
  }
  .texto {
    font-size: 14px !important;
  }
  .h2, h2, h1 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1366px) {
  #contesto {
    background-color: rgb(27, 130, 153);
  }
  #navmenuul {
    display: flex;
  }
  #maquetainfo {
    right: 50px;
    bottom: 50px;
  }
  .texto-colorado ul li {
    font-size: 13px;
  }
  .video {
    background-color: #000;
  }
  .video iframe, .video video {
    bottom: 110px;
  }
}
@media (min-width: 1440px) {
  #contesto {
    background-color: rgb(108, 70, 214);
  }
  #maquetainfo {
    right: 50px;
    bottom: 50px;
  }
  .texto-colorado ul li {
    font-size: 14px;
  }
  .azul ul, .verde ul, .morado ul, .verde-claro ul, .orange ul, .azul-oscuro ul, .rojo ul {
    padding: 10px 0 10px 0;
    list-style: none;
  }
  .video iframe,
  .video video {
    transform: scale(1.15);
  }
  .h2, h2, h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1500px) {
  #contesto {
    background-color: rgb(144, 25, 124);
  }
  .video iframe,
  .video video {
    transform: scale(1.1);
    bottom: 0;
  }
  p.texto {
    font-size: 15px !important;
  }
}
@media (min-width: 1920px) {
  #contesto {
    background-color: rgb(38, 33, 88);
  }
  .texto-colorado ul li {
    font-size: 15px;
  }
  #maquetainfo {
    right: 100px;
    bottom: 150px;
  }
  .texto {
    font-size: 16px !important;
  }
  .texto.texto-big {
    font-size: 18px !important;
  }
  .video iframe,
  .video video {
    transform: scale(1);
    bottom: 0px;
  }
}
/**
 * Parallax - Deshabilita el parallax en pantallas pequeñas 
 PROBLEMA CON SAFARI (iphone)  */
@media (max-width: 1024px) {
  .parallax {
    background-attachment: scroll; /* Deshabilita el parallax en pantallas pequeñas */
  }
}