/*-----------------------------------------------------------------
Estilos generales - Normalize
-----------------------------------------------------------------*/
:root {
  --brand: #cc001f;
  --brand-negative: #ff2e51;
  --brand-rgb: 204, 0, 31;
  --text1: #201718;
  --text2: #524a4b;
  --text3: #cc001f;
  --text1-negative: #ebe0e1;
  --text-negative-constant: #ebe0e1;
  --surface0: #ffffff;
  --surface1: #f8f0f1;
  --surface2: #e5ddde;
  --surface3: #d8d0d1;
  --surface4: #ccc4c5;
  --surface-negative: #21191a;
  --surface-edge: #f8f0f1;/* borde */
}
[data-theme='dark'] {
  --brand: #ff2e51;
  --brand-negative: #cc001f;
  --brand-rgb: 255, 46, 81;
  --text1: #ebe0e1;
  --text2: #c0b8b9;
  --text3: #ff2e51;
  --text1-negative: #201718;
  --text-negative-constant: #ebe0e1;
  --surface0: #2d2526;
  --surface1: #21191a;
  --surface2: #2d2526;
  --surface3: #393132;
  --surface4: #453d3e;
  --surface-negative: #f8f0f1;
  --surface-edge: #393132;/* borde */
}
::selection {
  background: var(--brand);
  color: var(--text-negative-constant);
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
a {
  background-color: transparent;
  color: var(--text2);
  transition-duration: .25s;
}
a:hover {
  color: var(--brand);
  text-decoration: none;
}
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
button,
input { /* 1 */
  overflow: visible;
}
button,
select { /* 1 */
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: var(--text1);
  font-family: "K2D", "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-family: "Alifira", "Balgon Serif", "Yeseva One", serif;
  font-weight: normal;
}
p {
  margin: 15px 0px;
}
dfn, cite, em, i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark, ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  background-color: #f8f0f1;
  background-color: var(--surface1);
  /* background-image: url(img/background/2.svg);
  background-repeat: no-repeat;
  background-position: right top; */
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul, ol {
  margin: 0 0 1.5em 0;
  color: var(--text2);
  padding-inline-start: 20px;
}
ul {
  list-style: circle;
}
ul li {
  padding: 0 0 5px 0;
}
ul li a {
  color: var(--text2);
  transition-duration: .25s;
}
ul li a:hover {
  color: var(--brand);
  text-decoration: none;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  max-width: 100%;
}
figure {
  margin: 1em 0;
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
select {
  border: 1px solid #ccc;
}
textarea {
  width: 100%;
}
/*-----------------------------------------------------------------
Menu de la isquierda
-----------------------------------------------------------------*/
.nav-left {
  z-index: 600;
  width: 6%;
  height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 3%;
  padding-bottom: 3%;
  display: flex;
  position: fixed;
  top: 0;
}
.nav-left .title-page {
  position: absolute;
  top: 5%;
  left: 100%;
  width: 0px;
  height: 0px;
  overflow: hidden;
  background-color: var(--surface2);
  padding: 0;
  border-radius: 20px;
}
.nav-left .title-page h2 {
  color: var(--text1);
  margin: 0 0 10px 0;
}
.nav-left .title-page p {
  color: var(--text2);
  margin: 0;
}
.nav-left .nav-left-logo a svg {
  width: 70%;
  height: auto;
  display: block;
  margin: auto;
  fill: var(--brand);
}
.nav-left .nav-left-menu {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-left .nav-left-menu .nav-left-menu-element {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-left .nav-left-menu.secondary-pages .nav-left-menu-element {
  height: 90px;
}
.nav-left .nav-left-menu .nav-left-menu-element .nav-left-element-link {
  color: var(--text1);
  text-align: center;
  text-transform: uppercase;
  font-family: "K2D", "Roboto", sans-serif;
  font-size: 1.0rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 2px;
  display: block;
  transform: rotate(-90deg);
  line-height: 40px;
  position: relative;
  transition-duration: .25s;
}
.nav-left .nav-left-menu .nav-left-menu-element .nav-left-element-link::after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand);
  -webkit-transform: translate(-50%, 300%);
  transform: translate(-50%, 300%);
  transition-duration: .25s;
  opacity: 0;
}
.nav-left .nav-left-menu .nav-left-menu-element .nav-left-element-link:hover::after {
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  opacity: 1;
}
.nav-left .nav-left-menu .nav-left-menu-element .nav-left-element-link:hover {
  color: var(--brand);
}
.nav-left-line {
  width: 2px;
  height: 100px;
  background-color: var(--brand);
  margin-top: 15px;
  margin-bottom: 80px;
}
.nav-left-footer {
  position: absolute;
  top: auto;
  bottom: 3vh;
  left: 0%;
  right: 0%;
  margin-bottom: 3vw;
  transform: rotate(-90deg);
}
.nav-left-footer .copyright {
  text-align: center;
  letter-spacing: 2px;
  font-size: 1.0rem;
}
/*slider switch css */
.site-switch-theme {
  display: flex;
  justify-content: center;
  margin: 20px 0 0 0;
  height: 40px;
  width: 40px;
  padding: 8px;
  border-radius: 50%;
  background-color: var(--surface2);
}
.site-switch-theme:hover {
  background-color: var(--surface3);
}
.site-switch-theme .change-theme input {
  display: none;
}
.site-switch-theme .change-theme .theme-switch {
	cursor: pointer;
}
.site-switch-theme .change-theme .theme-switch svg {
  fill: var(--text1);
}
.site-switch-theme .change-theme .theme-switch .icon-theme-light,
.site-switch-theme .change-theme input:checked + .theme-switch .icon-theme-dark {
  display: none;
}
.site-switch-theme .change-theme .theme-switch .icon-theme-dark,
.site-switch-theme .change-theme input:checked + .theme-switch .icon-theme-light {
  display: block;
}
/*-----------------------------------------------------------------
First style
-----------------------------------------------------------------*/
.wrapper-main {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
/*-----------------------------------------------------------------
_Static left section
-----------------------------------------------------------------*/
.wrapper-main .section-left {
  width: 30%;
}
.wrapper-main .section-left .wrapper-main-content {
  position: fixed;
  width: 25%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.wrapper-main .section-left .main-content.left {
  padding-top: 5%;
}
.wrapper-main .section-left .main-content img {
  width: 70%;
  /*display: none;*/
}
.wrapper-main .section-left .main-content h1 {
  font-family: "Alifira", "Balgon Serif", "Yeseva One", serif;
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: normal;
}
.wrapper-main .section-left .main-content p {
  color: var(--text2);
}
.wrapper-main .section-left .main-content a {
  color: var(--text2);
  transition-duration: .25s;
}
.wrapper-main .section-left .main-content a:hover {
  color: var(--brand);
  text-decoration: none;
}
/*-----------------------------------------------------------------
_Right section
-----------------------------------------------------------------*/
.wrapper-main .section-right {
  width: 60%;
}
/*-----------------------------------------------------------------
__Primary style
-----------------------------------------------------------------*/
.wrapper-main .section-right .nav-main.primary-style {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.wrapper-main .section-right .nav-main .nav-main-element-link {
  font-size: 7vw;
  font-family: "Alifira", "Balgon Serif", "Yeseva One", serif;
  text-decoration: none;
  line-height: 1.2;
  color: var(--text1);
  white-space: nowrap;
  transition-duration: .4s;
  position: relative;
}
.wrapper-main .section-right .nav-main .nav-main-element-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.2vw;
  height: 1.2vw;
  border-radius: 50%;
  background-color: var(--brand);
  -webkit-transform: translate(-400%, -75%);
  transform: translate(-400%, -75%);
  transition-duration: .4s;
  opacity: 0;
}
.wrapper-main .section-right .nav-main .nav-main-element-link:hover::after {
  -webkit-transform: translate(-0%, -75%);
  transform: translate(-0%, -75%);
  opacity: 1;
}
.wrapper-main .section-right .nav-main .nav-main-element-link:hover {
  padding: 0 2vw;
  color: var(--brand);
}
/*-----------------------------------------------------------------
__Secondary style
-----------------------------------------------------------------*/
.wrapper-main .section-right .nav-main.secondary-style {
  margin: 15vh 0;
}
.wrapper-main .section-right .nav-main.secondary-style .nav-main-element {
  margin-bottom: 50px;
}
.wrapper-main .section-right .nav-main.secondary-style .nav-main-element-link {
  font-size: 5vw;
}
.wrapper-main .section-right .nav-main.secondary-style .nav-main-element-link::after {
  width: 1vw;
  height: 1vw;
}
.wrapper-main .section-right .nav-main.secondary-style .title-description  {
  position: relative;
  letter-spacing: 2px;
  font-size: 1.125rem;
  color: var(--text2);
}
.wrapper-main .section-right .nav-main.secondary-style .title-description::before  {
  content: '-';
  color: var(--text2);
  margin-right: 5px;
}
/*-----------------------------------------------------------------
First style
-----------------------------------------------------------------*/
.wrapper-main .main-content.long-left {
  width: 100%;
  margin: 15vh 0;
}
.wrapper-main .main-content.long-left .header-mask {
  position: relative;
}
.wrapper-main .main-content.long-left .header-mask h1 {
  font-size: 15vw;
  margin: 0;
}
.wrapper-main .main-content.long-left .header-mask-secondary {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.wrapper-main .main-content.long-left .header-mask-secondary h2 {
  font-size: 3.0rem;
  margin: 0;
  width: 70%;
}
.wrapper-main .main-content.long-left .header-mask-secondary img {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  border-radius: 20px;
}
.wrapper-main .main-content .content {
  max-width: 785px;
  width: 70%;
}
.wrapper-main .main-content .content .text-center {
  text-align: center;
}
.wrapper-main .main-content .content h2 {
  font-size: 3.0rem;
  margin-block-end: 0.4em;
}
.wrapper-main .main-content .content img {
  width: 100%;
  height: auto;
}
.wrapper-main .main-content .content p {
  font-size: 1.125rem;
  color: var(--text2);
}
.wrapper-main .main-content .content p a {
  color: var(--text2);
  transition-duration: .25s;
}
.wrapper-main .main-content .content p a:hover {
  color: var(--brand);
  text-decoration: none;
}
.wrapper-main .main-content .content q {
  font-family: "Alifira", "Balgon Serif", "Yeseva One", serif;
  font-size: 2.75rem;
  line-height: 1.2;
}
.wrapper-main .section-right .wrapper-qr-property button,
.wrapper-main .section-left .main-content a.content-button,
.wrapper-main .section-right .wrapper-web-plans a.content-button,
.wrapper-main .main-content .content a.content-button {
  background-color: var(--brand);
  padding: 0 40px;
  border-radius: 50px;
  color: var(--text-negative-constant);
  text-decoration: none;
  margin: 10px 0;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 50px;
  letter-spacing: 1px;
  transition-duration: .25s;
  border: none;
  cursor: pointer;
}
.wrapper-main .section-right .wrapper-qr-property button:hover,
.wrapper-main .section-left .main-content a.content-button:hover,
.wrapper-main .section-right .wrapper-web-plans a.content-button:hover,
.wrapper-main .main-content .content a.content-button:hover {
  padding: 0 60px;
}
/*-----------------------------------------------------------------
First style
-----------------------------------------------------------------*/
.wrapper-main .main-content.long-center {
  width: 100%;
  margin: 0 0 15vh 0;
}
.wrapper-main .main-content.long-center .header-mask {
  width: 100%;
  height: 90vh;
  background-color: var(--surface4);
  position: relative;
  margin-bottom: 10vh;
  border-radius: 0 0 2vw 2vw;
}
.wrapper-main .main-content.long-center .header-mask h1 {
  position: absolute;
  bottom: 0;
  color: var(--text1);
  font-size: 10vw;
  text-align: center;
  width: 100%;
}
.wrapper-main .main-content.long-center .content {
  max-width: none;
  width: 100%;
}
.wrapper-main .main-content.long-center .content .wrapper-content-center {
  max-width: 785px;
  width: 75%;
  margin: auto;
}
.wrapper-main .main-content.long-center .content .important-text p {
  font-family: "Alifira", "Balgon Serif", "Yeseva One", serif;
  font-weight: normal;
  font-size: 3.0rem;
  color: var(--text1);
}
.wrapper-main .main-content.long-center .content .columns {
  display: flex;
  justify-content: space-between;
}
.wrapper-main .main-content.long-center .content .columns .column {
  width: calc((100% / 3) - 20px);
}
.wrapper-main .main-content.long-center .content .columns .column h2 {
  font-family: "K2D", "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
}
.wrapper-main .main-content.long-center .content .columns .column p {
  font-size: 1.0rem;
}
.wrapper-main .main-content.long-center .content p {
  font-size: 1.125rem;
}
.wrapper-main .main-content.long-center .content video,
.wrapper-main .main-content.long-center .content img {
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 20px;
}
/*-----------------------------------------------------------------
Blog style
-----------------------------------------------------------------*/
.wrapper-main.blog .main-content.long-center .header-mask {
  height: initial;
  background-color: transparent;
  margin-bottom: initial;
}
.wrapper-main.blog .main-content.long-center .header-mask h1 {
  position: relative;
  top: 0;
  bottom: initial;
  font-size: 8vw;
  margin-bottom: 0;
}
.wrapper-main.blog .main-content.long-center .header-mask p {
  font-size: 1.2rem;
  text-align: center;
}
.wrapper-main.blog .main-content.long-center .heading-description {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 785px;
  width: 75%;
  margin: auto;
}
.wrapper-main.blog .main-content.long-center .heading-description h1,
.wrapper-main.blog .main-content.long-center .heading-description h2,
.wrapper-main.blog .main-content.long-center .heading-description h3,
.wrapper-main.blog .main-content.long-center .heading-description {
  font-family: "K2D", "Roboto", sans-serif;
  font-size: 1.2rem;
}
.wrapper-main.blog .main-content.long-center .heading-description .foto-perfil {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.wrapper-main.blog .main-content.long-center .heading-description .foto-perfil img {
  display: block;
  width: 100%;
  height: auto;
}
.wrapper-main.blog .main-content.long-center .heading-description h2 {
  flex-grow: 1;
}
.wrapper-main.blog .main-content.long-center #macy-container img {
  border: 1px solid var(--surface2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  background-color: var(--surface0);
}
.wrapper-main.blog .main-content.long-center #macy-container h2 {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
}
/*-----------------------------------------------------------------
Blog style modal
-----------------------------------------------------------------*/
.ed-modal-container {
  position:fixed;
  width:100%;
  height:100%;
  left:0;
  top:0;
  background:rgba(0,0,0,.9);
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex; 
  overflow: hidden;
  z-index: 99999;
}
.ed-modal-container:after,.ed-modal-container:before {
  content:"";
  width:2rem;
  height:2px;
  background:#fff;
  position:absolute;
  top:2rem;
  -webkit-transform:rotate(45deg);
          transform:rotate(45deg);
  opacity:.6;
  cursor: pointer;
}
.ed-modal-container:before {
  right:1rem;
}
.ed-modal-container:after {
  right:1rem;
  -webkit-transform:rotate(-45deg);
          transform:rotate(-45deg);
}
.ed-modal-content {
  max-width:90%;
  max-height: 90%;
  margin:auto;
  background:#fff;
  display: flex;
}
.ed-modal-content img {
  display: block;
}
/*-----------------------------------------------------------------
Contact and 404
-----------------------------------------------------------------*/
.wrapper-main .section-left .main-content.contact .title,
.wrapper-main .section-left .main-content.p404 h1 {
  font-family: "Alifira", "Balgon Serif", "Yeseva One", serif;
  font-size: 15vw;
  font-weight: normal;
  margin: 0;
}
.wrapper-main .section-left .main-content.contact h1 {
  font-size: 2.0rem;
}
/*-----------------------------------------------------------------
Servicios
-----------------------------------------------------------------*/
.wrapper-main .section-right .wrapper-web-plans h2 {
  text-align: center;
  font-size: 2.0rem;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan {
  margin-bottom: 20px;
  background-color: var(--surface0);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--surface2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  width: calc(95% / 3);
  min-width: 285px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan h2 {
  margin: 1.0rem 0;
  font-size: 1.8rem;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan .plan-price {
  padding: 20px;
  margin-left: -20px;
  border-radius: 0 100px 100px 0;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan .plan-price .discounted-price {
  color: #ffffff;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan .plan-price .discounted-price b {
  font-size: 1.8rem;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan .plan-price .normal-price {
  color: var(--text-negative-constant);
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan h3 {
  margin: 0.8rem 0;
  font-size: 1.2rem;
  font-family: "K2D", "Roboto", sans-serif;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan ul {
  text-align: left;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan.essential .plan-price,
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan.essential .content-button {
  background-color: #772834;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan.essential ul li::marker {
  color: #772834;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan.exclusive .plan-price,
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan.exclusive .content-button {
  background-color: #cc001f;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan.exclusive ul li::marker {
  color: #cc001f;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan.supreme .plan-price,
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan.supreme .content-button {
  background-color: #A21B2F;
}
.wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan.supreme ul li::marker {
  color: #A21B2F;
}
.wrapper-main .section-right .wrapper-web-plans .plan-info-label {
  background: #EA1240;
  color: var(--text-negative-constant);
  display: inline-block;
  right: -35%;
  line-height: 2.0;
  position: absolute;
  text-align: center;
  top: 2%;
  transform: rotate(35deg);
  width: 100%;
}
.wrapper-main .section-right .wrapper-web-plans .content-web-plan.supreme .plan-info-label {
  background: #524a4b;
}
/*-----------------------------------------------------------------
App Generador de QR
-----------------------------------------------------------------*/
.wrapper-main .section-right .wrapper-qr-property {
  width: 500px;
  max-width: 100%;
}
.wrapper-main .section-right .wrapper-qr-property h2 {
  font-size: 2rem;
}
.wrapper-main .section-right .wrapper-qr-property img,
.wrapper-main .section-right .wrapper-qr-property button {
  display: block;
  margin: auto;
}
.wrapper-main .section-right .wrapper-qr-property img {
  margin-bottom: 20px;
  max-width: 60%;
}
.wrapper-main .section-right .wrapper-qr-property button {
  background-color: var(--brand);
  padding: 0 40px;
  border-radius: 50px;
  color: var(--text-negative-constant);
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 50px;
  letter-spacing: 1px;
  transition-duration: .25s;
  border: none;
  cursor: pointer;
}
.wrapper-main .section-right .wrapper-qr-property button:hover {
  padding: 0 60px;
}
.wrapper-main .section-right .wrapper-qr-property .img-qr-render,
.wrapper-main .section-right .wrapper-qr-property .item-form {
  margin-bottom: 20px;
  background-color: var(--surface0);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--surface2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.wrapper-main .section-right .wrapper-qr-property .item-form label {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 5px;
  font-weight: 500;
}
.wrapper-main .section-right .wrapper-qr-property .item-form input:invalid {
  outline: 2px solid var(--brand);
  color: var(--brand);
}
.wrapper-main .section-right .wrapper-qr-property .item-form select,
.wrapper-main .section-right .wrapper-qr-property .item-form input {
  width: 100%;
  max-width: 100%;
  padding: 10px 15px;
  border-style: none;
  outline: 0;
  border-radius: 5px;
  background-color: var(--surface1);
}
.wrapper-main .section-right .wrapper-qr-property .item-form select:focus,
.wrapper-main .section-right .wrapper-qr-property .item-form input:focus {
  outline: 2px solid var(--brand);
  color: var(--text2);
}
.wrapper-main .section-right .wrapper-qr-property .item-form .help-qr {
  font-size: 0.875rem;
  color: var(--text2);
  margin-bottom: 0;
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-color {
  display: flex;
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-color .wrapper-set-color-color {
  width: 60px;
  margin-right: 20px;
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-color .wrapper-set-color-color input {
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  background: Transparent;
  border-radius: 20px;
  padding: 0;
  position: relative;
  border: 5px solid var(--surface1);
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-color .wrapper-set-color-color input::-webkit-color-swatch-wrapper {
  padding: 0;
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-color .wrapper-set-color-color input::-webkit-color-swatch {
  border: 0;
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-color .wrapper-set-color-color input::-moz-color-swatch {
  border: 0;
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-color .wrapper-set-color-opacity {
  width: calc(100% - 80px);
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-color label {
  color: var(--text2);
  font-size: 1rem;
}



.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-range {
  display: flex;
  align-items: center;
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-range .bar {
  width: calc(100% - 110px);
  margin-right: 3px;
  border-radius: 8px;
  padding: 0;
  height: 10px;
  width: 100%;
  outline: none;
  transition: background 450ms ease-in;
  -webkit-appearance: none;
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-range .bar::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-appearance: none;
  cursor: pointer;
  background: var(--brand);
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-range .bar#size-qr {
  background: linear-gradient(to right, var(--brand) 0%, var(--brand) 16.6667%, var(--surface1) 16.6667%, var(--surface1) 100%);
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-range .bar#backgroundAlpha-qr {
  background: linear-gradient(to right, var(--brand) 0%, var(--brand) 100%, var(--surface1) 100%, var(--surface1) 100%);
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-range .bar#foregroundAlpha-qr {
  background: linear-gradient(to right, var(--brand) 0%, var(--brand) 100%, var(--surface1) 100%, var(--surface1) 100%);
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-range .number-property {
  width: 80px;
  margin-right: 2px;
}
.wrapper-main .section-right .wrapper-qr-property .item-form .wrapper-set-range .unit {
  width: 25px;
  color: var(--text2);
}
/*-----------------------------------------------------------------
-------------------------------------------------------------------
Media Querys
-------------------------------------------------------------------
-----------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  .nav-left {
    width: 10%;
  }
  .wrapper-main {
    max-width: 80%;
    display: block;
  }
  .wrapper-main.long-content {
    max-width: 90%;
    margin-left: 10%;
  }
  .wrapper-main .section-left {
    width: 100%;
  }
  .wrapper-main .section-left .wrapper-main-content {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
  }
  .wrapper-main .section-left .main-content.left,
  .wrapper-main .section-left .main-content {
    padding-top: 10%;
  }
  .wrapper-main .section-right {
    width: 100%;
  }
  .wrapper-main .section-right .nav-main.primary-style {
    display: block;
    width: 100%;
    height: auto;
    padding: 50px 0 50px 10px;
  }
  .wrapper-main .section-right .nav-main .nav-main-element-link {
    font-size: 12vw;
  }
  .wrapper-main .section-right .nav-main .nav-main-element-link::after {
    width: 2vw;
    height: 2vw;
  }
  .wrapper-main .section-right .nav-main .nav-main-element-link:hover {
    padding: 0 2.5vw;
  }
  .wrapper-main .section-right .nav-main.secondary-style {
    margin: 50px 0;
  }
  .wrapper-main .section-right .nav-main.secondary-style .nav-main-element-link {
    font-size: 8vw;
  }
  .wrapper-main .section-right .nav-main.secondary-style .nav-main-element-link::after {
    width: 1.5vw;
    height: 1.5vw;
  }
  .wrapper-main .main-content.long-left .header-mask-secondary {
    flex-direction: column-reverse;
  }
  .wrapper-main .main-content.long-left .header-mask-secondary h2 {
    width: 100%;
  }
  .wrapper-main .main-content.long-left .header-mask-secondary img {
    position: relative;
    margin: 0 auto 40px auto;
    max-width: 380px;
    width: 100%;
  }
  .wrapper-main .main-content .content {
    width: 100%;
  }
  .wrapper-main .main-content.long-center .content .wrapper-content-center {
    width: 100%;
  }
}
@media screen and (max-height: 480px),
screen and (max-width: 785px) {
  .nav-left {
    width: 100%;
    height: 80px;
    flex-direction: row;
    padding: 0 3%;
    background-color: var(--surface1);
  }
  .nav-left.sticky {
    border-bottom: 1px solid var(--surface2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  .nav-left .nav-left-logo a svg {
    width: auto;
    height: 50px;
  }
  .site-switch-theme {
    margin: 0 0 0 15px;
  }
  .nav-left .nav-left-menu {
    flex-direction: row;
    width: auto;
    margin: 0 0 0 5px;
  }
  .nav-left .nav-left-menu .nav-left-menu-element {
    margin: 0px 10px;
    height: auto;
    width: auto;
  }
  .nav-left .nav-left-menu .nav-left-menu-element .nav-left-element-link {
    transform: rotate(0deg);
  }
  .nav-left-line {
    width: 100px;
    height: 2px;
    margin: 0 70px 0 10px;
  }
  .nav-left-footer {
    transform: rotate(0deg);
    top: 0;
    left: auto;
    right: 3%;
    bottom: auto;
    line-height: 80px;
  }
  .wrapper-main {
    max-width: 90%;
  }
  .wrapper-main .section-left .main-content.left,
  .wrapper-main .section-left .main-content {
    padding-top: 100px;
  }
  .wrapper-main .section-right .nav-main.secondary-style .nav-main-element {
    margin-bottom: 30px;
  }
  .wrapper-main .section-right .nav-main.secondary-style .title-description {
    letter-spacing: 0px;
    font-size: 1.0rem;
  }
  .wrapper-main.long-content {
    max-width: 90%;
    margin: auto;
  }
  .wrapper-main .main-content.long-left {
    margin: 120px 0 50px 0;
  }
  .wrapper-main .main-content.long-center {
    margin: 0 0 50px 0;
  }
  .wrapper-main .main-content.long-center .content .columns {
    display: block;
  }
  .wrapper-main .main-content.long-center .content .columns .column {
    width: 100%;
  }
  .wrapper-main .main-content.long-center .header-mask {
    height: 75vh;
    min-height: 320px;
    margin-bottom: 50px;
  }
  .wrapper-main .main-content.long-center .header-mask h1 {
    font-size: 12vw;
  }
}
@media screen and (max-width: 512px) {
  html {
    font-size: 14px;
  }
  .container {
    overflow: hidden;
  }
  .nav-left {
    height: 60px;
  }
  .nav-left .nav-left-logo a svg {
    height: 40px;
  }
  .site-switch-theme {
    margin: 0 0 0 10px;
  }
  .nav-left .nav-left-menu .nav-left-menu-element {
    margin: 0px 5px;
  }
  .nav-left .nav-left-menu .nav-left-menu-element .nav-left-element-link {
    padding: 0 5px;
  }
  .nav-left-line {
    width: 50px;
  }
  .nav-left-footer {
    line-height: 60px;
  }
  .wrapper-main .section-left .main-content h1 {
    font-size: 3.0rem;
  }
  .wrapper-main .section-right .wrapper-web-plans .wrapper-content-web-plans .content-web-plan {
    width: 100%;
    min-width: initial;
  }
  .wrapper-main .main-content .content h2,
  .wrapper-main .main-content.long-left .header-mask-secondary h2,
  .wrapper-main .main-content .content q,
  .wrapper-main .main-content.long-center .content .important-text p {
    font-size: 2.5rem;
  }
  .wrapper-main .section-right .wrapper-qr-property button,
  .wrapper-main .section-left .main-content a.content-button,
  .wrapper-main .main-content .content a.content-button {
    line-height: 40px;
    padding: 0 25px;
  }
  .wrapper-main .section-right .wrapper-qr-property button:hover,
  .wrapper-main .section-left .main-content a.content-button:hover,
  .wrapper-main .main-content .content a.content-button:hover {
    padding: 0 40px;
  }
}
