diff --git a/assets/index.html b/assets/index.html index 8024d04..ae3f5dc 100644 --- a/assets/index.html +++ b/assets/index.html @@ -4,6 +4,7 @@ Stand + @@ -66,9 +67,13 @@
- - - +
+ + +
+
+ +
@@ -165,7 +170,7 @@
- +
@@ -224,6 +229,13 @@ COTIZA CON NOSOTROS
+
+
+ LOGO + +
+
+
@@ -236,6 +248,8 @@
+
+
-
-
- LOGO - -
Cargar archivo
-
-
@@ -315,6 +322,7 @@ +
diff --git a/assets/js/main.js b/assets/js/main.js index e47a7b5..ab1700c 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -1,41 +1,3 @@ -var proportionals = [] -var widths = [] -var heights = [] -var changeables = [] -function register_resizeables() { - proportionals.push($('img')) - //widths.push() - heights.push($('#backgrounds div')) - changeables.push($('.sticky')) -} - -const vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0) -const vh = Math.max(document.documentElement.clientHeight || 0, window.innerHeight || 0) - -function mod_height(elem, p) { - elem.height = (elem.height * p) -} -function mod_width(elem, p) { - elem.width = (elem.width * p) -} -function mod_dim(elem, p) { - mod_width(elem, p) - mod_height(elem, p) -} -function resize() { - let p = 400 / 1080 - - $.each(proportionals, (i, el) => { - mod_dim(el, p) - }) - $.each(widths, (i, el) => { - mod_width(el, p) - }) - $.each(heights, (i, el) => { - mod_height(el, p) - }) -} - class Amount { constructor(elem) { this.elem = elem @@ -152,10 +114,8 @@ class Colors { } let smtp = { - Host: 'smtp.google.com', - Username: 'rsalinas85@gmail.com', - Password: 'salinas1234', - From: 'ventas@3dstand.cl' + SecureToken: '4adcdc1f-6b6e-4e60-ab72-20da4c329b09', + From: 'contacto@3dstand.cl' } let sticky_form = { @@ -197,9 +157,7 @@ let cotiza_form = { this.elem.find('[name="mensaje"]').val() ] let content = { - Host: smtp.Host, - Username: smtp.Username, - Password: smtp.Password, + SecureToken: smtp.SecureToken, To: email, From: smtp.From, Subject: 'Cotizacion - ' + (new Date()).toLocaleString('es-CL', {timezone: "UTC-3"}), @@ -211,8 +169,7 @@ let cotiza_form = { } ] } - console.debug(email) - //Email.send() + Email.send(content) } } let conversemos_form = { @@ -233,14 +190,13 @@ let conversemos_form = { this.elem.find('[name="mensaje"]').val() ] let content = { - Host: smtp.Host, - Username: smtp.Username, - Password: smtp.Password, + SecureToken: smtp.SecureToken, From: smtp.From, To: email, Subject: 'Contacto ' + (new Date()).toLocaleString('es-CL', {timezone: "UTC-3"}), Body: body.join('
') } + Email.send(content) } } @@ -295,11 +251,6 @@ let testimonios = { } $(document).ready(function() { - register_resizeables() - - if (vw < 1080) { - resize() - } $('.menu.sticky').sticky() $('.column2 .sticky').sticky({ @@ -309,8 +260,6 @@ $(document).ready(function() { $('.shopping.cart').innerText = 0 - window.onresize = resize; - let sticky_amount = new Amount($('.sticky .input input[name="cantidad"]')) let sticky_color = new Colors($('.sticky .colores'), true) sticky_form.setup() diff --git a/assets/sass/_functions.scss b/assets/sass/_functions.scss new file mode 100644 index 0000000..dc8113a --- /dev/null +++ b/assets/sass/_functions.scss @@ -0,0 +1,57 @@ +@function strip_unit($value) { + @return $value / ($value * 0 + 1); +} +@function rem($px_value) { + @return #{strip_unit($px_value) / strip_unit($html-font-size)}rem; +} +@function font_size($font) { + @return #{strip_unit($font) / 12}rem; +} + +@mixin colors { + .colores { + vertical-align: center; + + .text { + margin-right: rem(3); + } + + .white { + border: thin solid rgb(0, 0, 0); + background-color: rgb(255, 255, 255); + } + .black { + background-color: rgb(0, 0, 0); + } + .blue { + background-color: rgb(0, 0, 255); + } + .green { + background-color: rgb(0, 255, 0); + } + .yellow { + background-color: rgb(255, 255, 0); + } + .orange { + background-color: rgb(255, 130, 0); + } + .red { + background-color: rgb(255, 0, 0); + } + .circle { + display: inline-block; + + width: rem($circle_radius); + height: rem($circle_radius); + border-radius: 8000px; + margin: auto rem(1); + cursor: pointer; + + &.selected { + width: rem($circle_radius + 2); + height: rem($circle_radius + 2); + cursor: default; + } + } + } +} diff --git a/assets/sass/_main-phone.scss b/assets/sass/_main-phone.scss deleted file mode 100644 index e69de29..0000000 diff --git a/assets/sass/_pc.scss b/assets/sass/_pc.scss new file mode 100644 index 0000000..484f003 --- /dev/null +++ b/assets/sass/_pc.scss @@ -0,0 +1,702 @@ +@import 'pc_vars'; + +#backgrounds { + .cabezal { + height: (map.get($heights, 'cabezal'))+rem; + + background-image: $fondo_cabezal; + background-repeat: no-repeat; + background-size: rem(1600); + background-position: bottom rem(-40) center; + background-color: rgba(0, 0, 0, .4); + background-blend-mode: multiply; + } + .seccion1 { + height: (map.get($heights, "seccion1"))+rem; + + background-image: linear-gradient($gris, $gris); + background-position: left rem(112); + background-size: 100% rem(128); + background-repeat: no-repeat; + } + .seccion2 { + height: (map.get($heights, "seccion2"))+rem; + + background-image: $fondo_seccion23; + + .diagonal { + border-bottom: (map.get($heights, 'seccion2'))+rem solid rgba($gris, .5); + border-right: rem(1900) solid transparent; + } + } + .dimensiones { + height: (map.get($heights, "dimensiones"))+rem; + + background-image: $fondo_seccion23; + .fondo-gris { + width: 100%; + height: 100%; + background-color: rgba($gris, .5); + } + } + .construido { + height: (map.get($heights, "construido"))+rem; + + background-image: $fondo_construido; + } + .corporativos { + height: (map.get($heights, "corporativos"))+rem; + + background-image: $fondo_corporativo; + } + .testimonios { + height: (map.get($heights, "felices"))+rem; + + background-image: linear-gradient($gris, $gris); + background-position: left rem(115); + background-size: 100% rem(118); + background-repeat: no-repeat; + } + .formulario { + height: (map.get($heights, "formulario"))+rem; + background-color: $gris; + clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%); + } +} + +html { + height: ($content_height)+rem; + overflow: hidden; +} + +body { + height: ($content_height)+rem; + font-family: $font_family; + color: $gris_standard; +} + +#content { + max-width: rem($full_width) !important; + height: ($content_height)+rem; + + position: relative; + top: (-$content_height)+rem; + + #header { + color: rgb(255, 255, 255); + + width: 100%; + height: (map.get($heights, 'cabezal'))+rem; + + .ui.menu { + border: none !important; + background: none !important; + //background-color: rgba(100, 100, 100, .3) !important; + box-shadow: none !important; + margin: 0 !important; + color: rgb(0, 0, 0); + + .dropdown .menu { + /*background: none !important; + border: none !important; + box-shadow: none !important;*/ + color: rgb(0, 0, 0); + font-size: 1rem; + .item { + padding: 1rem !important; + } + } + + .item { + color: inherit !important; + font-size: 2rem; + + padding: rem(20) !important; + + .shopping.cart div { + position: relative; + color: rgb(255, 255, 255); + display: inline-block; + top: -2.6rem; + left: 0.2rem; + font-size: 1rem; + font-family: Roboto, sans; + } + } + } + + .logo { + padding: 0 !important; + margin: 0 !important; + + img { + width: 50%; + max-width: rem(1030); + } + .frase1 { + font-size: 1.5rem; + } + .frase2 { + font-size: 1rem; + } + } + } + + &>.column { + display: inline-block; + float: left; + + padding-left: 1rem !important; + padding-right: 1rem !important; + + &::after { + clear: both; + } + } + &>.column1 { + width: percentage($column1/100); + + + #seccion1 { + height: (map.get($heights, "seccion1"))+rem; + width: 100%; + + .image-container { + display: flex; + justify-content: space-between; + height: rem(112+128); + + img { + height: rem(155); + width: rem(188); + margin-top: rem(85); + } + } + .paragraph { + padding-top: rem(28); + line-height: rem(14); + text-align: justify; + + .header { + margin-bottom: 1rem; + font-size: rem(22); + } + } + } + + #seccion2 { + height: (map.get($heights, "seccion2"))+rem; + + &>.column { + display: inline-block; + float: left; + width: 50%; + + &::after { + clear: both; + } + } + .column1 { + margin-top: rem(80); + img { + width: rem(317); + height: rem(317); + } + } + .column2 { + margin-top: rem(114); + .row:first-child { + background-color: #00427b; + color: rgb(255, 255, 255); + height: rem(180); + width: rem(380); + padding: 2rem; + margin-left: -3rem; + overflow: hidden; + + .header { + font-weight: bold; + font-size: rem(16); + margin-bottom: 1rem; + } + + ul { + list-style: disc inside; + font-size: font-size(10); + } + } + .row:last-child { + margin-top: rem(18); + + display: flex; + justify-content: space-between; + + img { + width: rem(70); + height: rem(85); + } + } + } + } + + #dimensiones { + height: (map.get($heights, "dimensiones"))+rem; + + .header { + padding: rem(37) 0 !important; + .bigger { + font-size: rem(16); + } + } + + .images { + display: flex; + + .column { + float: left; + + &>img { + width: rem(313); + height: rem(235); + } + + div { + width: rem(313); + margin-top: rem(25); + } + } + } + } + + #construido { + height: (map.get($heights, "construido"))+rem; + padding-top: rem(23) !important; + + .header { + font-size: font_size(22); + padding: rem(10) rem(43); + background-color: rgba(255, 255, 255, .6); + } + } + } + &>.column2 { + width: percentage($column2/100); + height: ($column_height1)+rem; + + .sticky { + height: rem(265); + width: rem(310); + margin: auto; + + .row:first-child { + height: rem(170); + margin-top: rem(80); + + .column { + display: inline-block; + float: left; + + &::after { + clear: both; + } + } + .column1 { + vertical-align: bottom; + padding-top: rem(20); + width: rem(310*2/3); + + .linea { + margin-bottom: rem(10); + } + + .titulo { + font-size: font_size(25); + } + .precio { + font-size: font_size(16); + } + font-size: font_size(14); + + @include colors; + .input { + width: 4.5rem; + border: thin solid rgb(0, 0, 0); + text-align: center; + padding: .5rem 0.05rem; + font-size: font_size(10); + + button { + background: none; + border: none; + width: 1rem; + margin: 0; + padding: 0; + cursor: pointer; + font-weight: bold; + } + input { + width: 2rem; + background: none; + margin: 0; + border: 0; + padding: 0; + text-align: center; + } + } + } + .column2 { + width: rem(310/3); + + img { + width: rem(110); + height: rem(160); + } + } + } + .row:last-child { + .button { + border-radius: 0 !important; + width: 100%; + } + } + } + } + + #corporativos { + width: 100%; + height: (map.get($heights, "corporativos"))+rem; + + margin-top: ($column_height1)+rem !important; + + &>.column { + display: inline-block; + float: left; + + padding-left: 1rem !important; + padding-right: 1rem !important; + + &::after { + clear: both; + } + } + .column1 { + width: percentage(67/100); + + &>.header { + margin-top: rem(67); + margin-bottom: rem(37); + .bigger { + font-size: rem(26); + } + } + .opciones { + display: flex; + justify-content: space-around; + + .opcion { + display: inline-block; + + .img-grande { + display: inline-block; + padding-right: rem(12); + img { + width: rem(135); + height: rem(200); + } + } + .descripcion { + display: inline-block; + vertical-align: top; + height: rem(200); + padding-top: rem(20); + + .content { + display: block; + .header { + font-size: font_size(14); + margin-bottom: rem(10); + } + + ul { + list-style: disc inside; + } + } + .images { + margin-top: rem(34); + img { + width: rem(70); + height: rem(85); + } + } + } + } + } + } + .column2 { + width: percentage(33/100); + height: 100%; + + .header { + margin-top: rem(46); + margin-bottom: rem(24); + font-size: rem(26); + } + + form { + @include colors; + + .row { + margin-bottom: rem(9); + } + .colores.linea { + //margin-bottom: rem(25-9); + } + .input.cantidad { + width: 4.5rem; + background: rgb(255, 255, 255); + text-align: center; + padding: .5rem 0.05rem; + font-size: font_size(10); + color: rgba(191, 191, 191, .87) !important; + + button { + background: none; + border: none; + width: 1rem; + margin: 0; + padding: 0; + cursor: pointer; + color: rgba(191, 191, 191, .87) !important; + } + input { + width: 2rem; + background: none; + margin: 0; + border: 0; + padding: 0; + text-align: center; + color: rgba(191, 191, 191, .87) !important; + } + } + .input [type="file"] { + display: none; + } + .input .file { + display: inline-block; + height: rem(20*12/10); + //width: rem(150); + padding-top: rem(3); + margin-left: rem(5); + //background-color: #cccccb; + //border: thin solid #333; + font-size: font_size(16); + text-align: center; + cursor: pointer; + } + .input [type="text"] { + height: rem(18); + background-color: rgba(255, 255, 255); + border: none !important; + border-radius: 0 !important; + } + textarea { + height: rem(72); + background-color: rgba(255, 255, 255); + border: none !important; + border-radius: 0 !important; + margin-bottom: rem(25-9); + } + .button { + width: 100%; + background-color: #666667; + color: white; + border: none !important; + border-radius: 0 !important; + } + } + } + } + + #felices { + height: (map.get($heights, "felices"))+rem; + + padding: 0 1rem !important; + padding-top: rem(60) !important; + + .header { + //margin-top: rem(60); + font-size: font_size(22); + } + .testimonios { + margin-top: rem(25); + display: flex; + justify-content: space-between; + text-align: center; + + .testimonio { + height: rem(80); + color: #666667; + margin-top: rem(20); + width: percentage(30/100); + text-align: center; + } + } + .nav { + display: block; + text-align: center; + color: #666667; + } + } + + #formulario { + height: (map.get($heights, "formulario"))+rem; + + padding: 0 1rem !important; + + .whatsapp-link { + color: inherit; + } + &>.column { + float: left; + + padding-left: 1rem !important; + padding-right: 1rem !important; + + &::after { + clear: both; + } + } + &>.flotante { + position: absolute; + top: rem(183); + margin: auto; + left: 40%; + width: rem($full_width/5); + text-align: center; + + &>.content { + width: rem(130); + margin: auto; + left: -50%; + + .item { + display: block; + padding: rem(5) 0; + } + div.whatsapp { + height: rem(30); + background-color: #1a9947; + color: #fff; + font-size: rem(10); + + &>i { + position: relative; + font-size: font_size(16); + top: rem(3); + } + } + .rrss { + display: flex; + justify-content: space-around; + font-size: rem(20); + + i.inverted.grey { + color: white !important; + } + } + } + } + &>.column1 { + width: percentage($column1/100); + margin-top: rem(27); + + &>img { + width: rem(540); + height: rem(350); + float: left; + } + } + &>.column2 { + width: percentage($column2/100); + + .header { + margin-top: rem(20); + text-align: center; + font-size: font_size(22); + + .whatsapp-link { + display: inline-block; + width: rem(25); + height: rem(25); + font-size: font_size(25); + } + } + + .paragraph { + padding-top: 1rem; + padding-bottom: rem(25); + justify-content: center; + } + + form { + input { + border-radius: 0 !important; + height: rem(18); + margin-bottom: rem(9); + background-color: rgba(255, 255, 255, .5); + font-size: font_size(10); + &::placeholder { + color: $gris_standard; + } + } + textarea { + border-radius: 0 !important; + height: rem(72); + margin-bottom: rem(25); + background-color: rgba(255, 255, 255, .5); + font-size: font_size(10); + &::placeholder { + color: $gris_standard; + } + } + .button { + width: 100%; + border-radius: 0 !important; + background-color: white; + color: $gris_standard; + } + } + } + } + + section { + background: none; + + &.segment>.container { + height: 100%; + + &>.column1 { + display: inline-block; + width: ($column1)+rem; + } + &>.column2 { + display: inline-block; + width: ($column2)+rem; + } + } + } + .simple.segment { + border: none !important; + border-radius: 0 !important; + box-shadow: none !important; + margin: 0 !important; + padding: 0 !important; + + &>.ui.grid { + height: 100%; + } + } + .fondo-blanco { + background-color: rgba(255, 255, 255, .5); + } +} diff --git a/assets/sass/_pc_vars.scss b/assets/sass/_pc_vars.scss new file mode 100644 index 0000000..85180af --- /dev/null +++ b/assets/sass/_pc_vars.scss @@ -0,0 +1,32 @@ +@import 'variables'; + +$html-font-size: 16px; + +$circle_radius: 12; + +$full_width: 1080; + +$heights: ( + "cabezal": (500/16), + "seccion1": 25, + "seccion2": 27.5, + "dimensiones": 27.5, + "construido": 21.875, + "corporativos": (520/16), + "felices": 21.875, + "formulario": 30 +); + +$column1: 67; +$column2: 33; + +$content_height: 0; +$column_height1: 0; +@each $name, $val in $heights { + $content_height: $content_height + $val; + @if $name != 'corporativos' and $name != 'felices' and $name != 'formulario' and $name != 'cabezal' { + $column_height1: $column_height1 + $val; + } +} + +@import 'functions'; diff --git a/assets/sass/_phone.scss b/assets/sass/_phone.scss new file mode 100644 index 0000000..753663e --- /dev/null +++ b/assets/sass/_phone.scss @@ -0,0 +1,698 @@ +@import 'phone_vars'; + +#backgrounds { + .cabezal { + height: (map.get($heights, 'cabezal'))+rem; + + background-image: $fondo_cabezal; + background-repeat: no-repeat; + background-size: 160%; + background-position: bottom rem(-10) center; + background-color: rgba(0, 0, 0, .4); + background-blend-mode: multiply; + } + .seccion1 { + height: (map.get($heights, "seccion1"))+rem; + + background-image: linear-gradient($gris, $gris); + background-position: left rem(112); + background-size: 100% rem(128); + background-repeat: no-repeat; + } + .seccion2 { + height: (map.get($heights, "seccion2"))+rem; + + background-image: $fondo_seccion23; + + .diagonal { + border-bottom: (map.get($heights, 'seccion2'))+rem solid rgba($gris, .5); + border-right: rem(1900) solid transparent; + } + } + .dimensiones { + height: (map.get($heights, "dimensiones"))+rem; + + background-image: $fondo_seccion23; + .fondo-gris { + width: 100%; + height: 100%; + background-color: rgba($gris, .5); + } + } + .construido { + height: (map.get($heights, "construido"))+rem; + + background-image: $fondo_construido; + } + .corporativos { + height: (map.get($heights, "corporativos"))+rem; + + background-image: $fondo_corporativo; + } + .testimonios { + height: (map.get($heights, "felices"))+rem; + + background-image: linear-gradient($gris, $gris); + background-position: left rem(115); + background-size: 100% rem(118); + background-repeat: no-repeat; + } + .formulario { + height: (map.get($heights, "formulario"))+rem; + background-color: $gris; + clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%); + } +} + +html { + font-size: $html-font-size+px; + width: 100%; + overflow-x: hidden; +} + +body { + height: ($content_height)+rem; + font-family: Roboto, sans; + color: $gris_standard; +} + +#content { + width: 100% !important; + height: ($content_height)+rem; + margin: 0 !important; + position: relative; + top: (-$content_height)+rem; + + #header { + color: rgb(255, 255, 255); + + width: 100%; + height: (map.get($heights, 'cabezal'))+rem; + + .ui.menu { + border: none !important; + background: none !important; + //background-color: rgba(100, 100, 100, .3) !important; + box-shadow: none !important; + margin: 0 !important; + color: rgb(0, 0, 0); + + .dropdown .menu { + /*background: none !important; + border: none !important; + box-shadow: none !important;*/ + color: rgb(0, 0, 0); + font-size: 1rem; + .item { + padding: 1rem !important; + } + } + + .item { + color: inherit !important; + font-size: 1rem; + + .shopping.cart div { + position: relative; + color: rgb(0, 0, 0); + display: inline-block; + top: -1.3rem; + left: 0.1rem; + font-size: .5rem; + font-family: Roboto, sans; + } + } + } + + .logo { + padding: 0 !important; + margin: 0 !important; + + img { + width: 50%; + max-width: rem($full_width); + } + .frase1 { + width: 75%; + margin: auto; + font-size: 1rem; + } + .frase2 { + font-size: .7rem; + } + } + } + + &>.column { + display: inline-block; + float: left; + + padding-left: 1rem !important; + padding-right: 1rem !important; + + &::after { + clear: both; + } + } + &>.column1 { + width: percentage($column1/100); + + + #seccion1 { + height: (map.get($heights, "seccion1"))+rem; + width: 100%; + + .image-container { + display: flex; + justify-content: space-between; + height: rem(112+128); + + img { + width: percentage(50/100); + margin-top: rem(85); + } + } + .paragraph { + padding-top: rem(28); + line-height: rem(14); + text-align: justify; + + .header { + margin-bottom: 1rem; + font-size: rem(22); + } + } + } + + #seccion2 { + height: (map.get($heights, "seccion2"))+rem; + + &>.column { + display: inline-block; + float: left; + width: 50%; + + &::after { + clear: both; + } + } + .column1 { + margin-top: rem(80); + img { + width: rem(317); + height: rem(317); + } + } + .column2 { + margin-top: rem(114); + .row:first-child { + background-color: #00427b; + color: rgb(256, 256, 256); + height: rem(180); + width: rem(380); + padding: 2rem; + margin-left: -3rem; + overflow: hidden; + + .header { + font-weight: bold; + font-size: rem(16); + margin-bottom: 1rem; + } + + ul { + list-style: disc inside; + font-size: font-size(10); + } + } + .row:last-child { + margin-top: rem(18); + + display: flex; + justify-content: space-between; + + img { + width: rem(70); + height: rem(85); + } + } + } + } + + #dimensiones { + height: (map.get($heights, "dimensiones"))+rem; + + .header { + padding: rem(37) 0 !important; + .bigger { + font-size: rem(16); + } + } + + .images { + display: flex; + + .column { + float: left; + + &>img { + width: rem(313); + height: rem(235); + } + + div { + width: rem(313); + margin-top: rem(25); + } + } + } + } + + #construido { + height: (map.get($heights, "construido"))+rem; + padding-top: rem(23) !important; + + .header { + font-size: font_size(22); + padding: rem(10) rem(43); + background-color: rgba(255, 255, 255, .6); + } + } + } + &>.column2 { + width: percentage($column2/100); + height: ($column_height1)+rem; + + .sticky { + height: rem(265); + width: rem(310); + margin: auto; + + .row:first-child { + height: rem(170); + margin-top: rem(80); + + .column { + display: inline-block; + float: left; + + &::after { + clear: both; + } + } + .column1 { + vertical-align: bottom; + padding-top: rem(20); + width: rem(310*2/3); + + .linea { + margin-bottom: rem(10); + } + + .titulo { + font-size: font_size(25); + } + .precio { + font-size: font_size(16); + } + font-size: font_size(14); + + @include colors; + .input { + width: 4.5rem; + border: thin solid rgb(0, 0, 0); + text-align: center; + padding: .5rem 0.05rem; + font-size: font_size(10); + + button { + background: none; + border: none; + width: 1rem; + margin: 0; + padding: 0; + cursor: pointer; + font-weight: bold; + } + input { + width: 2rem; + background: none; + margin: 0; + border: 0; + padding: 0; + text-align: center; + } + } + } + .column2 { + width: rem(310/3); + + img { + width: rem(110); + height: rem(160); + } + } + } + .row:last-child { + .button { + border-radius: 0 !important; + width: 100%; + } + } + } + } + + #corporativos { + width: 100%; + height: (map.get($heights, "corporativos"))+rem; + + margin-top: ($column_height1)+rem !important; + + &>.column { + display: inline-block; + float: left; + + padding-left: 1rem !important; + padding-right: 1rem !important; + + &::after { + clear: both; + } + } + .column1 { + width: percentage(67/100); + + &>.header { + margin-top: rem(67); + margin-bottom: rem(37); + .bigger { + font-size: rem(26); + } + } + .opciones { + display: flex; + justify-content: space-around; + + .opcion { + display: inline-block; + + .img-grande { + display: inline-block; + padding-right: rem(12); + img { + width: rem(135); + height: rem(200); + } + } + .descripcion { + display: inline-block; + vertical-align: top; + height: rem(200); + padding-top: rem(20); + + .content { + display: block; + .header { + font-size: font_size(14); + margin-bottom: rem(10); + } + + ul { + list-style: disc inside; + } + } + .images { + margin-top: rem(34); + img { + width: rem(70); + height: rem(85); + } + } + } + } + } + } + .column2 { + width: percentage(33/100); + height: 100%; + + .header { + margin-top: rem(46); + margin-bottom: rem(24); + font-size: rem(26); + } + + form { + @include colors; + + .row { + margin-bottom: rem(9); + } + .colores.linea { + margin-bottom: rem(25-9); + } + .input.cantidad { + width: 4.5rem; + border: thin solid rgb(0, 0, 0); + text-align: center; + padding: .5rem 0.05rem; + font-size: font_size(10); + + button { + background: none; + border: none; + width: 1rem; + margin: 0; + padding: 0; + cursor: pointer; + } + input { + width: 2rem; + background: none; + margin: 0; + border: 0; + padding: 0; + text-align: center; + } + } + .input [type="file"] { + display: none; + } + .input .file { + display: inline-block; + height: rem(20*12/10); + width: rem(150); + padding-top: rem(3); + background-color: #cccccb; + border: thin solid #333; + font-size: font_size(10); + text-align: center; + cursor: pointer; + } + .input [type="text"] { + height: rem(18); + background-color: rgba(255, 255, 255); + border: none !important; + border-radius: 0 !important; + } + textarea { + height: rem(72); + background-color: rgba(255, 255, 255); + border: none !important; + border-radius: 0 !important; + margin-bottom: rem(25-9); + } + .button { + width: 100%; + background-color: #666667; + color: white; + border: none !important; + border-radius: 0 !important; + } + } + } + } + + #felices { + height: (map.get($heights, "felices"))+rem; + + padding: 0 1rem !important; + padding-top: rem(60) !important; + + .header { + //margin-top: rem(60); + font-size: font_size(22); + } + .testimonios { + margin-top: rem(25); + display: flex; + justify-content: space-between; + text-align: center; + + .testimonio { + height: rem(80); + color: #666667; + margin-top: rem(20); + width: percentage(30/100); + text-align: center; + } + } + .nav { + display: block; + text-align: center; + color: #666667; + } + } + + #formulario { + height: (map.get($heights, "formulario"))+rem; + + padding: 0 1rem !important; + + .whatsapp-link { + color: inherit; + } + &>.column { + float: left; + + padding-left: 1rem !important; + padding-right: 1rem !important; + + &::after { + clear: both; + } + } + &>.flotante { + position: absolute; + top: rem(183); + margin: auto; + left: 40%; + width: rem($full_width/5); + text-align: center; + + &>.content { + width: rem(130); + margin: auto; + left: -50%; + + .item { + display: block; + padding: rem(5) 0; + } + div.whatsapp { + height: rem(30); + background-color: #1a9947; + color: #fff; + font-size: rem(10); + + &>i { + position: relative; + font-size: font_size(16); + top: rem(3); + } + } + .rrss { + display: flex; + justify-content: space-around; + font-size: rem(20); + + i.inverted.grey { + color: white !important; + } + } + } + } + &>.column1 { + width: percentage($column1/100); + margin-top: rem(27); + + &>img { + width: rem(540); + height: rem(350); + float: left; + } + } + &>.column2 { + width: percentage($column2/100); + + .header { + margin-top: rem(20); + text-align: center; + font-size: font_size(22); + + .whatsapp-link { + display: inline-block; + width: rem(25); + height: rem(25); + font-size: font_size(25); + } + } + + .paragraph { + padding-top: 1rem; + padding-bottom: rem(25); + justify-content: center; + } + + form { + input { + border-radius: 0 !important; + height: rem(18); + margin-bottom: rem(9); + background-color: rgba(255, 255, 255, .5); + font-size: font_size(10); + &::placeholder { + color: $gris_standard; + } + } + textarea { + border-radius: 0 !important; + height: rem(72); + margin-bottom: rem(25); + background-color: rgba(255, 255, 255, .5); + font-size: font_size(10); + &::placeholder { + color: $gris_standard; + } + } + .button { + width: 100%; + border-radius: 0 !important; + background-color: white; + color: $gris_standard; + } + } + } + } + + section { + background: none; + + &.segment>.container { + height: 100%; + + &>.column1 { + display: inline-block; + width: ($column1)+rem; + } + &>.column2 { + display: inline-block; + width: ($column2)+rem; + } + } + } + .simple.segment { + border: none !important; + border-radius: 0 !important; + box-shadow: none !important; + margin: 0 !important; + padding: 0 !important; + + &>.ui.grid { + height: 100%; + } + } + .fondo-blanco { + background-color: rgba(255, 255, 255, .5); + } +} diff --git a/assets/sass/_phone_vars.scss b/assets/sass/_phone_vars.scss new file mode 100644 index 0000000..d921d40 --- /dev/null +++ b/assets/sass/_phone_vars.scss @@ -0,0 +1,32 @@ +@import 'variables'; + +$html-font-size: (16*8/12); + +$circle_radius: 10; + +$full_width: 600; + +$heights: ( + "cabezal": (400/16), + "seccion1": 25, + "seccion2": 27.5, + "dimensiones": 27.5, + "construido": 21.875, + "corporativos": (520/16), + "felices": 21.875, + "formulario": 30 +); + +$column1: 90; +$column2: 10; + +$content_height: 0; +$column_height1: 0; +@each $name, $val in $heights { + $content_height: $content_height + $val; + @if $name != 'corporativos' and $name != 'felices' and $name != 'formulario' and $name != 'cabezal' { + $column_height1: $column_height1 + $val; + } +} + +@import 'functions'; diff --git a/assets/sass/_variables.scss b/assets/sass/_variables.scss new file mode 100644 index 0000000..646b49a --- /dev/null +++ b/assets/sass/_variables.scss @@ -0,0 +1,17 @@ +// Colores +$blanco: rgb(255, 255, 255); +$negro: rgb(0, 0, 0); +$gris: rgb(204, 204, 204); +$gris_transparencia: rgba($gris, .5); +$gris_standard: rgb(51, 51, 51); +$gris_claro: rgb(102, 102, 102); +$azul: rgb(0, 66, 123); + +// Tipografias +$font_family: Roboto, sans; + +// Fondos +$fondo_cabezal: url('../images/banner.jpg'); +$fondo_seccion23: url('../images/fondo23.png'); +$fondo_construido: url('../images/fondo4.jpg'); +$fondo_corporativo: url('../images/fondo5.png'); diff --git a/assets/sass/main.scss b/assets/sass/main.scss index 1e72c36..c9b8f23 100644 --- a/assets/sass/main.scss +++ b/assets/sass/main.scss @@ -1,795 +1,9 @@ @use "sass:map"; @import 'reset'; -$html-font-size: 16px; -@function strip_unit($value) { - @return $value / ($value * 0 + 1); +@media screen and (max-width: 800px) { + @import 'phone'; } -@function rem($px_value) { - @return #{strip_unit($px_value) / strip_unit($html-font-size)}rem; -} -@function font_size($font) { - @return #{strip_unit($font) / 12}rem; -} - -$gris: rgb(204, 204, 204); -$gris-texto: rgb(51, 51, 51); - -@mixin colors { - .colores { - vertical-align: center; - - .text { - margin-right: rem(3); - } - - .white { - border: thin solid rgb(0, 0, 0); - background-color: rgb(255, 255, 255); - } - .black { - background-color: rgb(0, 0, 0); - } - .blue { - background-color: rgb(0, 0, 255); - } - .green { - background-color: rgb(0, 255, 0); - } - .yellow { - background-color: rgb(255, 255, 0); - } - .orange { - background-color: rgb(255, 130, 0); - } - .red { - background-color: rgb(255, 0, 0); - } - .circle { - display: inline-block; - $a: 12; - width: rem($a); - height: rem($a); - border-radius: 8000px; - margin: auto rem(1); - cursor: pointer; - - &.selected { - width: rem($a + 2); - height: rem($a + 2); - cursor: default; - } - } - } -} - -$full_width: 1080; - -$heights: ( - "cabezal": (400/16), - "seccion1": 25, - "seccion2": 27.5, - "dimensiones": 27.5, - "construido": 21.875, - "corporativos": (520/16), - "felices": 21.875, - "formulario": 30 -); - -#backgrounds { - .cabezal { - height: (map.get($heights, 'cabezal'))+rem; - - background-image: url('../images/banner.jpg'); - background-repeat: no-repeat; - background-size: rem(1600); - background-position: top center; - background-color: rgba(0, 0, 0, .4); - background-blend-mode: multiply; - } - .seccion1 { - height: (map.get($heights, "seccion1"))+rem; - - background-image: linear-gradient($gris, $gris); - background-position: left rem(112); - background-size: 100% rem(128); - background-repeat: no-repeat; - } - .seccion2 { - height: (map.get($heights, "seccion2"))+rem; - - background-image: url('../images/fondo23.png'); - //background-color: rgb(240, 240, 240); - - .diagonal { - border-bottom: (map.get($heights, 'seccion2'))+rem solid rgba($gris, .5); - border-right: rem(1900) solid transparent; - } - } - .dimensiones { - height: (map.get($heights, "dimensiones"))+rem; - - background-image: url('../images/fondo23.png'); - .fondo-gris { - width: 100%; - height: 100%; - background-color: rgba($gris, .5); - } - } - .construido { - height: (map.get($heights, "construido"))+rem; - - background-image: url('../images/fondo4.jpg'); - } - .corporativos { - height: (map.get($heights, "corporativos"))+rem; - - background-image: url('../images/fondo5.png'); - } - .testimonios { - height: (map.get($heights, "felices"))+rem; - - background-image: linear-gradient($gris, $gris); - background-position: left rem(115); - background-size: 100% rem(118); - background-repeat: no-repeat; - } - .formulario { - height: (map.get($heights, "formulario"))+rem; - background-color: $gris; - clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%); - } -} - -$column1: 67; -$column2: 33; - -$content_height: 0; -$column_height1: 0; -@each $name, $val in $heights { - $content_height: $content_height + $val; - @if $name != 'corporativos' and $name != 'felices' and $name != 'formulario' and $name != 'cabezal' { - $column_height1: $column_height1 + $val; - } -} - -body { - height: ($content_height)+rem; - font-family: Roboto, sans; - color: $gris-texto; -} - -#content { - max-width: rem($full_width) !important; - height: ($content_height)+rem; - - position: relative; - top: (-$content_height)+rem; - - #header { - color: rgb(255, 255, 255); - - width: 100%; - height: (map.get($heights, 'cabezal'))+rem; - - .ui.menu { - border: none !important; - background: none !important; - background-color: rgba(100, 100, 100, .3) !important; - box-shadow: none !important; - margin: 0 !important; - - .dropdown .menu { - /*background: none !important; - border: none !important; - box-shadow: none !important;*/ - color: rgb(0, 0, 0); - font-size: 1rem; - .item { - padding: 1rem !important; - } - } - - .item { - color: inherit !important; - font-size: 2rem; - - padding: rem(20) !important; - - .shopping.cart div { - position: relative; - color: rgb(0, 0, 0); - display: inline-block; - top: -2.6rem; - left: 0.2rem; - font-size: 1rem; - font-family: Roboto, sans; - } - } - } - - .logo { - padding: 0 !important; - margin: 0 !important; - - img { - width: 50%; - max-width: rem(1030); - } - .frase1 { - font-size: 1.5rem; - } - .frase2 { - font-size: 1rem; - } - } - } - - &>.column { - display: inline-block; - float: left; - - padding-left: 1rem !important; - padding-right: 1rem !important; - - &::after { - clear: both; - } - } - &>.column1 { - width: percentage($column1/100); - - - #seccion1 { - height: (map.get($heights, "seccion1"))+rem; - width: 100%; - - .image-container { - display: flex; - justify-content: space-between; - height: rem(112+128); - - img { - height: rem(155); - width: rem(188); - margin-top: rem(85); - } - } - .paragraph { - padding-top: rem(28); - line-height: rem(14); - text-align: justify; - - .header { - margin-bottom: 1rem; - font-size: rem(22); - } - } - } - - #seccion2 { - height: (map.get($heights, "seccion2"))+rem; - - &>.column { - display: inline-block; - float: left; - width: 50%; - - &::after { - clear: both; - } - } - .column1 { - margin-top: rem(80); - img { - width: rem(317); - height: rem(317); - } - } - .column2 { - margin-top: rem(114); - .row:first-child { - background-color: #00427b; - color: rgb(256, 256, 256); - height: rem(180); - width: rem(380); - padding: 2rem; - margin-left: -3rem; - overflow: hidden; - - .header { - font-weight: bold; - font-size: rem(16); - margin-bottom: 1rem; - } - - ul { - list-style: disc inside; - font-size: font-size(10); - } - } - .row:last-child { - margin-top: rem(18); - - display: flex; - justify-content: space-between; - - img { - width: rem(70); - height: rem(85); - } - } - } - } - - #dimensiones { - height: (map.get($heights, "dimensiones"))+rem; - - .header { - padding: rem(37) 0 !important; - .bigger { - font-size: rem(16); - } - } - - .images { - display: flex; - - .column { - float: left; - - &>img { - width: rem(313); - height: rem(235); - } - - div { - width: rem(313); - margin-top: rem(25); - } - } - } - } - - #construido { - height: (map.get($heights, "construido"))+rem; - padding-top: rem(23) !important; - - .header { - font-size: font_size(22); - padding: rem(10) rem(43); - background-color: rgba(255, 255, 255, .6); - } - } - } - &>.column2 { - width: percentage($column2/100); - height: ($column_height1)+rem; - - .sticky { - height: rem(265); - width: rem(310); - margin: auto; - - .row:first-child { - height: rem(170); - margin-top: rem(80); - - .column { - display: inline-block; - float: left; - - &::after { - clear: both; - } - } - .column1 { - vertical-align: bottom; - padding-top: rem(20); - width: rem(310*2/3); - - .linea { - margin-bottom: rem(10); - } - - .titulo { - font-size: font_size(25); - } - .precio { - font-size: font_size(16); - } - font-size: font_size(14); - - @include colors; - .input { - width: 4.5rem; - border: thin solid rgb(0, 0, 0); - text-align: center; - padding: .5rem 0.05rem; - font-size: font_size(10); - - button { - background: none; - border: none; - width: 1rem; - margin: 0; - padding: 0; - cursor: pointer; - font-weight: bold; - } - input { - width: 2rem; - background: none; - margin: 0; - border: 0; - padding: 0; - text-align: center; - } - } - } - .column2 { - width: rem(310/3); - - img { - width: rem(110); - height: rem(160); - } - } - } - .row:last-child { - .button { - border-radius: 0 !important; - width: 100%; - } - } - } - } - - #corporativos { - width: 100%; - height: (map.get($heights, "corporativos"))+rem; - - margin-top: ($column_height1)+rem !important; - - &>.column { - display: inline-block; - float: left; - - padding-left: 1rem !important; - padding-right: 1rem !important; - - &::after { - clear: both; - } - } - .column1 { - width: percentage(67/100); - - &>.header { - margin-top: rem(67); - margin-bottom: rem(37); - .bigger { - font-size: rem(26); - } - } - .opciones { - display: flex; - justify-content: space-around; - - .opcion { - display: inline-block; - - .img-grande { - display: inline-block; - padding-right: rem(12); - img { - width: rem(135); - height: rem(200); - } - } - .descripcion { - display: inline-block; - vertical-align: top; - height: rem(200); - padding-top: rem(20); - - .content { - display: block; - .header { - font-size: font_size(14); - margin-bottom: rem(10); - } - - ul { - list-style: disc inside; - } - } - .images { - margin-top: rem(34); - img { - width: rem(70); - height: rem(85); - } - } - } - } - } - } - .column2 { - width: percentage(33/100); - height: 100%; - - .header { - margin-top: rem(46); - margin-bottom: rem(24); - font-size: rem(26); - } - - form { - @include colors; - - .row { - margin-bottom: rem(9); - } - .colores.linea { - margin-bottom: rem(25-9); - } - .input.cantidad { - width: 4.5rem; - border: thin solid rgb(0, 0, 0); - text-align: center; - padding: .5rem 0.05rem; - font-size: font_size(10); - - button { - background: none; - border: none; - width: 1rem; - margin: 0; - padding: 0; - cursor: pointer; - } - input { - width: 2rem; - background: none; - margin: 0; - border: 0; - padding: 0; - text-align: center; - } - } - .input [type="file"] { - display: none; - } - .input .file { - display: inline-block; - height: rem(20*12/10); - width: rem(150); - padding-top: rem(3); - background-color: #cccccb; - border: thin solid #333; - font-size: font_size(10); - text-align: center; - cursor: pointer; - } - .input [type="text"] { - height: rem(18); - background-color: rgba(255, 255, 255); - border: none !important; - border-radius: 0 !important; - } - textarea { - height: rem(72); - background-color: rgba(255, 255, 255); - border: none !important; - border-radius: 0 !important; - margin-bottom: rem(25-9); - } - .button { - width: 100%; - background-color: #666667; - color: white; - border: none !important; - border-radius: 0 !important; - } - } - } - } - - #felices { - height: (map.get($heights, "felices"))+rem; - - padding: 0 1rem !important; - padding-top: rem(60) !important; - - .header { - //margin-top: rem(60); - font-size: font_size(22); - } - .testimonios { - margin-top: rem(25); - display: flex; - justify-content: space-between; - text-align: center; - - .testimonio { - height: rem(80); - color: #666667; - margin-top: rem(20); - width: percentage(30/100); - text-align: center; - } - } - .nav { - display: block; - text-align: center; - color: #666667; - } - } - - #formulario { - height: (map.get($heights, "formulario"))+rem; - - padding: 0 1rem !important; - - .whatsapp-link { - color: inherit; - } - &>.column { - float: left; - - padding-left: 1rem !important; - padding-right: 1rem !important; - - &::after { - clear: both; - } - } - &>.flotante { - position: absolute; - top: rem(183); - margin: auto; - left: 40%; - width: rem($full_width/5); - text-align: center; - - &>.content { - width: rem(130); - margin: auto; - left: -50%; - - .item { - display: block; - padding: rem(5) 0; - } - div.whatsapp { - height: rem(30); - background-color: #1a9947; - color: #fff; - font-size: rem(10); - - &>i { - position: relative; - font-size: font_size(16); - top: rem(3); - } - } - .rrss { - display: flex; - justify-content: space-between; - font-size: rem(20); - - i.inverted.grey { - color: white !important; - } - } - } - } - &>.column1 { - width: percentage($column1/100); - margin-top: rem(27); - - &>img { - width: rem(540); - height: rem(350); - float: left; - } - } - &>.column2 { - width: percentage($column2/100); - - .header { - margin-top: rem(20); - text-align: center; - font-size: font_size(22); - - .whatsapp-link { - display: inline-block; - width: rem(25); - height: rem(25); - font-size: font_size(25); - } - } - - .paragraph { - padding-top: 1rem; - padding-bottom: rem(25); - justify-content: center; - } - - form { - input { - border-radius: 0 !important; - height: rem(18); - margin-bottom: rem(9); - background-color: rgba(255, 255, 255, .5); - font-size: font_size(10); - &::placeholder { - color: $gris-texto; - } - } - textarea { - border-radius: 0 !important; - height: rem(72); - margin-bottom: rem(25); - background-color: rgba(255, 255, 255, .5); - font-size: font_size(10); - &::placeholder { - color: $gris-texto; - } - } - .button { - width: 100%; - border-radius: 0 !important; - background-color: white; - color: $gris-texto; - } - } - } - } - - section { - background: none; - - &.segment>.container { - height: 100%; - - &>.column1 { - display: inline-block; - width: ($column1)+rem; - } - &>.column2 { - display: inline-block; - width: ($column2)+rem; - } - } - } - .simple.segment { - border: none !important; - border-radius: 0 !important; - box-shadow: none !important; - margin: 0 !important; - padding: 0 !important; - - &>.ui.grid { - height: 100%; - } - } - .fondo-blanco { - background-color: rgba(255, 255, 255, .5); - } -} - -#subir { - width: 100%; - - .container { - text-align: right; - padding: 0 1rem !important; - - i.icons { - cursor: pointer; - } - } - +@media screen and (min-width: 800px) { + @import 'pc'; } diff --git a/gulpfile.js b/gulpfile.js index 4f152cc..9bcd21b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -44,6 +44,6 @@ function html(done) { .pipe(dest(path.join(output_dir, '../'))) } -watch(source_dir, parallel(js, css, html)) +exports.watch = watch(source_dir, parallel(js, css, html)) exports.default = parallel(js, css, html) diff --git a/public/assets/scripts/main.js b/public/assets/scripts/main.js index e47a7b5..ab1700c 100644 --- a/public/assets/scripts/main.js +++ b/public/assets/scripts/main.js @@ -1,41 +1,3 @@ -var proportionals = [] -var widths = [] -var heights = [] -var changeables = [] -function register_resizeables() { - proportionals.push($('img')) - //widths.push() - heights.push($('#backgrounds div')) - changeables.push($('.sticky')) -} - -const vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0) -const vh = Math.max(document.documentElement.clientHeight || 0, window.innerHeight || 0) - -function mod_height(elem, p) { - elem.height = (elem.height * p) -} -function mod_width(elem, p) { - elem.width = (elem.width * p) -} -function mod_dim(elem, p) { - mod_width(elem, p) - mod_height(elem, p) -} -function resize() { - let p = 400 / 1080 - - $.each(proportionals, (i, el) => { - mod_dim(el, p) - }) - $.each(widths, (i, el) => { - mod_width(el, p) - }) - $.each(heights, (i, el) => { - mod_height(el, p) - }) -} - class Amount { constructor(elem) { this.elem = elem @@ -152,10 +114,8 @@ class Colors { } let smtp = { - Host: 'smtp.google.com', - Username: 'rsalinas85@gmail.com', - Password: 'salinas1234', - From: 'ventas@3dstand.cl' + SecureToken: '4adcdc1f-6b6e-4e60-ab72-20da4c329b09', + From: 'contacto@3dstand.cl' } let sticky_form = { @@ -197,9 +157,7 @@ let cotiza_form = { this.elem.find('[name="mensaje"]').val() ] let content = { - Host: smtp.Host, - Username: smtp.Username, - Password: smtp.Password, + SecureToken: smtp.SecureToken, To: email, From: smtp.From, Subject: 'Cotizacion - ' + (new Date()).toLocaleString('es-CL', {timezone: "UTC-3"}), @@ -211,8 +169,7 @@ let cotiza_form = { } ] } - console.debug(email) - //Email.send() + Email.send(content) } } let conversemos_form = { @@ -233,14 +190,13 @@ let conversemos_form = { this.elem.find('[name="mensaje"]').val() ] let content = { - Host: smtp.Host, - Username: smtp.Username, - Password: smtp.Password, + SecureToken: smtp.SecureToken, From: smtp.From, To: email, Subject: 'Contacto ' + (new Date()).toLocaleString('es-CL', {timezone: "UTC-3"}), Body: body.join('
') } + Email.send(content) } } @@ -295,11 +251,6 @@ let testimonios = { } $(document).ready(function() { - register_resizeables() - - if (vw < 1080) { - resize() - } $('.menu.sticky').sticky() $('.column2 .sticky').sticky({ @@ -309,8 +260,6 @@ $(document).ready(function() { $('.shopping.cart').innerText = 0 - window.onresize = resize; - let sticky_amount = new Amount($('.sticky .input input[name="cantidad"]')) let sticky_color = new Colors($('.sticky .colores'), true) sticky_form.setup() diff --git a/public/assets/scripts/main.min.js b/public/assets/scripts/main.min.js index 7c391ac..4266ad0 100644 --- a/public/assets/scripts/main.min.js +++ b/public/assets/scripts/main.min.js @@ -1,2 +1,2 @@ -"use strict";function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,t){for(var i=0;i'),"minus"==e&&this[e].html('')}},{key:"disable_button",value:function(e){this[e].addClass("disabled"),this[e].html("")}},{key:"check_limits",value:function(){this.enable_button("plus"),this.enable_button("minus"),this.n>this.max&&(this.n=this.max),this.n==this.max&&this.disable_button("plus"),this.n<0&&(this.n=0),0==this.n&&this.disable_button("minus")}},{key:"increment",value:function(){this.n+=1}},{key:"decrement",value:function(){--this.n}},{key:"print",value:function(){this.check_limits(),this.elem.val(this.n)}},{key:"value",get:function(){return this.n}}]),t}(),Colors=function(){function i(e){var t=1"),t.get("archivo");console.debug(e)}},conversemos_form={elem:$("#contacto"),setup:function(){var t=this;this.elem.submit(function(e){return e.preventDefault(),t.submit(),!1})},submit:function(){var e=this.elem.find('[name="email"]').val(),t=["Nombre: "+this.elem.find('[name="nombre"]').val(),"E-mail: "+e,"",this.elem.find('[name="mensaje"]').val()];smtp.Host,smtp.Username,smtp.Password,smtp.From,(new Date).toLocaleString("es-CL",{timezone:"UTC-3"}),t.join("
")}},testimonios={testimonios:["Este soporte que compré en @Stand-cl me cambió la vida, me sirve para el teléfono y el ipad, y ya no tengo que andar acomodando los aparatos en cualquier parte para las videollamadas","Siiii todo mi gusto.. me encantó lo completo que es. Gracias","Está super cool se ve de buena calidad","Llego el mío, y es excelente, estoy feliz con mi compra","Hola!!Me llegó el pedido, Muchas gracias muy bello. Me salvaste la vida","Perfecto el producto, funciona impecable, muchas gracias","Están bacanes! muchísimas gracias. Le regalé a mis viejos y lo aman","Hola! Quería decirte que me encantaron los soportes, Muy útiles!","Compré 3 y olvidé decirte que los encontré geniales! Me encantaron","Diseño simple y funcional, minimalista y excelente precio, despacho súper Rápido.. gracias!"],elem:$("#felices .testimonios"),page:0,setup:function(){this.draw()},draw:function(){var i=this,n=3*this.page;this.elem.find(".testimonio").each(function(e,t){n>=i.testimonios.length?$(t).html(""):($(t).html(i.testimonios[n]),n+=1)}),this.draw_nav()},draw_nav:function(){var e=Math.ceil(this.testimonios.length/3),t=this.page,i=this.elem.parent().find(".nav"),n=this;i.html("");for(var s=0;s").attr("class","small circle outline icon").css("cursor","pointer").attr("data-page",s);s==t&&a.removeClass("outline"),a.click(function(e){n.page=parseInt($(this).attr("data-page")),n.draw()}),i.append(a)}}};$(document).ready(function(){register_resizeables(),vw<1080&&resize(),$(".menu.sticky").sticky(),$(".column2 .sticky").sticky({context:"#column"}),$("#subir").sticky(),$(".shopping.cart").innerText=0,window.onresize=resize;new Amount($('.sticky .input input[name="cantidad"]')),new Colors($(".sticky .colores"),!0);sticky_form.setup();new Amount($('#corporativos .input input[name="cantidad"]')),new Colors($("#corporativos .colores"));cotiza_form.setup(),conversemos_form.setup(),testimonios.setup()}); +"use strict";function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,t){for(var i=0;i'),"minus"==e&&this[e].html('')}},{key:"disable_button",value:function(e){this[e].addClass("disabled"),this[e].html("")}},{key:"check_limits",value:function(){this.enable_button("plus"),this.enable_button("minus"),this.n>this.max&&(this.n=this.max),this.n==this.max&&this.disable_button("plus"),this.n<0&&(this.n=0),0==this.n&&this.disable_button("minus")}},{key:"increment",value:function(){this.n+=1}},{key:"decrement",value:function(){--this.n}},{key:"print",value:function(){this.check_limits(),this.elem.val(this.n)}},{key:"value",get:function(){return this.n}}]),t}(),Colors=function(){function i(e){var t=1"),Attachments:[{name:"Logo",data:t.get("archivo")}]};Email.send(t)}},conversemos_form={elem:$("#contacto"),setup:function(){var t=this;this.elem.submit(function(e){return e.preventDefault(),t.submit(),!1})},submit:function(){var e=this.elem.find('[name="email"]').val(),t=["Nombre: "+this.elem.find('[name="nombre"]').val(),"E-mail: "+e,"",this.elem.find('[name="mensaje"]').val()],t={SecureToken:smtp.SecureToken,From:smtp.From,To:e,Subject:"Contacto "+(new Date).toLocaleString("es-CL",{timezone:"UTC-3"}),Body:t.join("
")};Email.send(t)}},testimonios={testimonios:["Este soporte que compré en @Stand-cl me cambió la vida, me sirve para el teléfono y el ipad, y ya no tengo que andar acomodando los aparatos en cualquier parte para las videollamadas","Siiii todo mi gusto.. me encantó lo completo que es. Gracias","Está super cool se ve de buena calidad","Llego el mío, y es excelente, estoy feliz con mi compra","Hola!!Me llegó el pedido, Muchas gracias muy bello. Me salvaste la vida","Perfecto el producto, funciona impecable, muchas gracias","Están bacanes! muchísimas gracias. Le regalé a mis viejos y lo aman","Hola! Quería decirte que me encantaron los soportes, Muy útiles!","Compré 3 y olvidé decirte que los encontré geniales! Me encantaron","Diseño simple y funcional, minimalista y excelente precio, despacho súper Rápido.. gracias!"],elem:$("#felices .testimonios"),page:0,setup:function(){this.draw()},draw:function(){var i=this,n=3*this.page;this.elem.find(".testimonio").each(function(e,t){n>=i.testimonios.length?$(t).html(""):($(t).html(i.testimonios[n]),n+=1)}),this.draw_nav()},draw_nav:function(){var e=Math.ceil(this.testimonios.length/3),t=this.page,i=this.elem.parent().find(".nav"),n=this;i.html("");for(var s=0;s").attr("class","small circle outline icon").css("cursor","pointer").attr("data-page",s);s==t&&a.removeClass("outline"),a.click(function(e){n.page=parseInt($(this).attr("data-page")),n.draw()}),i.append(a)}}};$(document).ready(function(){$(".menu.sticky").sticky(),$(".column2 .sticky").sticky({context:"#column"}),$("#subir").sticky(),$(".shopping.cart").innerText=0;new Amount($('.sticky .input input[name="cantidad"]')),new Colors($(".sticky .colores"),!0);sticky_form.setup();new Amount($('#corporativos .input input[name="cantidad"]')),new Colors($("#corporativos .colores"));cotiza_form.setup(),conversemos_form.setup(),testimonios.setup()}); //# sourceMappingURL=maps/main.min.js.map diff --git a/public/assets/scripts/maps/main.min.js.map b/public/assets/scripts/maps/main.min.js.map index 81b61f1..7c60c8f 100644 --- a/public/assets/scripts/maps/main.min.js.map +++ b/public/assets/scripts/maps/main.min.js.map @@ -1 +1 @@ -{"version":3,"sources":["main.js"],"names":["proportionals","widths","heights","changeables","register_resizeables","push","$","max","document","documentElement","clientWidth","window","innerWidth","vh","Math","clientHeight","innerHeight","elem","p","height","width","mod_width","mod_height","each","el","i","mod_dim","_classCallCheck","this","Amount","parent","find","n","_this","val","click","e","increment","print","minus","plus","setup","change","parseInt","name","removeClass","html","decrement","enable_button","disable_button","check_limits","Colors","changing","arguments","length","undefined","color","white","black","blue","green","yellow","orange","red","picked","input","_this2","attr","split","change_color","_this3","default_color_format","addClass","smtp","Host","Username","Password","From","_this4","submit","console","debug","cotiza_form","_this5","preventDefault","file","email","data","FormData","body","Date","toLocaleString","timezone","conversemos_form","_this6","join","testimonios","page","content","To","Subject","Body","Attachments","draw_nav","ceil","k","nav","N","circle","css","tests","draw","append","sticky","innerText","onresize","resize","sticky_form"],"mappings":"mZAAA,IAAIA,cAAgB,GAChBC,OAAS,GACTC,QAAU,GACVC,YAAc,GAClB,SAASC,uBACPJ,cAAcK,KAAKC,EAAE,QAErBJ,QAAQG,KAAKC,EAAE,qBAPjBH,YAAIH,KAAaM,EAAG,YAGpB,IAAIH,GAAAA,KAAWI,IAAfC,SAAAC,gBAAAC,aAAA,EAAAC,OAAAC,YAAA,GASMC,GAAKC,KAAKP,IAAIC,SAASC,gBAAgBM,cAAgB,EAAGJ,OAAOK,aAAe,GAPpFhB,SAAAA,WAAAiB,EAAqBC,GAUrBD,EAAKE,OAAUF,EAAKE,OAASD,EAP7Bf,SAAAA,UAAiBG,EAAEY,GACpBD,EAAAG,MAAAH,EAAAG,MAAAF,EAED,SAAWJ,QAAAG,EAAST,GACpBa,UAAWP,EAASN,GAUlBc,WAAWL,EAAMC,GAPjBD,SAAKE,SACN,IAAAD,EAAA,IAAA,KACDZ,EAAAiB,KAASF,cAAT,SAAyBH,EAAGM,GAC1BP,QAAAO,EAAcP,KAYdX,EAAEiB,KAAKtB,OAAQ,SAACwB,EAAGD,GAVrBH,UAASK,EAAQT,KAEfK,EAAAA,KAAAA,QAAU,SAAOJ,EAAjBM,GACDF,WAAAE,EAAAN,K,IAIGK,O,WACAG,SAAAA,EAAOT,GAAPU,gBAAAC,KAAAC,GADFD,KAAAX,KAAAA,EAGEM,KAAKtB,MAAQgB,EAAAa,SAAIN,KAAO,UACxBH,KAAAA,KAASJ,EAATa,SAAAC,KAAA,SADFH,KAAAI,EAAA,EAGET,KAAKrB,QACLoB,KAAAA,IAAWE,I,qDAEd,IAAAS,EAAAL,KAYGA,KAAKX,KAAKiB,IAAI,GAVZL,KAAAA,KAWQM,MAAM,SAACC,GAVnBH,EAAAI,YAAkBJ,EAAAK,UAChBV,KAAKX,MAALkB,MAAA,SAAAC,GACAH,EAAKM,YACLN,EAAKO,UAELZ,KAAKa,KAALC,OAAA,SAAAN,GACAH,EAAK1B,EAAMoC,SAAXV,EAAAhB,KAAAiB,OACDD,EAAAK,UAeCV,KAAKU,U,oCAEOM,GAhBNhB,KAAAgB,GAAAC,YAAA,YAkBM,QAARD,GAjBJhB,KAAKX,GAAKiB,KAAV,6BAEOG,SAALO,GAmBAhB,KAAKgB,GAAME,KAAK,gC,qCAhBPX,GACTP,KAAAgB,GAAKG,SAAL,YAoBFnB,KAAKgB,GAAME,KAAK,M,qCAjBhBlB,KAAAoB,cAAiB,QACfpB,KAAAoB,cAASL,SAqBPf,KAAKI,EAAIJ,KAAKrB,MApBhBqB,KAAAI,EAAKM,KAAL/B,KAEFqB,KAAKU,GAALV,KAAArB,KACDqB,KAAAqB,eAAA,QAwBKrB,KAAKI,EAAI,IAtBbJ,KAAKgB,EAAL,GACY,GAAZhB,KAAIgB,GACFhB,KAAAqB,eAAgB,W,kCAGhBrB,KAAAI,GAAKY,I,oCA4BPhB,KAAKI,I,8BAMLJ,KAAKsB,eACLtB,KAAKX,KAAKiB,IAAIN,KAAKI,K,4BA/BnB,OAAKY,KAALZ,M,KAmCEmB,O,WA7BF,SAAAA,EAAIlC,GAAmB,IAAVmC,EAAU,EAAAC,UAAAC,aAAAC,IAAAF,UAAA,IAAAA,UAAA,GAAA1B,gBAAAC,KAAAuB,GACrBvB,KAAA4B,MAAS,CACVC,MAAA,SA+BCC,MAAO,QA9BTC,KAAI,OACFC,MAAKX,QACNY,OAAA,WAgCCC,OAAQ,UA9BVC,IAAI,QAEHnC,KAAAoC,OAAA,OAgCDpC,KAAKX,KAAOA,EA/BZW,KAAAqC,MAAIhD,EAAJc,KAAiB,uBACfH,KAAAwB,SAAKH,KACNG,IACFxB,KAAAwB,SAAAnC,EAAAa,SAAAA,SAAAC,KAAA,iBAkCCH,KAAKa,Q,qDAhCL,IAAAyB,EAAAtC,KACDA,KAAAX,KAAAc,KAAA,WAAAR,KAAA,SAAAE,EAAAD,GAmCGlB,EAAEkB,GAAIW,MAAM,SAACC,GACX,IAAIoB,EAAQlD,EAAEkB,GAAI2C,KAAK,SAASC,MAAM,KAAK,GAC3CF,EAAKG,aAAab,OAGtB5B,KAAKyC,aAAa,U,2CAEC7C,GAlCnBlB,EAAAkB,GAAAqB,YAAKK,c,mCAENM,GAAA,IAAAc,EAAA1C,KAoCCA,KAAKoC,OAASpC,KAAK4B,MAAMA,GACzB5B,KAAKqC,MAAM/B,IAAIN,KAAKoC,QACpBpC,KAAKX,KAAKc,KAAK,WA5CLR,KAAA,SAAAE,EAAAD,GACV8C,EAAAC,qBAAA/C,KA8CAI,KAAKX,KAAKc,KAAK,IAAMyB,EAAQ,WAAWgB,SAAS,YAC5B,MAAjB5C,KAAKwB,UACPxB,KAAKwB,SAASe,KAAK,MAAO,mBAAqBvC,KAAKoC,OAAS,Y,KAvC7BS,KAAlBrB,CA6ClBsB,KAAM,kBA7C8BC,SAAA,uBA+CpCC,SAAU,cA9CRC,KAAA,qBAGElB,YAHW,CAIXC,KAAAA,EAAAA,gBACAC,MAAAA,WAAQ,IAAAiB,EAAAlD,KACRkC,KAAAA,KAAQiB,OAAA,SAAA3C,GAGV,OAFE2B,EAAAA,iBAPFe,EAAAC,UASKf,KAGLe,OAAK3B,WAgDL4B,QAAQC,MAAM,mBA7CbC,YAAA,CAiDHjE,KAAMX,EAAE,sBAhDNmC,MAAKA,WAAL,IAAA0C,EAAAvD,KACDA,KAAAX,KAAA8D,OAAA,SAAA3C,GAoDG,OAFAA,EAAEgD,iBACFD,EAAKJ,UACE,IAnDHnD,KAAAyD,KAAAzD,KAAAX,KAAAc,KAAA,sBAsDNH,KAAKX,KAAKc,KAAK,SAASI,MAAM,SAACC,GArD/B+C,EAAKlE,KAAKc,QAAK,YAyDjBgD,OAAQ,WAtDF,IAAAO,EAAI1D,KAACyC,KAAAA,KAAab,kBAAlBtB,MACDqD,EAHD,IAAAC,SAAA5D,KAAAX,KAAA,IADFwE,EAAA,CAMA,WAAKpB,KAAapD,KAAAc,KAAlB,mBAAAG,MACD,WAAAoD,EAwDG,aAAe1D,KAAKX,KAAKc,KAAK,qBAAqBG,MACnD,GACA,UAAYN,KAAKX,KAAKc,KAAK,kBAzDNG,MACvB5B,aAAMuC,KAAY5B,KAAAc,KAAlB,qBAAAG,MACDN,KAAAX,KAAAc,KAAA,oBAAAG,OA4DSuC,KAAKC,KA3DKD,KAAAE,SA6DNF,KAAKG,SA3DZX,KAAM/B,MACeX,IAAKmE,MAAAC,eAAW,QAAA,CAAAC,SAAA,UACxCH,EAAKlB,KAAAA,UAGEnB,EAAAA,IAAL,WAkEJ4B,QAAQC,MAAMK,KAIdO,iBAAmB,CAhEvB5E,KAAQX,EAAA,aACNoE,MAAM,WAAA,IAAAoB,EAAAlE,KACN+C,KAAAA,KAAUI,OAAA,SAAA3C,GAFZ,OAGEwC,EAAAA,iBACIkB,EAAEf,UAJR,KASEtC,OAAO,WAAW,IAAA6C,EAAA1D,KAAAX,KAAAc,KAAA,kBAAAG,MAkEZuD,EAAO,CAjEX,WAAUV,KAAO9D,KAAAc,KAAO,mBAAAG,MACtBE,WAAEgD,EAmEF,GAlEAxD,KAAAX,KAAK8D,KAAL,oBAAA7C,OAFFuC,KAAAC,KAHcD,KAAAE,SASRF,KAAAG,SACEK,KAARJ,MAVJ,IAAAa,MAAAC,eAAA,QAAA,CAAAC,SAAA,UAaIV,EAAWa,KAAG,YAGdC,YAAUjB,CACR3C,YAAEgD,CAuEJ,yLAtEE,+DAwEF,yCAvEE,0DACD,0EACD,2DACA,sEACE,mEACD,qEAXa,+FAcdnE,KAAIqE,EAAAA,yBACJW,KAAIV,EACJ9C,MAAIgD,WASJ7D,KAAIsE,QAEFvB,KAAAA,WAAUF,IAAAA,EAAAA,KACVG,EAAeA,EAAfA,KAAUH,KACV0B,KAAElF,KAAEqE,KAJQ,eAAA/D,KAAA,SAAAE,EAAAD,GAKRQ,GAAEyC,EAAKI,YALCvB,OAMZ8C,EAAAA,GAAOtD,KAAE,KACTuD,EAAAA,GAAMZ,KAAKM,EAAKC,YAPJhE,IAQZsE,GAAAA,KAGIf,KAAAA,YAXQgB,SAAd,WAeAvB,IAAAA,EAAQC,KAARuB,KAAclB,KACdU,YAAA1C,OAAA,GACDmD,EAAA7E,KAAAqE,KA1CHS,EAAA9E,KAAAX,KAAAa,SAAAC,KAAA,QA4CI8D,EAAAA,KACF5E,EAAMX,KAAE,IACRmC,IAAO,IAAAhB,EAAA,EAAAA,EAAAkF,EAAWlF,IAAA,CAAA,IAAAmF,EAAAtG,EAAA,WAAA6D,KAAA,QAAA,6BAAA0C,IAAA,SAAA,WAAA1C,KAAA,YAAA1C,GAiEVA,GAAKgF,GAhEXG,EAAU7B,YAAO,WAmEf6B,EAAOzE,MAAM,SAASC,GAjEtB0E,EAAK/B,KAALpC,SAAArC,EAAAsB,MAAAuC,KAAA,cAmEE2C,EAAMC,SArEVL,EAAAM,OAAAJ,MAcAtG,EAAAE,UAAI0F,MAAU,WACZxB,uBAEAE,GAAAA,MACAC,SAE6De,EAAAA,gBAAUqB,SAAX3G,EAAA,oBANhD2G,OAAA,CAOZZ,QAAMZ,YAETnF,EAAA,UAAA2G,SAGH3G,EAAI0F,kBAAckB,UAAA,EAahBjG,OAAOkG,SAACC,OAED,IAAWvF,OAAAvB,EAAA,0CAChB,IAAA6C,OAAA7C,EAAA,qBAAA,GACD+G,YAjBe5E,QAkBV,IAAWZ,OAAAvB,EAAA,gDAAA,IAAA6C,OAAA7C,EAAA,2BAsDjB4E,YAAYzC,QArDVoD,iBAAaI,QACbD,YAAUjE","file":"../main.min.js","sourcesContent":["var proportionals = []\r\nvar widths = []\r\nvar heights = []\r\nvar changeables = []\r\nfunction register_resizeables() {\r\n proportionals.push($('img'))\r\n //widths.push()\r\n heights.push($('#backgrounds div'))\r\n changeables.push($('.sticky'))\r\n}\r\n\r\nconst vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0)\r\nconst vh = Math.max(document.documentElement.clientHeight || 0, window.innerHeight || 0)\r\n\r\nfunction mod_height(elem, p) {\r\n elem.height = (elem.height * p)\r\n}\r\nfunction mod_width(elem, p) {\r\n elem.width = (elem.width * p)\r\n}\r\nfunction mod_dim(elem, p) {\r\n mod_width(elem, p)\r\n mod_height(elem, p)\r\n}\r\nfunction resize() {\r\n let p = 400 / 1080\r\n\r\n $.each(proportionals, (i, el) => {\r\n mod_dim(el, p)\r\n })\r\n $.each(widths, (i, el) => {\r\n mod_width(el, p)\r\n })\r\n $.each(heights, (i, el) => {\r\n mod_height(el, p)\r\n })\r\n}\r\n\r\nclass Amount {\r\n constructor(elem) {\r\n this.elem = elem\r\n this.minus = elem.parent().find('.minus')\r\n this.plus = elem.parent().find('.plus')\r\n this.n = 0\r\n this.setup()\r\n this.max = 999\r\n }\r\n setup() {\r\n this.elem.val(0)\r\n this.plus.click((e) => {\r\n this.increment()\r\n this.print()\r\n })\r\n this.minus.click((e) => {\r\n this.decrement()\r\n this.print()\r\n })\r\n this.elem.change((e) => {\r\n this.n = parseInt(this.elem.val())\r\n this.print()\r\n })\r\n this.print()\r\n }\r\n enable_button(name) {\r\n this[name].removeClass('disabled')\r\n if (name == 'plus') {\r\n this[name].html('')\r\n }\r\n if (name == 'minus') {\r\n this[name].html('')\r\n }\r\n }\r\n disable_button(name) {\r\n this[name].addClass('disabled')\r\n this[name].html('')\r\n }\r\n check_limits() {\r\n this.enable_button('plus')\r\n this.enable_button('minus')\r\n if (this.n > this.max) {\r\n this.n = this.max\r\n }\r\n if (this.n == this.max) {\r\n this.disable_button('plus')\r\n }\r\n\r\n if (this.n < 0) {\r\n this.n = 0\r\n }\r\n if (this.n == 0) {\r\n this.disable_button('minus')\r\n }\r\n }\r\n increment() {\r\n this.n += 1\r\n }\r\n decrement() {\r\n this.n -= 1\r\n }\r\n get value() {\r\n return this.n\r\n }\r\n print() {\r\n this.check_limits()\r\n this.elem.val(this.n)\r\n }\r\n}\r\n\r\nclass Colors {\r\n constructor(elem, changing = false) {\r\n this.color = {\r\n white: 'blanco',\r\n black: 'negro',\r\n blue: 'azul',\r\n green: 'verde',\r\n yellow: 'amarillo',\r\n orange: 'naranjo',\r\n red: 'rojo'\r\n }\r\n this.picked = 'blue'\r\n this.elem = elem\r\n this.input = elem.find('input[name=\"color\"]')\r\n this.changing = null\r\n if (changing) {\r\n this.changing = elem.parent().parent().find('.column2 img')\r\n }\r\n this.setup()\r\n }\r\n setup() {\r\n this.elem.find('.circle').each((i, el) => {\r\n $(el).click((e) => {\r\n let color = $(el).attr('class').split(' ')[0]\r\n this.change_color(color)\r\n })\r\n })\r\n this.change_color('blue')\r\n }\r\n default_color_format(el) {\r\n $(el).removeClass('selected')\r\n }\r\n change_color(color) {\r\n this.picked = this.color[color]\r\n this.input.val(this.picked)\r\n this.elem.find('.circle').each((i, el) => {\r\n this.default_color_format(el)\r\n })\r\n this.elem.find('.' + color + '.circle').addClass('selected')\r\n if (this.changing != null) {\r\n this.changing.attr('src', './assets/images/' + this.picked + '.png')\r\n }\r\n }\r\n}\r\n\r\nlet smtp = {\r\n Host: 'smtp.google.com',\r\n Username: 'rsalinas85@gmail.com',\r\n Password: 'salinas1234',\r\n From: 'ventas@3dstand.cl'\r\n}\r\n\r\nlet sticky_form = {\r\n elem: $('.sticky form'),\r\n setup: function() {\r\n this.elem.submit((e) => {\r\n e.preventDefault()\r\n this.submit()\r\n return false\r\n })\r\n },\r\n submit: function() {\r\n console.debug('submit sticky')\r\n }\r\n}\r\nlet cotiza_form = {\r\n elem: $('#corporativos form'),\r\n setup: function() {\r\n this.elem.submit((e) => {\r\n e.preventDefault()\r\n this.submit()\r\n return false\r\n })\r\n this.file = this.elem.find('input[type=\"file\"]')\r\n this.elem.find('.file').click((e) => {\r\n this.file.trigger('click')\r\n })\r\n },\r\n submit: function() {\r\n let email = this.elem.find('[name=\"email\"]').val()\r\n let data = new FormData(this.elem[0])\r\n let body = [\r\n 'Nombre: ' + this.elem.find('[name=\"nombre\"]').val(),\r\n 'E-mail: ' + email,\r\n 'Teléfono: ' + this.elem.find('[name=\"telefono\"]').val(),\r\n '',\r\n 'Color: ' + this.elem.find('[name=\"color\"]').val(),\r\n 'Cantidad: ' + this.elem.find('[name=\"cantidad\"]').val(),\r\n this.elem.find('[name=\"mensaje\"]').val()\r\n ]\r\n let content = {\r\n Host: smtp.Host,\r\n Username: smtp.Username,\r\n Password: smtp.Password,\r\n To: email,\r\n From: smtp.From,\r\n Subject: 'Cotizacion - ' + (new Date()).toLocaleString('es-CL', {timezone: \"UTC-3\"}),\r\n Body: body.join('
'),\r\n Attachments: [\r\n {\r\n name: \"Logo\",\r\n data: data.get('archivo')\r\n }\r\n ]\r\n }\r\n console.debug(email)\r\n //Email.send()\r\n }\r\n}\r\nlet conversemos_form = {\r\n elem: $('#contacto'),\r\n setup: function() {\r\n this.elem.submit((e) => {\r\n e.preventDefault()\r\n this.submit()\r\n return false\r\n })\r\n },\r\n submit: function() {\r\n let email = this.elem.find('[name=\"email\"]').val()\r\n let body = [\r\n 'Nombre: ' + this.elem.find('[name=\"nombre\"]').val(),\r\n 'E-mail: ' + email,\r\n '',\r\n this.elem.find('[name=\"mensaje\"]').val()\r\n ]\r\n let content = {\r\n Host: smtp.Host,\r\n Username: smtp.Username,\r\n Password: smtp.Password,\r\n From: smtp.From,\r\n To: email,\r\n Subject: 'Contacto ' + (new Date()).toLocaleString('es-CL', {timezone: \"UTC-3\"}),\r\n Body: body.join('
')\r\n }\r\n }\r\n}\r\n\r\nlet testimonios = {\r\n testimonios: [\r\n \"Este soporte que compré en @Stand-cl me cambió la vida, me sirve para el teléfono y el ipad, y ya no tengo que andar acomodando los aparatos en cualquier parte para las videollamadas\",\r\n \"Siiii todo mi gusto.. me encantó lo completo que es. Gracias\",\r\n \"Está super cool se ve de buena calidad\",\r\n \"Llego el mío, y es excelente, estoy feliz con mi compra\",\r\n \"Hola!!Me llegó el pedido, Muchas gracias muy bello. Me salvaste la vida\",\r\n \"Perfecto el producto, funciona impecable, muchas gracias\",\r\n \"Están bacanes! muchísimas gracias. Le regalé a mis viejos y lo aman\",\r\n \"Hola! Quería decirte que me encantaron los soportes, Muy útiles!\",\r\n \"Compré 3 y olvidé decirte que los encontré geniales! Me encantaron\",\r\n \"Diseño simple y funcional, minimalista y excelente precio, despacho súper Rápido.. gracias!\"\r\n ],\r\n elem: $('#felices .testimonios'),\r\n page: 0,\r\n setup: function() {\r\n this.draw()\r\n },\r\n draw: function() {\r\n var n = this.page * 3\r\n this.elem.find('.testimonio').each((i, el) => {\r\n if (n >= this.testimonios.length) {\r\n $(el).html('')\r\n return\r\n }\r\n $(el).html(this.testimonios[n])\r\n n += 1\r\n })\r\n this.draw_nav()\r\n },\r\n draw_nav: function() {\r\n let N = Math.ceil(this.testimonios.length / 3)\r\n let k = this.page\r\n let nav = this.elem.parent().find('.nav')\r\n let tests = this\r\n nav.html('')\r\n for (var i = 0; i < N; i ++) {\r\n var circle = $('').attr('class', 'small circle outline icon').css('cursor', 'pointer').attr('data-page', i)\r\n if (i == k) {\r\n circle.removeClass('outline')\r\n }\r\n circle.click(function(e) {\r\n tests.page = parseInt($(this).attr('data-page'))\r\n tests.draw()\r\n })\r\n nav.append(circle)\r\n }\r\n }\r\n}\r\n\r\n$(document).ready(function() {\r\n register_resizeables()\r\n\r\n if (vw < 1080) {\r\n resize()\r\n }\r\n\r\n $('.menu.sticky').sticky()\r\n $('.column2 .sticky').sticky({\r\n context: '#column'\r\n })\r\n $('#subir').sticky()\r\n\r\n $('.shopping.cart').innerText = 0\r\n\r\n window.onresize = resize;\r\n\r\n let sticky_amount = new Amount($('.sticky .input input[name=\"cantidad\"]'))\r\n let sticky_color = new Colors($('.sticky .colores'), true)\r\n sticky_form.setup()\r\n let cotiza_amount = new Amount($('#corporativos .input input[name=\"cantidad\"]'))\r\n let cotiza_color = new Colors($('#corporativos .colores'))\r\n cotiza_form.setup()\r\n conversemos_form.setup()\r\n testimonios.setup()\r\n})\r\n"]} \ No newline at end of file +{"version":3,"sources":["main.js"],"names":["Amount","elem","_classCallCheck","this","minus","parent","find","plus","n","setup","max","_this","val","click","e","change","parseInt","print","name","removeClass","increment","html","addClass","enable_button","disable_button","check_limits","Colors","changing","arguments","length","undefined","color","white","black","blue","green","yellow","orange","red","picked","input","_this2","each","i","el","$","attr","split","change_color","_this3","default_color_format","smtp","SecureToken","_this4","submit","preventDefault","console","cotiza_form","_this5","file","email","data","FormData","body","content","To","From","Subject","Date","toLocaleString","timezone","Body","Attachments","get","Email","send","conversemos_form","_this6","debug","join","testimonios","page","_this7","draw_nav","N","Math","ceil","k","circle","css","tests","draw","nav","append","sticky","innerText"],"mappings":"uZAAMA,O,WACJ,SAAAA,EAAYC,GAAMC,gBAAAC,KAAAH,GAChBG,KAAKF,KAAOA,EACZE,KAAKC,MAAQH,EAAKI,SAASC,KAAK,UAChCH,KAAKI,KAAON,EAAKI,SAASC,KAAK,SAC/BH,KAAKK,EAAI,EACTL,KAAKM,QACLN,KAAKO,IAAM,I,qDANb,IAAAC,EAAAR,KAAkBA,KAAAF,KAAAW,IAAA,GAUhBT,KAAKI,KAAKM,MAAM,SAACC,GATjBH,EAAKV,YACLU,EAAKP,UAELD,KAAKK,MAALK,MAAA,SAAAC,GACAH,EAAKF,YACLE,EAAKD,UAYLP,KAAKF,KAAKc,OAAO,SAACD,GAChBH,EAAKH,EAAIQ,SAASL,EAAKV,KAAKW,OAC5BD,EAAKM,UAZDd,KAAAc,U,oCACIL,GACVT,KAAAe,GAAAC,YAAgB,YACTC,QAALF,GAgBAf,KAAKe,GAAMG,KAAK,6BAjBlB,SAAAH,GAIAf,KAAKC,GAAMS,KAAX,gC,qCAEOI,GACNd,KAHDe,GAAAI,SAAA,YAIAnB,KAAAe,GAAAG,KAAUN,M,qCAERZ,KAAAoB,cAAA,QACDpB,KAHDoB,cAAA,SAIApB,KAAKc,EAALd,KAAAO,MACDP,KAAAK,EAAAL,KAAAO,KAoBKP,KAAKK,GAAKL,KAAKO,KACjBP,KAAKqB,eAAe,QAlBtBrB,KAAIe,EAAI,IACNf,KAAAK,EAAKU,GAuBO,GAAVf,KAAKK,GArBTL,KAAIe,eAAJ,W,kCA0BAf,KAAKK,GAAK,I,oCArBVL,KAAAK,I,8BAIAL,KAAAsB,eACAtB,KAAAF,KAAKsB,IAAAA,KAAAA,K,4BAsBL,OAAOpB,KAAKK,M,KAnBXkB,O,WA4BH,SAAAA,EAAYzB,GAAwB,IAAlB0B,EAAkB,EAAAC,UAAAC,aAAAC,IAAAF,UAAA,IAAAA,UAAA,GAAA1B,gBAAAC,KAAAuB,GA3BlCvB,KAAA4B,MAAI,CACFC,MAAKR,SACNS,MAAA,QA6BCC,KAAM,OA3BRC,MAAI,QACFC,OAAA,WACDC,OAAA,UA6BCC,IAAK,QA3BLnC,KAAAoC,OAAKf,OACNrB,KAAAF,KAAAA,EACFE,KAAAqC,MAAAvC,EAAAK,KAAA,uBA8BCH,KAAKwB,SAAW,KACZA,IACFxB,KAAKwB,SAAW1B,EAAKI,SA/BbA,SAAAC,KAAA,iBAEXH,KAAAM,Q,qDAiCO,IAAAgC,EAAAtC,KACNA,KAAKF,KAAKK,KAAK,WAAWoC,KAjChB,SAAAC,EAAAC,GACVC,EAAAD,GAAA/B,MAAA,SAAAC,GACD,IAAAiB,EAAAc,EAAAD,GAAAE,KAAA,SAAAC,MAAA,KAAA,GAkCKN,EAAKO,aAAajB,OA7BtB5B,KAAA6C,aAAKvB,U,2CAENmB,GAiCCC,EAAED,GAAIzB,YAAY,c,mCAEPY,GAAO,IAAAkB,EAAA9C,KAxClBA,KAAAoC,OAAY/B,KAAZuB,MAAAA,GACD5B,KAAAqC,MAAA5B,IAAAT,KAAAoC,QA0CCpC,KAAKF,KAAKK,KAAK,WAAWoC,KAAK,SAACC,EAAGC,GACjCK,EAAKC,qBAAqBN,KAE5BzC,KAAKF,KAAKK,KAAK,IAAMyB,EAAQ,WAAWT,SAAS,YAC5B,MAAjBnB,KAAKwB,UAvCPD,KAwCKC,SAASmB,KAAK,MAAO,mBAAqB3C,KAAKoC,OAAS,Y,KAK/DY,KAAO,CA3CPC,YAAA,uCACEpB,KAAAA,uBAGAG,YAAO,CACPC,KAAAA,EAAAA,gBACAC,MAAAA,WAAQ,IAAAgB,EAAAlD,KACRmC,KAAGrC,KAAEqD,OAAA,SAAAxC,GAGP,OAVAA,EAAAyC,iBASAF,EAAKd,UACL,KA+CFe,OAAQ,WA5CNE,QAAI7B,MAAU,mBAgDd8B,YAAc,CA7CdxD,KAAA4C,EAAKpC,sBACNA,MAAA,WAAA,IAAAiD,EAAAvD,KA+CCA,KAAKF,KAAKqD,OAAO,SAACxC,GAGhB,OAFAA,EAAEyC,iBACFG,EAAKJ,UACE,IAETnD,KAAKwD,KAAOxD,KAAKF,KAAKK,KAAK,sBAlD3BH,KAAAF,KAAKA,KAAKK,SAAKO,MAAW6B,SAAAA,GACxBG,EAAED,KAAI/B,QAAM,YAEVyC,OAAA,WACD,IAAAM,EAHDzD,KAAAF,KAAAK,KAAA,kBAAAM,MADFiD,EAAA,IAAAC,SAAA3D,KAAAF,KAAA,IAMA8D,EAAKf,CACN,WAAA7C,KAAAF,KAAAK,KAAA,mBAAAM,MAqDG,WAAagD,EACb,aAAezD,KAAKF,KAAKK,KAAK,qBAAqBM,MACnD,GArDFiC,UAAM1B,KAANlB,KAAkBK,KAAA,kBAAlBM,MACD,aAAAT,KAAAF,KAAAK,KAAA,qBAAAM,MAuDGT,KAAKF,KAAKK,KAAK,oBAAoBM,OAEjCoD,EAAU,CAxDIZ,YAAAD,KAAAC,YA0DhBa,GAAIL,EAzDNM,KAAK3B,KAAL2B,KACAC,QAAK3B,iBAAL,IAAA4B,MAAAC,eAAA,QAAA,CAAAC,SAAA,UACAC,KAAKtE,EAAKK,KAAK,UACbkE,YAAKtB,CADP,CAGAhC,KAAUZ,OA2DJuD,KAAMA,EAAKY,IAAI,cAvDtBC,MAAAC,KAAAX,KA8DCY,iBAAmB,CACrB3E,KAAM4C,EAAE,aACRpC,MAAO,WAAW,IAAAoE,EAAA1E,KA7DhBgD,KAAIlD,KAAGqD,OAAA,SAAAxC,GAAX,OACEsC,EAAAA,iBACIyB,EAAEvB,UAFR,KAOE7C,OAAO,WAAW,IAAAmD,EAAAzD,KAAAF,KAAAK,KAAA,kBAAAM,MA+DZmD,EAAO,CA9DX,WAAUT,KAAOrD,KAAAK,KAAO,mBAAAM,MACtBE,WAAEyC,EAgEF,GA/DApD,KAAAF,KAAKqD,KAAL,oBAAA1C,OACAoD,EAAA,CAHFZ,YAAAD,KAAAC,YAHcc,KAAAf,KAAAe,KAShBZ,GAAQM,EACNJ,QAAQsB,aAAM,IAAdV,MAAAC,eAAA,QAAA,CAAAC,SAAA,UACDC,KAAAR,EAAAgB,KAAA,WAECtB,MAAAA,KAAWO,KAqEXgB,YAAc,CAlEdA,YAAU1B,CACRxC,yLAoEF,+DAnEE,yCAqEF,0DApEE,0EACD,2DACD,sEACA,mEACE,qEACD,+FAEHwC,KAAMT,EAAE,yBACNoC,KAAIrB,EACJnD,MAAIoD,WACJ1D,KAAI4D,QAUFX,KAAAA,WAAaD,IAAAA,EAAAA,KACX3C,EAFU,EAERoD,KAFQqB,KAGZf,KAAAA,KAAMf,KAAKe,eAHCxB,KAAA,SAAAC,EAAAC,GAIZuB,GAASe,EAAAF,YAAAnD,OAAwDyC,EAAAA,GAAAA,KAAU,KAE3EE,EAAAA,GAAAA,KAAWU,EACTF,YAAAxE,IACEU,GAAAA,KADFf,KADWgF,YAOfT,SAAMC,WACP,IAAAS,EAAAC,KAAAC,KAAAnF,KAAA6E,YAAAnD,OAAA,GAvCH0D,EAAApF,KAAA8E,KAyCIL,EAAAA,KAAAA,KAAmBvE,SAAAC,KAAA,QACfuC,EAAE1C,KACRM,EAAKY,KAAE,IAAW,IAAA,IAAAsB,EAAA,EAAAA,EAAAyC,EAAAzC,IAAA,CA+Dd,IAAI6C,EAAS3C,EAAE,WAAWC,KAAK,QAAS,6BAA6B2C,IAAI,SAAU,WAAW3C,KAAK,YAAaH,GA9D7G1C,GAAKqD,GACNC,EAAAA,YAAF,WACAiC,EAAKlC,MAAL,SAAAxC,GAiEE4E,EAAMT,KAAOjE,SAAS6B,EAAE1C,MAAM2C,KAAK,cAhErC4C,EAAOC,SANUC,EAAAC,OAAAL,MAkBjBpC,EAAAA,UAAAA,MAAW,WAEXa,EAAAA,gBAHY6B,SAIZ3B,EAAAA,oBAAS2B,OAAe,CAAqCxB,QAAAA,YAC7DC,EAAAA,UAAMR,SAERW,EAAAA,kBAAAqB,UAAA,EAxBJ,IAAA/F,OAAA6C,EAAA,0CA4BkB,IAAAnB,OAAAmB,EAAA,qBAAA,GAChBmC,YAAWvE,QAYH,IAAAT,OAAD6C,EAbS,gDAAA,IAAAnB,OAAAmB,EAAA,2BAehBpC,YAAOA,QACLmE,iBAAAnE,QACDuE,YAjBevE","file":"../main.min.js","sourcesContent":["class Amount {\r\n constructor(elem) {\r\n this.elem = elem\r\n this.minus = elem.parent().find('.minus')\r\n this.plus = elem.parent().find('.plus')\r\n this.n = 0\r\n this.setup()\r\n this.max = 999\r\n }\r\n setup() {\r\n this.elem.val(0)\r\n this.plus.click((e) => {\r\n this.increment()\r\n this.print()\r\n })\r\n this.minus.click((e) => {\r\n this.decrement()\r\n this.print()\r\n })\r\n this.elem.change((e) => {\r\n this.n = parseInt(this.elem.val())\r\n this.print()\r\n })\r\n this.print()\r\n }\r\n enable_button(name) {\r\n this[name].removeClass('disabled')\r\n if (name == 'plus') {\r\n this[name].html('')\r\n }\r\n if (name == 'minus') {\r\n this[name].html('')\r\n }\r\n }\r\n disable_button(name) {\r\n this[name].addClass('disabled')\r\n this[name].html('')\r\n }\r\n check_limits() {\r\n this.enable_button('plus')\r\n this.enable_button('minus')\r\n if (this.n > this.max) {\r\n this.n = this.max\r\n }\r\n if (this.n == this.max) {\r\n this.disable_button('plus')\r\n }\r\n\r\n if (this.n < 0) {\r\n this.n = 0\r\n }\r\n if (this.n == 0) {\r\n this.disable_button('minus')\r\n }\r\n }\r\n increment() {\r\n this.n += 1\r\n }\r\n decrement() {\r\n this.n -= 1\r\n }\r\n get value() {\r\n return this.n\r\n }\r\n print() {\r\n this.check_limits()\r\n this.elem.val(this.n)\r\n }\r\n}\r\n\r\nclass Colors {\r\n constructor(elem, changing = false) {\r\n this.color = {\r\n white: 'blanco',\r\n black: 'negro',\r\n blue: 'azul',\r\n green: 'verde',\r\n yellow: 'amarillo',\r\n orange: 'naranjo',\r\n red: 'rojo'\r\n }\r\n this.picked = 'blue'\r\n this.elem = elem\r\n this.input = elem.find('input[name=\"color\"]')\r\n this.changing = null\r\n if (changing) {\r\n this.changing = elem.parent().parent().find('.column2 img')\r\n }\r\n this.setup()\r\n }\r\n setup() {\r\n this.elem.find('.circle').each((i, el) => {\r\n $(el).click((e) => {\r\n let color = $(el).attr('class').split(' ')[0]\r\n this.change_color(color)\r\n })\r\n })\r\n this.change_color('blue')\r\n }\r\n default_color_format(el) {\r\n $(el).removeClass('selected')\r\n }\r\n change_color(color) {\r\n this.picked = this.color[color]\r\n this.input.val(this.picked)\r\n this.elem.find('.circle').each((i, el) => {\r\n this.default_color_format(el)\r\n })\r\n this.elem.find('.' + color + '.circle').addClass('selected')\r\n if (this.changing != null) {\r\n this.changing.attr('src', './assets/images/' + this.picked + '.png')\r\n }\r\n }\r\n}\r\n\r\nlet smtp = {\r\n SecureToken: '4adcdc1f-6b6e-4e60-ab72-20da4c329b09',\r\n From: 'contacto@3dstand.cl'\r\n}\r\n\r\nlet sticky_form = {\r\n elem: $('.sticky form'),\r\n setup: function() {\r\n this.elem.submit((e) => {\r\n e.preventDefault()\r\n this.submit()\r\n return false\r\n })\r\n },\r\n submit: function() {\r\n console.debug('submit sticky')\r\n }\r\n}\r\nlet cotiza_form = {\r\n elem: $('#corporativos form'),\r\n setup: function() {\r\n this.elem.submit((e) => {\r\n e.preventDefault()\r\n this.submit()\r\n return false\r\n })\r\n this.file = this.elem.find('input[type=\"file\"]')\r\n this.elem.find('.file').click((e) => {\r\n this.file.trigger('click')\r\n })\r\n },\r\n submit: function() {\r\n let email = this.elem.find('[name=\"email\"]').val()\r\n let data = new FormData(this.elem[0])\r\n let body = [\r\n 'Nombre: ' + this.elem.find('[name=\"nombre\"]').val(),\r\n 'E-mail: ' + email,\r\n 'Teléfono: ' + this.elem.find('[name=\"telefono\"]').val(),\r\n '',\r\n 'Color: ' + this.elem.find('[name=\"color\"]').val(),\r\n 'Cantidad: ' + this.elem.find('[name=\"cantidad\"]').val(),\r\n this.elem.find('[name=\"mensaje\"]').val()\r\n ]\r\n let content = {\r\n SecureToken: smtp.SecureToken,\r\n To: email,\r\n From: smtp.From,\r\n Subject: 'Cotizacion - ' + (new Date()).toLocaleString('es-CL', {timezone: \"UTC-3\"}),\r\n Body: body.join('
'),\r\n Attachments: [\r\n {\r\n name: \"Logo\",\r\n data: data.get('archivo')\r\n }\r\n ]\r\n }\r\n Email.send(content)\r\n }\r\n}\r\nlet conversemos_form = {\r\n elem: $('#contacto'),\r\n setup: function() {\r\n this.elem.submit((e) => {\r\n e.preventDefault()\r\n this.submit()\r\n return false\r\n })\r\n },\r\n submit: function() {\r\n let email = this.elem.find('[name=\"email\"]').val()\r\n let body = [\r\n 'Nombre: ' + this.elem.find('[name=\"nombre\"]').val(),\r\n 'E-mail: ' + email,\r\n '',\r\n this.elem.find('[name=\"mensaje\"]').val()\r\n ]\r\n let content = {\r\n SecureToken: smtp.SecureToken,\r\n From: smtp.From,\r\n To: email,\r\n Subject: 'Contacto ' + (new Date()).toLocaleString('es-CL', {timezone: \"UTC-3\"}),\r\n Body: body.join('
')\r\n }\r\n Email.send(content)\r\n }\r\n}\r\n\r\nlet testimonios = {\r\n testimonios: [\r\n \"Este soporte que compré en @Stand-cl me cambió la vida, me sirve para el teléfono y el ipad, y ya no tengo que andar acomodando los aparatos en cualquier parte para las videollamadas\",\r\n \"Siiii todo mi gusto.. me encantó lo completo que es. Gracias\",\r\n \"Está super cool se ve de buena calidad\",\r\n \"Llego el mío, y es excelente, estoy feliz con mi compra\",\r\n \"Hola!!Me llegó el pedido, Muchas gracias muy bello. Me salvaste la vida\",\r\n \"Perfecto el producto, funciona impecable, muchas gracias\",\r\n \"Están bacanes! muchísimas gracias. Le regalé a mis viejos y lo aman\",\r\n \"Hola! Quería decirte que me encantaron los soportes, Muy útiles!\",\r\n \"Compré 3 y olvidé decirte que los encontré geniales! Me encantaron\",\r\n \"Diseño simple y funcional, minimalista y excelente precio, despacho súper Rápido.. gracias!\"\r\n ],\r\n elem: $('#felices .testimonios'),\r\n page: 0,\r\n setup: function() {\r\n this.draw()\r\n },\r\n draw: function() {\r\n var n = this.page * 3\r\n this.elem.find('.testimonio').each((i, el) => {\r\n if (n >= this.testimonios.length) {\r\n $(el).html('')\r\n return\r\n }\r\n $(el).html(this.testimonios[n])\r\n n += 1\r\n })\r\n this.draw_nav()\r\n },\r\n draw_nav: function() {\r\n let N = Math.ceil(this.testimonios.length / 3)\r\n let k = this.page\r\n let nav = this.elem.parent().find('.nav')\r\n let tests = this\r\n nav.html('')\r\n for (var i = 0; i < N; i ++) {\r\n var circle = $('').attr('class', 'small circle outline icon').css('cursor', 'pointer').attr('data-page', i)\r\n if (i == k) {\r\n circle.removeClass('outline')\r\n }\r\n circle.click(function(e) {\r\n tests.page = parseInt($(this).attr('data-page'))\r\n tests.draw()\r\n })\r\n nav.append(circle)\r\n }\r\n }\r\n}\r\n\r\n$(document).ready(function() {\r\n\r\n $('.menu.sticky').sticky()\r\n $('.column2 .sticky').sticky({\r\n context: '#column'\r\n })\r\n $('#subir').sticky()\r\n\r\n $('.shopping.cart').innerText = 0\r\n\r\n let sticky_amount = new Amount($('.sticky .input input[name=\"cantidad\"]'))\r\n let sticky_color = new Colors($('.sticky .colores'), true)\r\n sticky_form.setup()\r\n let cotiza_amount = new Amount($('#corporativos .input input[name=\"cantidad\"]'))\r\n let cotiza_color = new Colors($('#corporativos .colores'))\r\n cotiza_form.setup()\r\n conversemos_form.setup()\r\n testimonios.setup()\r\n})\r\n"]} \ No newline at end of file diff --git a/public/assets/styles/main.css b/public/assets/styles/main.css index 6c3dd5e..38d1e6e 100644 --- a/public/assets/styles/main.css +++ b/public/assets/styles/main.css @@ -45,689 +45,1367 @@ input { border-radius: 0; } -#backgrounds .cabezal { - height: 25rem; - background-image: url("../images/banner.jpg"); - background-repeat: no-repeat; - background-size: 100rem; - background-position: top center; - background-color: rgba(0, 0, 0, 0.4); - background-blend-mode: multiply; -} -#backgrounds .seccion1 { - height: 25rem; - background-image: linear-gradient(#cccccc, #cccccc); - background-position: left 7rem; - background-size: 100% 8rem; - background-repeat: no-repeat; -} -#backgrounds .seccion2 { - height: 27.5rem; - background-image: url("../images/fondo23.png"); -} -#backgrounds .seccion2 .diagonal { - border-bottom: 27.5rem solid rgba(204, 204, 204, 0.5); - border-right: 118.75rem solid transparent; -} -#backgrounds .dimensiones { - height: 27.5rem; - background-image: url("../images/fondo23.png"); -} -#backgrounds .dimensiones .fondo-gris { - width: 100%; - height: 100%; - background-color: rgba(204, 204, 204, 0.5); -} -#backgrounds .construido { - height: 21.875rem; - background-image: url("../images/fondo4.jpg"); -} -#backgrounds .corporativos { - height: 32.5rem; - background-image: url("../images/fondo5.png"); -} -#backgrounds .testimonios { - height: 21.875rem; - background-image: linear-gradient(#cccccc, #cccccc); - background-position: left 7.1875rem; - background-size: 100% 7.375rem; - background-repeat: no-repeat; -} -#backgrounds .formulario { - height: 30rem; - background-color: #cccccc; - clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%); -} +@media screen and (max-width: 800px) { + #backgrounds .cabezal { + height: 25rem; + background-image: url("../images/banner.jpg"); + background-repeat: no-repeat; + background-size: 160%; + background-position: bottom -0.9375rem center; + background-color: rgba(0, 0, 0, 0.4); + background-blend-mode: multiply; + } + #backgrounds .seccion1 { + height: 25rem; + background-image: linear-gradient(#cccccc, #cccccc); + background-position: left 10.5rem; + background-size: 100% 12rem; + background-repeat: no-repeat; + } + #backgrounds .seccion2 { + height: 27.5rem; + background-image: url("../images/fondo23.png"); + } + #backgrounds .seccion2 .diagonal { + border-bottom: 27.5rem solid rgba(204, 204, 204, 0.5); + border-right: 178.125rem solid transparent; + } + #backgrounds .dimensiones { + height: 27.5rem; + background-image: url("../images/fondo23.png"); + } + #backgrounds .dimensiones .fondo-gris { + width: 100%; + height: 100%; + background-color: rgba(204, 204, 204, 0.5); + } + #backgrounds .construido { + height: 21.875rem; + background-image: url("../images/fondo4.jpg"); + } + #backgrounds .corporativos { + height: 32.5rem; + background-image: url("../images/fondo5.png"); + } + #backgrounds .testimonios { + height: 21.875rem; + background-image: linear-gradient(#cccccc, #cccccc); + background-position: left 10.78125rem; + background-size: 100% 11.0625rem; + background-repeat: no-repeat; + } + #backgrounds .formulario { + height: 30rem; + background-color: #cccccc; + clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%); + } -body { - height: 211.25rem; - font-family: Roboto, sans; - color: #333333; -} + html { + font-size: 10.6666666667px; + width: 100%; + overflow-x: hidden; + } -#content { - max-width: 67.5rem !important; - height: 211.25rem; - position: relative; - top: -211.25rem; -} -#content #header { - color: white; - width: 100%; - height: 25rem; -} -#content #header .ui.menu { - border: none !important; - background: none !important; - background-color: rgba(100, 100, 100, 0.3) !important; - box-shadow: none !important; - margin: 0 !important; -} -#content #header .ui.menu .dropdown .menu { - /*background: none !important; - border: none !important; - box-shadow: none !important;*/ - color: black; - font-size: 1rem; -} -#content #header .ui.menu .dropdown .menu .item { - padding: 1rem !important; -} -#content #header .ui.menu .item { - color: inherit !important; - font-size: 2rem; - padding: 1.25rem !important; -} -#content #header .ui.menu .item .shopping.cart div { - position: relative; - color: black; - display: inline-block; - top: -2.6rem; - left: 0.2rem; - font-size: 1rem; - font-family: Roboto, sans; -} -#content #header .logo { - padding: 0 !important; - margin: 0 !important; -} -#content #header .logo img { - width: 50%; - max-width: 64.375rem; -} -#content #header .logo .frase1 { - font-size: 1.5rem; -} -#content #header .logo .frase2 { - font-size: 1rem; -} -#content > .column { - display: inline-block; - float: left; - padding-left: 1rem !important; - padding-right: 1rem !important; -} -#content > .column::after { - clear: both; -} -#content > .column1 { - width: 67%; -} -#content > .column1 #seccion1 { - height: 25rem; - width: 100%; -} -#content > .column1 #seccion1 .image-container { - display: flex; - justify-content: space-between; - height: 15rem; -} -#content > .column1 #seccion1 .image-container img { - height: 9.6875rem; - width: 11.75rem; - margin-top: 5.3125rem; -} -#content > .column1 #seccion1 .paragraph { - padding-top: 1.75rem; - line-height: 0.875rem; - text-align: justify; -} -#content > .column1 #seccion1 .paragraph .header { - margin-bottom: 1rem; - font-size: 1.375rem; -} -#content > .column1 #seccion2 { - height: 27.5rem; -} -#content > .column1 #seccion2 > .column { - display: inline-block; - float: left; - width: 50%; -} -#content > .column1 #seccion2 > .column::after { - clear: both; -} -#content > .column1 #seccion2 .column1 { - margin-top: 5rem; -} -#content > .column1 #seccion2 .column1 img { - width: 19.8125rem; - height: 19.8125rem; -} -#content > .column1 #seccion2 .column2 { - margin-top: 7.125rem; -} -#content > .column1 #seccion2 .column2 .row:first-child { - background-color: #00427b; - color: white; - height: 11.25rem; - width: 23.75rem; - padding: 2rem; - margin-left: -3rem; - overflow: hidden; -} -#content > .column1 #seccion2 .column2 .row:first-child .header { - font-weight: bold; - font-size: 1rem; - margin-bottom: 1rem; -} -#content > .column1 #seccion2 .column2 .row:first-child ul { - list-style: disc inside; - font-size: 0.8333333333rem; -} -#content > .column1 #seccion2 .column2 .row:last-child { - margin-top: 1.125rem; - display: flex; - justify-content: space-between; -} -#content > .column1 #seccion2 .column2 .row:last-child img { - width: 4.375rem; - height: 5.3125rem; -} -#content > .column1 #dimensiones { - height: 27.5rem; -} -#content > .column1 #dimensiones .header { - padding: 2.3125rem 0 !important; -} -#content > .column1 #dimensiones .header .bigger { - font-size: 1rem; -} -#content > .column1 #dimensiones .images { - display: flex; -} -#content > .column1 #dimensiones .images .column { - float: left; -} -#content > .column1 #dimensiones .images .column > img { - width: 19.5625rem; - height: 14.6875rem; -} -#content > .column1 #dimensiones .images .column div { - width: 19.5625rem; - margin-top: 1.5625rem; -} -#content > .column1 #construido { - height: 21.875rem; - padding-top: 1.4375rem !important; -} -#content > .column1 #construido .header { - font-size: 1.8333333333rem; - padding: 0.625rem 2.6875rem; - background-color: rgba(255, 255, 255, 0.6); -} -#content > .column2 { - width: 33%; - height: 101.875rem; -} -#content > .column2 .sticky { - height: 16.5625rem; - width: 19.375rem; - margin: auto; -} -#content > .column2 .sticky .row:first-child { - height: 10.625rem; - margin-top: 5rem; -} -#content > .column2 .sticky .row:first-child .column { - display: inline-block; - float: left; -} -#content > .column2 .sticky .row:first-child .column::after { - clear: both; -} -#content > .column2 .sticky .row:first-child .column1 { - vertical-align: bottom; - padding-top: 1.25rem; - width: 12.9166666667rem; - font-size: 1.1666666667rem; -} -#content > .column2 .sticky .row:first-child .column1 .linea { - margin-bottom: 0.625rem; -} -#content > .column2 .sticky .row:first-child .column1 .titulo { - font-size: 2.0833333333rem; -} -#content > .column2 .sticky .row:first-child .column1 .precio { - font-size: 1.3333333333rem; -} -#content > .column2 .sticky .row:first-child .column1 .colores { - vertical-align: center; -} -#content > .column2 .sticky .row:first-child .column1 .colores .text { - margin-right: 0.1875rem; -} -#content > .column2 .sticky .row:first-child .column1 .colores .white { - border: thin solid black; - background-color: white; -} -#content > .column2 .sticky .row:first-child .column1 .colores .black { - background-color: black; -} -#content > .column2 .sticky .row:first-child .column1 .colores .blue { - background-color: blue; -} -#content > .column2 .sticky .row:first-child .column1 .colores .green { - background-color: lime; -} -#content > .column2 .sticky .row:first-child .column1 .colores .yellow { - background-color: yellow; -} -#content > .column2 .sticky .row:first-child .column1 .colores .orange { - background-color: #ff8200; -} -#content > .column2 .sticky .row:first-child .column1 .colores .red { - background-color: red; -} -#content > .column2 .sticky .row:first-child .column1 .colores .circle { - display: inline-block; - width: 0.75rem; - height: 0.75rem; - border-radius: 8000px; - margin: auto 0.0625rem; - cursor: pointer; -} -#content > .column2 .sticky .row:first-child .column1 .colores .circle.selected { - width: 0.875rem; - height: 0.875rem; - cursor: default; -} -#content > .column2 .sticky .row:first-child .column1 .input { - width: 4.5rem; - border: thin solid black; - text-align: center; - padding: 0.5rem 0.05rem; - font-size: 0.8333333333rem; -} -#content > .column2 .sticky .row:first-child .column1 .input button { - background: none; - border: none; - width: 1rem; - margin: 0; - padding: 0; - cursor: pointer; - font-weight: bold; -} -#content > .column2 .sticky .row:first-child .column1 .input input { - width: 2rem; - background: none; - margin: 0; - border: 0; - padding: 0; - text-align: center; -} -#content > .column2 .sticky .row:first-child .column2 { - width: 6.4583333333rem; -} -#content > .column2 .sticky .row:first-child .column2 img { - width: 6.875rem; - height: 10rem; -} -#content > .column2 .sticky .row:last-child .button { - border-radius: 0 !important; - width: 100%; -} -#content #corporativos { - width: 100%; - height: 32.5rem; - margin-top: 101.875rem !important; -} -#content #corporativos > .column { - display: inline-block; - float: left; - padding-left: 1rem !important; - padding-right: 1rem !important; -} -#content #corporativos > .column::after { - clear: both; -} -#content #corporativos .column1 { - width: 67%; -} -#content #corporativos .column1 > .header { - margin-top: 4.1875rem; - margin-bottom: 2.3125rem; -} -#content #corporativos .column1 > .header .bigger { - font-size: 1.625rem; -} -#content #corporativos .column1 .opciones { - display: flex; - justify-content: space-around; -} -#content #corporativos .column1 .opciones .opcion { - display: inline-block; -} -#content #corporativos .column1 .opciones .opcion .img-grande { - display: inline-block; - padding-right: 0.75rem; -} -#content #corporativos .column1 .opciones .opcion .img-grande img { - width: 8.4375rem; - height: 12.5rem; -} -#content #corporativos .column1 .opciones .opcion .descripcion { - display: inline-block; - vertical-align: top; - height: 12.5rem; - padding-top: 1.25rem; -} -#content #corporativos .column1 .opciones .opcion .descripcion .content { - display: block; -} -#content #corporativos .column1 .opciones .opcion .descripcion .content .header { - font-size: 1.1666666667rem; - margin-bottom: 0.625rem; -} -#content #corporativos .column1 .opciones .opcion .descripcion .content ul { - list-style: disc inside; -} -#content #corporativos .column1 .opciones .opcion .descripcion .images { - margin-top: 2.125rem; -} -#content #corporativos .column1 .opciones .opcion .descripcion .images img { - width: 4.375rem; - height: 5.3125rem; -} -#content #corporativos .column2 { - width: 33%; - height: 100%; -} -#content #corporativos .column2 .header { - margin-top: 2.875rem; - margin-bottom: 1.5rem; - font-size: 1.625rem; -} -#content #corporativos .column2 form .colores { - vertical-align: center; -} -#content #corporativos .column2 form .colores .text { - margin-right: 0.1875rem; -} -#content #corporativos .column2 form .colores .white { - border: thin solid black; - background-color: white; -} -#content #corporativos .column2 form .colores .black { - background-color: black; -} -#content #corporativos .column2 form .colores .blue { - background-color: blue; -} -#content #corporativos .column2 form .colores .green { - background-color: lime; -} -#content #corporativos .column2 form .colores .yellow { - background-color: yellow; -} -#content #corporativos .column2 form .colores .orange { - background-color: #ff8200; -} -#content #corporativos .column2 form .colores .red { - background-color: red; -} -#content #corporativos .column2 form .colores .circle { - display: inline-block; - width: 0.75rem; - height: 0.75rem; - border-radius: 8000px; - margin: auto 0.0625rem; - cursor: pointer; -} -#content #corporativos .column2 form .colores .circle.selected { - width: 0.875rem; - height: 0.875rem; - cursor: default; -} -#content #corporativos .column2 form .row { - margin-bottom: 0.5625rem; -} -#content #corporativos .column2 form .colores.linea { - margin-bottom: 1rem; -} -#content #corporativos .column2 form .input.cantidad { - width: 4.5rem; - border: thin solid black; - text-align: center; - padding: 0.5rem 0.05rem; - font-size: 0.8333333333rem; -} -#content #corporativos .column2 form .input.cantidad button { - background: none; - border: none; - width: 1rem; - margin: 0; - padding: 0; - cursor: pointer; -} -#content #corporativos .column2 form .input.cantidad input { - width: 2rem; - background: none; - margin: 0; - border: 0; - padding: 0; - text-align: center; -} -#content #corporativos .column2 form .input [type=file] { - display: none; -} -#content #corporativos .column2 form .input .file { - display: inline-block; - height: 1.5rem; - width: 9.375rem; - padding-top: 0.1875rem; - background-color: #cccccb; - border: thin solid #333; - font-size: 0.8333333333rem; - text-align: center; - cursor: pointer; -} -#content #corporativos .column2 form .input [type=text] { - height: 1.125rem; - background-color: white; - border: none !important; - border-radius: 0 !important; -} -#content #corporativos .column2 form textarea { - height: 4.5rem; - background-color: white; - border: none !important; - border-radius: 0 !important; - margin-bottom: 1rem; -} -#content #corporativos .column2 form .button { - width: 100%; - background-color: #666667; - color: white; - border: none !important; - border-radius: 0 !important; -} -#content #felices { - height: 21.875rem; - padding: 0 1rem !important; - padding-top: 3.75rem !important; -} -#content #felices .header { - font-size: 1.8333333333rem; -} -#content #felices .testimonios { - margin-top: 1.5625rem; - display: flex; - justify-content: space-between; - text-align: center; -} -#content #felices .testimonios .testimonio { - height: 5rem; - color: #666667; - margin-top: 1.25rem; - width: 30%; - text-align: center; -} -#content #felices .nav { - display: block; - text-align: center; - color: #666667; -} -#content #formulario { - height: 30rem; - padding: 0 1rem !important; -} -#content #formulario .whatsapp-link { - color: inherit; -} -#content #formulario > .column { - float: left; - padding-left: 1rem !important; - padding-right: 1rem !important; -} -#content #formulario > .column::after { - clear: both; -} -#content #formulario > .flotante { - position: absolute; - top: 11.4375rem; - margin: auto; - left: 40%; - width: 13.5rem; - text-align: center; -} -#content #formulario > .flotante > .content { - width: 8.125rem; - margin: auto; - left: -50%; -} -#content #formulario > .flotante > .content .item { - display: block; - padding: 0.3125rem 0; -} -#content #formulario > .flotante > .content div.whatsapp { - height: 1.875rem; - background-color: #1a9947; - color: #fff; - font-size: 0.625rem; -} -#content #formulario > .flotante > .content div.whatsapp > i { - position: relative; - font-size: 1.3333333333rem; - top: 0.1875rem; -} -#content #formulario > .flotante > .content .rrss { - display: flex; - justify-content: space-between; - font-size: 1.25rem; -} -#content #formulario > .flotante > .content .rrss i.inverted.grey { - color: white !important; -} -#content #formulario > .column1 { - width: 67%; - margin-top: 1.6875rem; -} -#content #formulario > .column1 > img { - width: 33.75rem; - height: 21.875rem; - float: left; -} -#content #formulario > .column2 { - width: 33%; -} -#content #formulario > .column2 .header { - margin-top: 1.25rem; - text-align: center; - font-size: 1.8333333333rem; -} -#content #formulario > .column2 .header .whatsapp-link { - display: inline-block; - width: 1.5625rem; - height: 1.5625rem; - font-size: 2.0833333333rem; -} -#content #formulario > .column2 .paragraph { - padding-top: 1rem; - padding-bottom: 1.5625rem; - justify-content: center; -} -#content #formulario > .column2 form input { - border-radius: 0 !important; - height: 1.125rem; - margin-bottom: 0.5625rem; - background-color: rgba(255, 255, 255, 0.5); - font-size: 0.8333333333rem; -} -#content #formulario > .column2 form input::placeholder { - color: #333333; -} -#content #formulario > .column2 form textarea { - border-radius: 0 !important; - height: 4.5rem; - margin-bottom: 1.5625rem; - background-color: rgba(255, 255, 255, 0.5); - font-size: 0.8333333333rem; -} -#content #formulario > .column2 form textarea::placeholder { - color: #333333; -} -#content #formulario > .column2 form .button { - width: 100%; - border-radius: 0 !important; - background-color: white; - color: #333333; -} -#content section { - background: none; -} -#content section.segment > .container { - height: 100%; -} -#content section.segment > .container > .column1 { - display: inline-block; - width: 67rem; -} -#content section.segment > .container > .column2 { - display: inline-block; - width: 33rem; -} -#content .simple.segment { - border: none !important; - border-radius: 0 !important; - box-shadow: none !important; - margin: 0 !important; - padding: 0 !important; -} -#content .simple.segment > .ui.grid { - height: 100%; -} -#content .fondo-blanco { - background-color: rgba(255, 255, 255, 0.5); -} + body { + height: 211.25rem; + font-family: Roboto, sans; + color: #333333; + } -#subir { - width: 100%; + #content { + width: 100% !important; + height: 211.25rem; + margin: 0 !important; + position: relative; + top: -211.25rem; + } + #content #header { + color: white; + width: 100%; + height: 25rem; + } + #content #header .ui.menu { + border: none !important; + background: none !important; + box-shadow: none !important; + margin: 0 !important; + color: black; + } + #content #header .ui.menu .dropdown .menu { + /*background: none !important; + border: none !important; + box-shadow: none !important;*/ + color: black; + font-size: 1rem; + } + #content #header .ui.menu .dropdown .menu .item { + padding: 1rem !important; + } + #content #header .ui.menu .item { + color: inherit !important; + font-size: 1rem; + } + #content #header .ui.menu .item .shopping.cart div { + position: relative; + color: black; + display: inline-block; + top: -1.3rem; + left: 0.1rem; + font-size: 0.5rem; + font-family: Roboto, sans; + } + #content #header .logo { + padding: 0 !important; + margin: 0 !important; + } + #content #header .logo img { + width: 50%; + max-width: 56.25rem; + } + #content #header .logo .frase1 { + width: 75%; + margin: auto; + font-size: 1rem; + } + #content #header .logo .frase2 { + font-size: 0.7rem; + } + #content > .column { + display: inline-block; + float: left; + padding-left: 1rem !important; + padding-right: 1rem !important; + } + #content > .column::after { + clear: both; + } + #content > .column1 { + width: 90%; + } + #content > .column1 #seccion1 { + height: 25rem; + width: 100%; + } + #content > .column1 #seccion1 .image-container { + display: flex; + justify-content: space-between; + height: 22.5rem; + } + #content > .column1 #seccion1 .image-container img { + width: 50%; + margin-top: 7.96875rem; + } + #content > .column1 #seccion1 .paragraph { + padding-top: 2.625rem; + line-height: 1.3125rem; + text-align: justify; + } + #content > .column1 #seccion1 .paragraph .header { + margin-bottom: 1rem; + font-size: 2.0625rem; + } + #content > .column1 #seccion2 { + height: 27.5rem; + } + #content > .column1 #seccion2 > .column { + display: inline-block; + float: left; + width: 50%; + } + #content > .column1 #seccion2 > .column::after { + clear: both; + } + #content > .column1 #seccion2 .column1 { + margin-top: 7.5rem; + } + #content > .column1 #seccion2 .column1 img { + width: 29.71875rem; + height: 29.71875rem; + } + #content > .column1 #seccion2 .column2 { + margin-top: 10.6875rem; + } + #content > .column1 #seccion2 .column2 .row:first-child { + background-color: #00427b; + color: white; + height: 16.875rem; + width: 35.625rem; + padding: 2rem; + margin-left: -3rem; + overflow: hidden; + } + #content > .column1 #seccion2 .column2 .row:first-child .header { + font-weight: bold; + font-size: 1.5rem; + margin-bottom: 1rem; + } + #content > .column1 #seccion2 .column2 .row:first-child ul { + list-style: disc inside; + font-size: 0.8333333333rem; + } + #content > .column1 #seccion2 .column2 .row:last-child { + margin-top: 1.6875rem; + display: flex; + justify-content: space-between; + } + #content > .column1 #seccion2 .column2 .row:last-child img { + width: 6.5625rem; + height: 7.96875rem; + } + #content > .column1 #dimensiones { + height: 27.5rem; + } + #content > .column1 #dimensiones .header { + padding: 3.46875rem 0 !important; + } + #content > .column1 #dimensiones .header .bigger { + font-size: 1.5rem; + } + #content > .column1 #dimensiones .images { + display: flex; + } + #content > .column1 #dimensiones .images .column { + float: left; + } + #content > .column1 #dimensiones .images .column > img { + width: 29.34375rem; + height: 22.03125rem; + } + #content > .column1 #dimensiones .images .column div { + width: 29.34375rem; + margin-top: 2.34375rem; + } + #content > .column1 #construido { + height: 21.875rem; + padding-top: 2.15625rem !important; + } + #content > .column1 #construido .header { + font-size: 1.8333333333rem; + padding: 0.9375rem 4.03125rem; + background-color: rgba(255, 255, 255, 0.6); + } + #content > .column2 { + width: 10%; + height: 101.875rem; + } + #content > .column2 .sticky { + height: 24.84375rem; + width: 29.0625rem; + margin: auto; + } + #content > .column2 .sticky .row:first-child { + height: 15.9375rem; + margin-top: 7.5rem; + } + #content > .column2 .sticky .row:first-child .column { + display: inline-block; + float: left; + } + #content > .column2 .sticky .row:first-child .column::after { + clear: both; + } + #content > .column2 .sticky .row:first-child .column1 { + vertical-align: bottom; + padding-top: 1.875rem; + width: 19.375rem; + font-size: 1.1666666667rem; + } + #content > .column2 .sticky .row:first-child .column1 .linea { + margin-bottom: 0.9375rem; + } + #content > .column2 .sticky .row:first-child .column1 .titulo { + font-size: 2.0833333333rem; + } + #content > .column2 .sticky .row:first-child .column1 .precio { + font-size: 1.3333333333rem; + } + #content > .column2 .sticky .row:first-child .column1 .colores { + vertical-align: center; + } + #content > .column2 .sticky .row:first-child .column1 .colores .text { + margin-right: 0.28125rem; + } + #content > .column2 .sticky .row:first-child .column1 .colores .white { + border: thin solid black; + background-color: white; + } + #content > .column2 .sticky .row:first-child .column1 .colores .black { + background-color: black; + } + #content > .column2 .sticky .row:first-child .column1 .colores .blue { + background-color: blue; + } + #content > .column2 .sticky .row:first-child .column1 .colores .green { + background-color: lime; + } + #content > .column2 .sticky .row:first-child .column1 .colores .yellow { + background-color: yellow; + } + #content > .column2 .sticky .row:first-child .column1 .colores .orange { + background-color: #ff8200; + } + #content > .column2 .sticky .row:first-child .column1 .colores .red { + background-color: red; + } + #content > .column2 .sticky .row:first-child .column1 .colores .circle { + display: inline-block; + width: 0.9375rem; + height: 0.9375rem; + border-radius: 8000px; + margin: auto 0.09375rem; + cursor: pointer; + } + #content > .column2 .sticky .row:first-child .column1 .colores .circle.selected { + width: 1.125rem; + height: 1.125rem; + cursor: default; + } + #content > .column2 .sticky .row:first-child .column1 .input { + width: 4.5rem; + border: thin solid black; + text-align: center; + padding: 0.5rem 0.05rem; + font-size: 0.8333333333rem; + } + #content > .column2 .sticky .row:first-child .column1 .input button { + background: none; + border: none; + width: 1rem; + margin: 0; + padding: 0; + cursor: pointer; + font-weight: bold; + } + #content > .column2 .sticky .row:first-child .column1 .input input { + width: 2rem; + background: none; + margin: 0; + border: 0; + padding: 0; + text-align: center; + } + #content > .column2 .sticky .row:first-child .column2 { + width: 9.6875rem; + } + #content > .column2 .sticky .row:first-child .column2 img { + width: 10.3125rem; + height: 15rem; + } + #content > .column2 .sticky .row:last-child .button { + border-radius: 0 !important; + width: 100%; + } + #content #corporativos { + width: 100%; + height: 32.5rem; + margin-top: 101.875rem !important; + } + #content #corporativos > .column { + display: inline-block; + float: left; + padding-left: 1rem !important; + padding-right: 1rem !important; + } + #content #corporativos > .column::after { + clear: both; + } + #content #corporativos .column1 { + width: 67%; + } + #content #corporativos .column1 > .header { + margin-top: 6.28125rem; + margin-bottom: 3.46875rem; + } + #content #corporativos .column1 > .header .bigger { + font-size: 2.4375rem; + } + #content #corporativos .column1 .opciones { + display: flex; + justify-content: space-around; + } + #content #corporativos .column1 .opciones .opcion { + display: inline-block; + } + #content #corporativos .column1 .opciones .opcion .img-grande { + display: inline-block; + padding-right: 1.125rem; + } + #content #corporativos .column1 .opciones .opcion .img-grande img { + width: 12.65625rem; + height: 18.75rem; + } + #content #corporativos .column1 .opciones .opcion .descripcion { + display: inline-block; + vertical-align: top; + height: 18.75rem; + padding-top: 1.875rem; + } + #content #corporativos .column1 .opciones .opcion .descripcion .content { + display: block; + } + #content #corporativos .column1 .opciones .opcion .descripcion .content .header { + font-size: 1.1666666667rem; + margin-bottom: 0.9375rem; + } + #content #corporativos .column1 .opciones .opcion .descripcion .content ul { + list-style: disc inside; + } + #content #corporativos .column1 .opciones .opcion .descripcion .images { + margin-top: 3.1875rem; + } + #content #corporativos .column1 .opciones .opcion .descripcion .images img { + width: 6.5625rem; + height: 7.96875rem; + } + #content #corporativos .column2 { + width: 33%; + height: 100%; + } + #content #corporativos .column2 .header { + margin-top: 4.3125rem; + margin-bottom: 2.25rem; + font-size: 2.4375rem; + } + #content #corporativos .column2 form .colores { + vertical-align: center; + } + #content #corporativos .column2 form .colores .text { + margin-right: 0.28125rem; + } + #content #corporativos .column2 form .colores .white { + border: thin solid black; + background-color: white; + } + #content #corporativos .column2 form .colores .black { + background-color: black; + } + #content #corporativos .column2 form .colores .blue { + background-color: blue; + } + #content #corporativos .column2 form .colores .green { + background-color: lime; + } + #content #corporativos .column2 form .colores .yellow { + background-color: yellow; + } + #content #corporativos .column2 form .colores .orange { + background-color: #ff8200; + } + #content #corporativos .column2 form .colores .red { + background-color: red; + } + #content #corporativos .column2 form .colores .circle { + display: inline-block; + width: 0.9375rem; + height: 0.9375rem; + border-radius: 8000px; + margin: auto 0.09375rem; + cursor: pointer; + } + #content #corporativos .column2 form .colores .circle.selected { + width: 1.125rem; + height: 1.125rem; + cursor: default; + } + #content #corporativos .column2 form .row { + margin-bottom: 0.84375rem; + } + #content #corporativos .column2 form .colores.linea { + margin-bottom: 1.5rem; + } + #content #corporativos .column2 form .input.cantidad { + width: 4.5rem; + border: thin solid black; + text-align: center; + padding: 0.5rem 0.05rem; + font-size: 0.8333333333rem; + } + #content #corporativos .column2 form .input.cantidad button { + background: none; + border: none; + width: 1rem; + margin: 0; + padding: 0; + cursor: pointer; + } + #content #corporativos .column2 form .input.cantidad input { + width: 2rem; + background: none; + margin: 0; + border: 0; + padding: 0; + text-align: center; + } + #content #corporativos .column2 form .input [type=file] { + display: none; + } + #content #corporativos .column2 form .input .file { + display: inline-block; + height: 2.25rem; + width: 14.0625rem; + padding-top: 0.28125rem; + background-color: #cccccb; + border: thin solid #333; + font-size: 0.8333333333rem; + text-align: center; + cursor: pointer; + } + #content #corporativos .column2 form .input [type=text] { + height: 1.6875rem; + background-color: white; + border: none !important; + border-radius: 0 !important; + } + #content #corporativos .column2 form textarea { + height: 6.75rem; + background-color: white; + border: none !important; + border-radius: 0 !important; + margin-bottom: 1.5rem; + } + #content #corporativos .column2 form .button { + width: 100%; + background-color: #666667; + color: white; + border: none !important; + border-radius: 0 !important; + } + #content #felices { + height: 21.875rem; + padding: 0 1rem !important; + padding-top: 5.625rem !important; + } + #content #felices .header { + font-size: 1.8333333333rem; + } + #content #felices .testimonios { + margin-top: 2.34375rem; + display: flex; + justify-content: space-between; + text-align: center; + } + #content #felices .testimonios .testimonio { + height: 7.5rem; + color: #666667; + margin-top: 1.875rem; + width: 30%; + text-align: center; + } + #content #felices .nav { + display: block; + text-align: center; + color: #666667; + } + #content #formulario { + height: 30rem; + padding: 0 1rem !important; + } + #content #formulario .whatsapp-link { + color: inherit; + } + #content #formulario > .column { + float: left; + padding-left: 1rem !important; + padding-right: 1rem !important; + } + #content #formulario > .column::after { + clear: both; + } + #content #formulario > .flotante { + position: absolute; + top: 17.15625rem; + margin: auto; + left: 40%; + width: 11.25rem; + text-align: center; + } + #content #formulario > .flotante > .content { + width: 12.1875rem; + margin: auto; + left: -50%; + } + #content #formulario > .flotante > .content .item { + display: block; + padding: 0.46875rem 0; + } + #content #formulario > .flotante > .content div.whatsapp { + height: 2.8125rem; + background-color: #1a9947; + color: #fff; + font-size: 0.9375rem; + } + #content #formulario > .flotante > .content div.whatsapp > i { + position: relative; + font-size: 1.3333333333rem; + top: 0.28125rem; + } + #content #formulario > .flotante > .content .rrss { + display: flex; + justify-content: space-around; + font-size: 1.875rem; + } + #content #formulario > .flotante > .content .rrss i.inverted.grey { + color: white !important; + } + #content #formulario > .column1 { + width: 90%; + margin-top: 2.53125rem; + } + #content #formulario > .column1 > img { + width: 50.625rem; + height: 32.8125rem; + float: left; + } + #content #formulario > .column2 { + width: 10%; + } + #content #formulario > .column2 .header { + margin-top: 1.875rem; + text-align: center; + font-size: 1.8333333333rem; + } + #content #formulario > .column2 .header .whatsapp-link { + display: inline-block; + width: 2.34375rem; + height: 2.34375rem; + font-size: 2.0833333333rem; + } + #content #formulario > .column2 .paragraph { + padding-top: 1rem; + padding-bottom: 2.34375rem; + justify-content: center; + } + #content #formulario > .column2 form input { + border-radius: 0 !important; + height: 1.6875rem; + margin-bottom: 0.84375rem; + background-color: rgba(255, 255, 255, 0.5); + font-size: 0.8333333333rem; + } + #content #formulario > .column2 form input::placeholder { + color: #333333; + } + #content #formulario > .column2 form textarea { + border-radius: 0 !important; + height: 6.75rem; + margin-bottom: 2.34375rem; + background-color: rgba(255, 255, 255, 0.5); + font-size: 0.8333333333rem; + } + #content #formulario > .column2 form textarea::placeholder { + color: #333333; + } + #content #formulario > .column2 form .button { + width: 100%; + border-radius: 0 !important; + background-color: white; + color: #333333; + } + #content section { + background: none; + } + #content section.segment > .container { + height: 100%; + } + #content section.segment > .container > .column1 { + display: inline-block; + width: 90rem; + } + #content section.segment > .container > .column2 { + display: inline-block; + width: 10rem; + } + #content .simple.segment { + border: none !important; + border-radius: 0 !important; + box-shadow: none !important; + margin: 0 !important; + padding: 0 !important; + } + #content .simple.segment > .ui.grid { + height: 100%; + } + #content .fondo-blanco { + background-color: rgba(255, 255, 255, 0.5); + } } -#subir .container { - text-align: right; - padding: 0 1rem !important; -} -#subir .container i.icons { - cursor: pointer; +@media screen and (min-width: 800px) { + #backgrounds .cabezal { + height: 31.25rem; + background-image: url("../images/banner.jpg"); + background-repeat: no-repeat; + background-size: 100rem; + background-position: bottom -2.5rem center; + background-color: rgba(0, 0, 0, 0.4); + background-blend-mode: multiply; + } + #backgrounds .seccion1 { + height: 25rem; + background-image: linear-gradient(#cccccc, #cccccc); + background-position: left 7rem; + background-size: 100% 8rem; + background-repeat: no-repeat; + } + #backgrounds .seccion2 { + height: 27.5rem; + background-image: url("../images/fondo23.png"); + } + #backgrounds .seccion2 .diagonal { + border-bottom: 27.5rem solid rgba(204, 204, 204, 0.5); + border-right: 118.75rem solid transparent; + } + #backgrounds .dimensiones { + height: 27.5rem; + background-image: url("../images/fondo23.png"); + } + #backgrounds .dimensiones .fondo-gris { + width: 100%; + height: 100%; + background-color: rgba(204, 204, 204, 0.5); + } + #backgrounds .construido { + height: 21.875rem; + background-image: url("../images/fondo4.jpg"); + } + #backgrounds .corporativos { + height: 32.5rem; + background-image: url("../images/fondo5.png"); + } + #backgrounds .testimonios { + height: 21.875rem; + background-image: linear-gradient(#cccccc, #cccccc); + background-position: left 7.1875rem; + background-size: 100% 7.375rem; + background-repeat: no-repeat; + } + #backgrounds .formulario { + height: 30rem; + background-color: #cccccc; + clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%); + } + + html { + height: 217.5rem; + overflow: hidden; + } + + body { + height: 217.5rem; + font-family: Roboto, sans; + color: #333333; + } + + #content { + max-width: 67.5rem !important; + height: 217.5rem; + position: relative; + top: -217.5rem; + } + #content #header { + color: white; + width: 100%; + height: 31.25rem; + } + #content #header .ui.menu { + border: none !important; + background: none !important; + box-shadow: none !important; + margin: 0 !important; + color: black; + } + #content #header .ui.menu .dropdown .menu { + /*background: none !important; + border: none !important; + box-shadow: none !important;*/ + color: black; + font-size: 1rem; + } + #content #header .ui.menu .dropdown .menu .item { + padding: 1rem !important; + } + #content #header .ui.menu .item { + color: inherit !important; + font-size: 2rem; + padding: 1.25rem !important; + } + #content #header .ui.menu .item .shopping.cart div { + position: relative; + color: white; + display: inline-block; + top: -2.6rem; + left: 0.2rem; + font-size: 1rem; + font-family: Roboto, sans; + } + #content #header .logo { + padding: 0 !important; + margin: 0 !important; + } + #content #header .logo img { + width: 50%; + max-width: 64.375rem; + } + #content #header .logo .frase1 { + font-size: 1.5rem; + } + #content #header .logo .frase2 { + font-size: 1rem; + } + #content > .column { + display: inline-block; + float: left; + padding-left: 1rem !important; + padding-right: 1rem !important; + } + #content > .column::after { + clear: both; + } + #content > .column1 { + width: 67%; + } + #content > .column1 #seccion1 { + height: 25rem; + width: 100%; + } + #content > .column1 #seccion1 .image-container { + display: flex; + justify-content: space-between; + height: 15rem; + } + #content > .column1 #seccion1 .image-container img { + height: 9.6875rem; + width: 11.75rem; + margin-top: 5.3125rem; + } + #content > .column1 #seccion1 .paragraph { + padding-top: 1.75rem; + line-height: 0.875rem; + text-align: justify; + } + #content > .column1 #seccion1 .paragraph .header { + margin-bottom: 1rem; + font-size: 1.375rem; + } + #content > .column1 #seccion2 { + height: 27.5rem; + } + #content > .column1 #seccion2 > .column { + display: inline-block; + float: left; + width: 50%; + } + #content > .column1 #seccion2 > .column::after { + clear: both; + } + #content > .column1 #seccion2 .column1 { + margin-top: 5rem; + } + #content > .column1 #seccion2 .column1 img { + width: 19.8125rem; + height: 19.8125rem; + } + #content > .column1 #seccion2 .column2 { + margin-top: 7.125rem; + } + #content > .column1 #seccion2 .column2 .row:first-child { + background-color: #00427b; + color: white; + height: 11.25rem; + width: 23.75rem; + padding: 2rem; + margin-left: -3rem; + overflow: hidden; + } + #content > .column1 #seccion2 .column2 .row:first-child .header { + font-weight: bold; + font-size: 1rem; + margin-bottom: 1rem; + } + #content > .column1 #seccion2 .column2 .row:first-child ul { + list-style: disc inside; + font-size: 0.8333333333rem; + } + #content > .column1 #seccion2 .column2 .row:last-child { + margin-top: 1.125rem; + display: flex; + justify-content: space-between; + } + #content > .column1 #seccion2 .column2 .row:last-child img { + width: 4.375rem; + height: 5.3125rem; + } + #content > .column1 #dimensiones { + height: 27.5rem; + } + #content > .column1 #dimensiones .header { + padding: 2.3125rem 0 !important; + } + #content > .column1 #dimensiones .header .bigger { + font-size: 1rem; + } + #content > .column1 #dimensiones .images { + display: flex; + } + #content > .column1 #dimensiones .images .column { + float: left; + } + #content > .column1 #dimensiones .images .column > img { + width: 19.5625rem; + height: 14.6875rem; + } + #content > .column1 #dimensiones .images .column div { + width: 19.5625rem; + margin-top: 1.5625rem; + } + #content > .column1 #construido { + height: 21.875rem; + padding-top: 1.4375rem !important; + } + #content > .column1 #construido .header { + font-size: 1.8333333333rem; + padding: 0.625rem 2.6875rem; + background-color: rgba(255, 255, 255, 0.6); + } + #content > .column2 { + width: 33%; + height: 101.875rem; + } + #content > .column2 .sticky { + height: 16.5625rem; + width: 19.375rem; + margin: auto; + } + #content > .column2 .sticky .row:first-child { + height: 10.625rem; + margin-top: 5rem; + } + #content > .column2 .sticky .row:first-child .column { + display: inline-block; + float: left; + } + #content > .column2 .sticky .row:first-child .column::after { + clear: both; + } + #content > .column2 .sticky .row:first-child .column1 { + vertical-align: bottom; + padding-top: 1.25rem; + width: 12.9166666667rem; + font-size: 1.1666666667rem; + } + #content > .column2 .sticky .row:first-child .column1 .linea { + margin-bottom: 0.625rem; + } + #content > .column2 .sticky .row:first-child .column1 .titulo { + font-size: 2.0833333333rem; + } + #content > .column2 .sticky .row:first-child .column1 .precio { + font-size: 1.3333333333rem; + } + #content > .column2 .sticky .row:first-child .column1 .colores { + vertical-align: center; + } + #content > .column2 .sticky .row:first-child .column1 .colores .text { + margin-right: 0.1875rem; + } + #content > .column2 .sticky .row:first-child .column1 .colores .white { + border: thin solid black; + background-color: white; + } + #content > .column2 .sticky .row:first-child .column1 .colores .black { + background-color: black; + } + #content > .column2 .sticky .row:first-child .column1 .colores .blue { + background-color: blue; + } + #content > .column2 .sticky .row:first-child .column1 .colores .green { + background-color: lime; + } + #content > .column2 .sticky .row:first-child .column1 .colores .yellow { + background-color: yellow; + } + #content > .column2 .sticky .row:first-child .column1 .colores .orange { + background-color: #ff8200; + } + #content > .column2 .sticky .row:first-child .column1 .colores .red { + background-color: red; + } + #content > .column2 .sticky .row:first-child .column1 .colores .circle { + display: inline-block; + width: 0.75rem; + height: 0.75rem; + border-radius: 8000px; + margin: auto 0.0625rem; + cursor: pointer; + } + #content > .column2 .sticky .row:first-child .column1 .colores .circle.selected { + width: 0.875rem; + height: 0.875rem; + cursor: default; + } + #content > .column2 .sticky .row:first-child .column1 .input { + width: 4.5rem; + border: thin solid black; + text-align: center; + padding: 0.5rem 0.05rem; + font-size: 0.8333333333rem; + } + #content > .column2 .sticky .row:first-child .column1 .input button { + background: none; + border: none; + width: 1rem; + margin: 0; + padding: 0; + cursor: pointer; + font-weight: bold; + } + #content > .column2 .sticky .row:first-child .column1 .input input { + width: 2rem; + background: none; + margin: 0; + border: 0; + padding: 0; + text-align: center; + } + #content > .column2 .sticky .row:first-child .column2 { + width: 6.4583333333rem; + } + #content > .column2 .sticky .row:first-child .column2 img { + width: 6.875rem; + height: 10rem; + } + #content > .column2 .sticky .row:last-child .button { + border-radius: 0 !important; + width: 100%; + } + #content #corporativos { + width: 100%; + height: 32.5rem; + margin-top: 101.875rem !important; + } + #content #corporativos > .column { + display: inline-block; + float: left; + padding-left: 1rem !important; + padding-right: 1rem !important; + } + #content #corporativos > .column::after { + clear: both; + } + #content #corporativos .column1 { + width: 67%; + } + #content #corporativos .column1 > .header { + margin-top: 4.1875rem; + margin-bottom: 2.3125rem; + } + #content #corporativos .column1 > .header .bigger { + font-size: 1.625rem; + } + #content #corporativos .column1 .opciones { + display: flex; + justify-content: space-around; + } + #content #corporativos .column1 .opciones .opcion { + display: inline-block; + } + #content #corporativos .column1 .opciones .opcion .img-grande { + display: inline-block; + padding-right: 0.75rem; + } + #content #corporativos .column1 .opciones .opcion .img-grande img { + width: 8.4375rem; + height: 12.5rem; + } + #content #corporativos .column1 .opciones .opcion .descripcion { + display: inline-block; + vertical-align: top; + height: 12.5rem; + padding-top: 1.25rem; + } + #content #corporativos .column1 .opciones .opcion .descripcion .content { + display: block; + } + #content #corporativos .column1 .opciones .opcion .descripcion .content .header { + font-size: 1.1666666667rem; + margin-bottom: 0.625rem; + } + #content #corporativos .column1 .opciones .opcion .descripcion .content ul { + list-style: disc inside; + } + #content #corporativos .column1 .opciones .opcion .descripcion .images { + margin-top: 2.125rem; + } + #content #corporativos .column1 .opciones .opcion .descripcion .images img { + width: 4.375rem; + height: 5.3125rem; + } + #content #corporativos .column2 { + width: 33%; + height: 100%; + } + #content #corporativos .column2 .header { + margin-top: 2.875rem; + margin-bottom: 1.5rem; + font-size: 1.625rem; + } + #content #corporativos .column2 form .colores { + vertical-align: center; + } + #content #corporativos .column2 form .colores .text { + margin-right: 0.1875rem; + } + #content #corporativos .column2 form .colores .white { + border: thin solid black; + background-color: white; + } + #content #corporativos .column2 form .colores .black { + background-color: black; + } + #content #corporativos .column2 form .colores .blue { + background-color: blue; + } + #content #corporativos .column2 form .colores .green { + background-color: lime; + } + #content #corporativos .column2 form .colores .yellow { + background-color: yellow; + } + #content #corporativos .column2 form .colores .orange { + background-color: #ff8200; + } + #content #corporativos .column2 form .colores .red { + background-color: red; + } + #content #corporativos .column2 form .colores .circle { + display: inline-block; + width: 0.75rem; + height: 0.75rem; + border-radius: 8000px; + margin: auto 0.0625rem; + cursor: pointer; + } + #content #corporativos .column2 form .colores .circle.selected { + width: 0.875rem; + height: 0.875rem; + cursor: default; + } + #content #corporativos .column2 form .row { + margin-bottom: 0.5625rem; + } + #content #corporativos .column2 form .input.cantidad { + width: 4.5rem; + background: white; + text-align: center; + padding: 0.5rem 0.05rem; + font-size: 0.8333333333rem; + color: rgba(191, 191, 191, 0.87) !important; + } + #content #corporativos .column2 form .input.cantidad button { + background: none; + border: none; + width: 1rem; + margin: 0; + padding: 0; + cursor: pointer; + color: rgba(191, 191, 191, 0.87) !important; + } + #content #corporativos .column2 form .input.cantidad input { + width: 2rem; + background: none; + margin: 0; + border: 0; + padding: 0; + text-align: center; + color: rgba(191, 191, 191, 0.87) !important; + } + #content #corporativos .column2 form .input [type=file] { + display: none; + } + #content #corporativos .column2 form .input .file { + display: inline-block; + height: 1.5rem; + padding-top: 0.1875rem; + margin-left: 0.3125rem; + font-size: 1.3333333333rem; + text-align: center; + cursor: pointer; + } + #content #corporativos .column2 form .input [type=text] { + height: 1.125rem; + background-color: white; + border: none !important; + border-radius: 0 !important; + } + #content #corporativos .column2 form textarea { + height: 4.5rem; + background-color: white; + border: none !important; + border-radius: 0 !important; + margin-bottom: 1rem; + } + #content #corporativos .column2 form .button { + width: 100%; + background-color: #666667; + color: white; + border: none !important; + border-radius: 0 !important; + } + #content #felices { + height: 21.875rem; + padding: 0 1rem !important; + padding-top: 3.75rem !important; + } + #content #felices .header { + font-size: 1.8333333333rem; + } + #content #felices .testimonios { + margin-top: 1.5625rem; + display: flex; + justify-content: space-between; + text-align: center; + } + #content #felices .testimonios .testimonio { + height: 5rem; + color: #666667; + margin-top: 1.25rem; + width: 30%; + text-align: center; + } + #content #felices .nav { + display: block; + text-align: center; + color: #666667; + } + #content #formulario { + height: 30rem; + padding: 0 1rem !important; + } + #content #formulario .whatsapp-link { + color: inherit; + } + #content #formulario > .column { + float: left; + padding-left: 1rem !important; + padding-right: 1rem !important; + } + #content #formulario > .column::after { + clear: both; + } + #content #formulario > .flotante { + position: absolute; + top: 11.4375rem; + margin: auto; + left: 40%; + width: 13.5rem; + text-align: center; + } + #content #formulario > .flotante > .content { + width: 8.125rem; + margin: auto; + left: -50%; + } + #content #formulario > .flotante > .content .item { + display: block; + padding: 0.3125rem 0; + } + #content #formulario > .flotante > .content div.whatsapp { + height: 1.875rem; + background-color: #1a9947; + color: #fff; + font-size: 0.625rem; + } + #content #formulario > .flotante > .content div.whatsapp > i { + position: relative; + font-size: 1.3333333333rem; + top: 0.1875rem; + } + #content #formulario > .flotante > .content .rrss { + display: flex; + justify-content: space-around; + font-size: 1.25rem; + } + #content #formulario > .flotante > .content .rrss i.inverted.grey { + color: white !important; + } + #content #formulario > .column1 { + width: 67%; + margin-top: 1.6875rem; + } + #content #formulario > .column1 > img { + width: 33.75rem; + height: 21.875rem; + float: left; + } + #content #formulario > .column2 { + width: 33%; + } + #content #formulario > .column2 .header { + margin-top: 1.25rem; + text-align: center; + font-size: 1.8333333333rem; + } + #content #formulario > .column2 .header .whatsapp-link { + display: inline-block; + width: 1.5625rem; + height: 1.5625rem; + font-size: 2.0833333333rem; + } + #content #formulario > .column2 .paragraph { + padding-top: 1rem; + padding-bottom: 1.5625rem; + justify-content: center; + } + #content #formulario > .column2 form input { + border-radius: 0 !important; + height: 1.125rem; + margin-bottom: 0.5625rem; + background-color: rgba(255, 255, 255, 0.5); + font-size: 0.8333333333rem; + } + #content #formulario > .column2 form input::placeholder { + color: #333333; + } + #content #formulario > .column2 form textarea { + border-radius: 0 !important; + height: 4.5rem; + margin-bottom: 1.5625rem; + background-color: rgba(255, 255, 255, 0.5); + font-size: 0.8333333333rem; + } + #content #formulario > .column2 form textarea::placeholder { + color: #333333; + } + #content #formulario > .column2 form .button { + width: 100%; + border-radius: 0 !important; + background-color: white; + color: #333333; + } + #content section { + background: none; + } + #content section.segment > .container { + height: 100%; + } + #content section.segment > .container > .column1 { + display: inline-block; + width: 67rem; + } + #content section.segment > .container > .column2 { + display: inline-block; + width: 33rem; + } + #content .simple.segment { + border: none !important; + border-radius: 0 !important; + box-shadow: none !important; + margin: 0 !important; + padding: 0 !important; + } + #content .simple.segment > .ui.grid { + height: 100%; + } + #content .fondo-blanco { + background-color: rgba(255, 255, 255, 0.5); + } } \ No newline at end of file diff --git a/public/assets/styles/main.min.css b/public/assets/styles/main.min.css index fab7ac5..4689107 100644 --- a/public/assets/styles/main.min.css +++ b/public/assets/styles/main.min.css @@ -1,2 +1,2 @@ -*,*:before,*:after{box-sizing:border-box}html,body,div,span,object,iframe,figure,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,code,em,img,small,strike,strong,sub,sup,tt,b,u,i,ol,ul,li,fieldset,form,label,table,caption,tbody,tfoot,thead,tr,th,td,main,canvas,embed,footer,header,nav,section,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;text-size-adjust:none}footer,header,nav,section,main{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}input{-webkit-appearance:none;border-radius:0}#backgrounds .cabezal{height:25rem;background-image:url("../images/banner.jpg");background-repeat:no-repeat;background-size:100rem;background-position:top center;background-color:rgba(0,0,0,.4);background-blend-mode:multiply}#backgrounds .seccion1{height:25rem;background-image:linear-gradient(#cccccc, #cccccc);background-position:left 7rem;background-size:100% 8rem;background-repeat:no-repeat}#backgrounds .seccion2{height:27.5rem;background-image:url("../images/fondo23.png")}#backgrounds .seccion2 .diagonal{border-bottom:27.5rem solid rgba(204,204,204,.5);border-right:118.75rem solid transparent}#backgrounds .dimensiones{height:27.5rem;background-image:url("../images/fondo23.png")}#backgrounds .dimensiones .fondo-gris{width:100%;height:100%;background-color:rgba(204,204,204,.5)}#backgrounds .construido{height:21.875rem;background-image:url("../images/fondo4.jpg")}#backgrounds .corporativos{height:32.5rem;background-image:url("../images/fondo5.png")}#backgrounds .testimonios{height:21.875rem;background-image:linear-gradient(#cccccc, #cccccc);background-position:left 7.1875rem;background-size:100% 7.375rem;background-repeat:no-repeat}#backgrounds .formulario{height:30rem;background-color:#ccc;clip-path:polygon(50% 0, 100% 0%, 100% 100%, 0% 100%)}body{height:211.25rem;font-family:Roboto,sans;color:#333}#content{max-width:67.5rem !important;height:211.25rem;position:relative;top:-211.25rem}#content #header{color:#fff;width:100%;height:25rem}#content #header .ui.menu{border:none !important;background:none !important;background-color:rgba(100,100,100,.3) !important;box-shadow:none !important;margin:0 !important}#content #header .ui.menu .dropdown .menu{color:#000;font-size:1rem}#content #header .ui.menu .dropdown .menu .item{padding:1rem !important}#content #header .ui.menu .item{color:inherit !important;font-size:2rem;padding:1.25rem !important}#content #header .ui.menu .item .shopping.cart div{position:relative;color:#000;display:inline-block;top:-2.6rem;left:.2rem;font-size:1rem;font-family:Roboto,sans}#content #header .logo{padding:0 !important;margin:0 !important}#content #header .logo img{width:50%;max-width:64.375rem}#content #header .logo .frase1{font-size:1.5rem}#content #header .logo .frase2{font-size:1rem}#content>.column{display:inline-block;float:left;padding-left:1rem !important;padding-right:1rem !important}#content>.column::after{clear:both}#content>.column1{width:67%}#content>.column1 #seccion1{height:25rem;width:100%}#content>.column1 #seccion1 .image-container{display:flex;justify-content:space-between;height:15rem}#content>.column1 #seccion1 .image-container img{height:9.6875rem;width:11.75rem;margin-top:5.3125rem}#content>.column1 #seccion1 .paragraph{padding-top:1.75rem;line-height:.875rem;text-align:justify}#content>.column1 #seccion1 .paragraph .header{margin-bottom:1rem;font-size:1.375rem}#content>.column1 #seccion2{height:27.5rem}#content>.column1 #seccion2>.column{display:inline-block;float:left;width:50%}#content>.column1 #seccion2>.column::after{clear:both}#content>.column1 #seccion2 .column1{margin-top:5rem}#content>.column1 #seccion2 .column1 img{width:19.8125rem;height:19.8125rem}#content>.column1 #seccion2 .column2{margin-top:7.125rem}#content>.column1 #seccion2 .column2 .row:first-child{background-color:#00427b;color:#fff;height:11.25rem;width:23.75rem;padding:2rem;margin-left:-3rem;overflow:hidden}#content>.column1 #seccion2 .column2 .row:first-child .header{font-weight:bold;font-size:1rem;margin-bottom:1rem}#content>.column1 #seccion2 .column2 .row:first-child ul{list-style:disc inside;font-size:.8333333333rem}#content>.column1 #seccion2 .column2 .row:last-child{margin-top:1.125rem;display:flex;justify-content:space-between}#content>.column1 #seccion2 .column2 .row:last-child img{width:4.375rem;height:5.3125rem}#content>.column1 #dimensiones{height:27.5rem}#content>.column1 #dimensiones .header{padding:2.3125rem 0 !important}#content>.column1 #dimensiones .header .bigger{font-size:1rem}#content>.column1 #dimensiones .images{display:flex}#content>.column1 #dimensiones .images .column{float:left}#content>.column1 #dimensiones .images .column>img{width:19.5625rem;height:14.6875rem}#content>.column1 #dimensiones .images .column div{width:19.5625rem;margin-top:1.5625rem}#content>.column1 #construido{height:21.875rem;padding-top:1.4375rem !important}#content>.column1 #construido .header{font-size:1.8333333333rem;padding:.625rem 2.6875rem;background-color:rgba(255,255,255,.6)}#content>.column2{width:33%;height:101.875rem}#content>.column2 .sticky{height:16.5625rem;width:19.375rem;margin:auto}#content>.column2 .sticky .row:first-child{height:10.625rem;margin-top:5rem}#content>.column2 .sticky .row:first-child .column{display:inline-block;float:left}#content>.column2 .sticky .row:first-child .column::after{clear:both}#content>.column2 .sticky .row:first-child .column1{vertical-align:bottom;padding-top:1.25rem;width:12.9166666667rem;font-size:1.1666666667rem}#content>.column2 .sticky .row:first-child .column1 .linea{margin-bottom:.625rem}#content>.column2 .sticky .row:first-child .column1 .titulo{font-size:2.0833333333rem}#content>.column2 .sticky .row:first-child .column1 .precio{font-size:1.3333333333rem}#content>.column2 .sticky .row:first-child .column1 .colores{vertical-align:center}#content>.column2 .sticky .row:first-child .column1 .colores .text{margin-right:.1875rem}#content>.column2 .sticky .row:first-child .column1 .colores .white{border:thin solid #000;background-color:#fff}#content>.column2 .sticky .row:first-child .column1 .colores .black{background-color:#000}#content>.column2 .sticky .row:first-child .column1 .colores .blue{background-color:blue}#content>.column2 .sticky .row:first-child .column1 .colores .green{background-color:lime}#content>.column2 .sticky .row:first-child .column1 .colores .yellow{background-color:#ff0}#content>.column2 .sticky .row:first-child .column1 .colores .orange{background-color:#ff8200}#content>.column2 .sticky .row:first-child .column1 .colores .red{background-color:red}#content>.column2 .sticky .row:first-child .column1 .colores .circle{display:inline-block;width:.75rem;height:.75rem;border-radius:8000px;margin:auto .0625rem;cursor:pointer}#content>.column2 .sticky .row:first-child .column1 .colores .circle.selected{width:.875rem;height:.875rem;cursor:default}#content>.column2 .sticky .row:first-child .column1 .input{width:4.5rem;border:thin solid #000;text-align:center;padding:.5rem .05rem;font-size:.8333333333rem}#content>.column2 .sticky .row:first-child .column1 .input button{background:none;border:none;width:1rem;margin:0;padding:0;cursor:pointer;font-weight:bold}#content>.column2 .sticky .row:first-child .column1 .input input{width:2rem;background:none;margin:0;border:0;padding:0;text-align:center}#content>.column2 .sticky .row:first-child .column2{width:6.4583333333rem}#content>.column2 .sticky .row:first-child .column2 img{width:6.875rem;height:10rem}#content>.column2 .sticky .row:last-child .button{border-radius:0 !important;width:100%}#content #corporativos{width:100%;height:32.5rem;margin-top:101.875rem !important}#content #corporativos>.column{display:inline-block;float:left;padding-left:1rem !important;padding-right:1rem !important}#content #corporativos>.column::after{clear:both}#content #corporativos .column1{width:67%}#content #corporativos .column1>.header{margin-top:4.1875rem;margin-bottom:2.3125rem}#content #corporativos .column1>.header .bigger{font-size:1.625rem}#content #corporativos .column1 .opciones{display:flex;justify-content:space-around}#content #corporativos .column1 .opciones .opcion{display:inline-block}#content #corporativos .column1 .opciones .opcion .img-grande{display:inline-block;padding-right:.75rem}#content #corporativos .column1 .opciones .opcion .img-grande img{width:8.4375rem;height:12.5rem}#content #corporativos .column1 .opciones .opcion .descripcion{display:inline-block;vertical-align:top;height:12.5rem;padding-top:1.25rem}#content #corporativos .column1 .opciones .opcion .descripcion .content{display:block}#content #corporativos .column1 .opciones .opcion .descripcion .content .header{font-size:1.1666666667rem;margin-bottom:.625rem}#content #corporativos .column1 .opciones .opcion .descripcion .content ul{list-style:disc inside}#content #corporativos .column1 .opciones .opcion .descripcion .images{margin-top:2.125rem}#content #corporativos .column1 .opciones .opcion .descripcion .images img{width:4.375rem;height:5.3125rem}#content #corporativos .column2{width:33%;height:100%}#content #corporativos .column2 .header{margin-top:2.875rem;margin-bottom:1.5rem;font-size:1.625rem}#content #corporativos .column2 form .colores{vertical-align:center}#content #corporativos .column2 form .colores .text{margin-right:.1875rem}#content #corporativos .column2 form .colores .white{border:thin solid #000;background-color:#fff}#content #corporativos .column2 form .colores .black{background-color:#000}#content #corporativos .column2 form .colores .blue{background-color:blue}#content #corporativos .column2 form .colores .green{background-color:lime}#content #corporativos .column2 form .colores .yellow{background-color:#ff0}#content #corporativos .column2 form .colores .orange{background-color:#ff8200}#content #corporativos .column2 form .colores .red{background-color:red}#content #corporativos .column2 form .colores .circle{display:inline-block;width:.75rem;height:.75rem;border-radius:8000px;margin:auto .0625rem;cursor:pointer}#content #corporativos .column2 form .colores .circle.selected{width:.875rem;height:.875rem;cursor:default}#content #corporativos .column2 form .row{margin-bottom:.5625rem}#content #corporativos .column2 form .colores.linea{margin-bottom:1rem}#content #corporativos .column2 form .input.cantidad{width:4.5rem;border:thin solid #000;text-align:center;padding:.5rem .05rem;font-size:.8333333333rem}#content #corporativos .column2 form .input.cantidad button{background:none;border:none;width:1rem;margin:0;padding:0;cursor:pointer}#content #corporativos .column2 form .input.cantidad input{width:2rem;background:none;margin:0;border:0;padding:0;text-align:center}#content #corporativos .column2 form .input [type=file]{display:none}#content #corporativos .column2 form .input .file{display:inline-block;height:1.5rem;width:9.375rem;padding-top:.1875rem;background-color:#cccccb;border:thin solid #333;font-size:.8333333333rem;text-align:center;cursor:pointer}#content #corporativos .column2 form .input [type=text]{height:1.125rem;background-color:#fff;border:none !important;border-radius:0 !important}#content #corporativos .column2 form textarea{height:4.5rem;background-color:#fff;border:none !important;border-radius:0 !important;margin-bottom:1rem}#content #corporativos .column2 form .button{width:100%;background-color:#666667;color:#fff;border:none !important;border-radius:0 !important}#content #felices{height:21.875rem;padding:0 1rem !important;padding-top:3.75rem !important}#content #felices .header{font-size:1.8333333333rem}#content #felices .testimonios{margin-top:1.5625rem;display:flex;justify-content:space-between;text-align:center}#content #felices .testimonios .testimonio{height:5rem;color:#666667;margin-top:1.25rem;width:30%;text-align:center}#content #felices .nav{display:block;text-align:center;color:#666667}#content #formulario{height:30rem;padding:0 1rem !important}#content #formulario .whatsapp-link{color:inherit}#content #formulario>.column{float:left;padding-left:1rem !important;padding-right:1rem !important}#content #formulario>.column::after{clear:both}#content #formulario>.flotante{position:absolute;top:11.4375rem;margin:auto;left:40%;width:13.5rem;text-align:center}#content #formulario>.flotante>.content{width:8.125rem;margin:auto;left:-50%}#content #formulario>.flotante>.content .item{display:block;padding:.3125rem 0}#content #formulario>.flotante>.content div.whatsapp{height:1.875rem;background-color:#1a9947;color:#fff;font-size:.625rem}#content #formulario>.flotante>.content div.whatsapp>i{position:relative;font-size:1.3333333333rem;top:.1875rem}#content #formulario>.flotante>.content .rrss{display:flex;justify-content:space-between;font-size:1.25rem}#content #formulario>.flotante>.content .rrss i.inverted.grey{color:#fff !important}#content #formulario>.column1{width:67%;margin-top:1.6875rem}#content #formulario>.column1>img{width:33.75rem;height:21.875rem;float:left}#content #formulario>.column2{width:33%}#content #formulario>.column2 .header{margin-top:1.25rem;text-align:center;font-size:1.8333333333rem}#content #formulario>.column2 .header .whatsapp-link{display:inline-block;width:1.5625rem;height:1.5625rem;font-size:2.0833333333rem}#content #formulario>.column2 .paragraph{padding-top:1rem;padding-bottom:1.5625rem;justify-content:center}#content #formulario>.column2 form input{border-radius:0 !important;height:1.125rem;margin-bottom:.5625rem;background-color:rgba(255,255,255,.5);font-size:.8333333333rem}#content #formulario>.column2 form input::placeholder{color:#333}#content #formulario>.column2 form textarea{border-radius:0 !important;height:4.5rem;margin-bottom:1.5625rem;background-color:rgba(255,255,255,.5);font-size:.8333333333rem}#content #formulario>.column2 form textarea::placeholder{color:#333}#content #formulario>.column2 form .button{width:100%;border-radius:0 !important;background-color:#fff;color:#333}#content section{background:none}#content section.segment>.container{height:100%}#content section.segment>.container>.column1{display:inline-block;width:67rem}#content section.segment>.container>.column2{display:inline-block;width:33rem}#content .simple.segment{border:none !important;border-radius:0 !important;box-shadow:none !important;margin:0 !important;padding:0 !important}#content .simple.segment>.ui.grid{height:100%}#content .fondo-blanco{background-color:rgba(255,255,255,.5)}#subir{width:100%}#subir .container{text-align:right;padding:0 1rem !important}#subir .container i.icons{cursor:pointer} +*,*:before,*:after{box-sizing:border-box}html,body,div,span,object,iframe,figure,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,code,em,img,small,strike,strong,sub,sup,tt,b,u,i,ol,ul,li,fieldset,form,label,table,caption,tbody,tfoot,thead,tr,th,td,main,canvas,embed,footer,header,nav,section,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;text-size-adjust:none}footer,header,nav,section,main{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}input{-webkit-appearance:none;border-radius:0}@media screen and (max-width: 800px){#backgrounds .cabezal{height:25rem;background-image:url("../images/banner.jpg");background-repeat:no-repeat;background-size:160%;background-position:bottom -0.9375rem center;background-color:rgba(0,0,0,.4);background-blend-mode:multiply}#backgrounds .seccion1{height:25rem;background-image:linear-gradient(#cccccc, #cccccc);background-position:left 10.5rem;background-size:100% 12rem;background-repeat:no-repeat}#backgrounds .seccion2{height:27.5rem;background-image:url("../images/fondo23.png")}#backgrounds .seccion2 .diagonal{border-bottom:27.5rem solid rgba(204,204,204,.5);border-right:178.125rem solid transparent}#backgrounds .dimensiones{height:27.5rem;background-image:url("../images/fondo23.png")}#backgrounds .dimensiones .fondo-gris{width:100%;height:100%;background-color:rgba(204,204,204,.5)}#backgrounds .construido{height:21.875rem;background-image:url("../images/fondo4.jpg")}#backgrounds .corporativos{height:32.5rem;background-image:url("../images/fondo5.png")}#backgrounds .testimonios{height:21.875rem;background-image:linear-gradient(#cccccc, #cccccc);background-position:left 10.78125rem;background-size:100% 11.0625rem;background-repeat:no-repeat}#backgrounds .formulario{height:30rem;background-color:#ccc;clip-path:polygon(50% 0, 100% 0%, 100% 100%, 0% 100%)}html{font-size:10.6666666667px;width:100%;overflow-x:hidden}body{height:211.25rem;font-family:Roboto,sans;color:#333}#content{width:100% !important;height:211.25rem;margin:0 !important;position:relative;top:-211.25rem}#content #header{color:#fff;width:100%;height:25rem}#content #header .ui.menu{border:none !important;background:none !important;box-shadow:none !important;margin:0 !important;color:#000}#content #header .ui.menu .dropdown .menu{color:#000;font-size:1rem}#content #header .ui.menu .dropdown .menu .item{padding:1rem !important}#content #header .ui.menu .item{color:inherit !important;font-size:1rem}#content #header .ui.menu .item .shopping.cart div{position:relative;color:#000;display:inline-block;top:-1.3rem;left:.1rem;font-size:.5rem;font-family:Roboto,sans}#content #header .logo{padding:0 !important;margin:0 !important}#content #header .logo img{width:50%;max-width:56.25rem}#content #header .logo .frase1{width:75%;margin:auto;font-size:1rem}#content #header .logo .frase2{font-size:.7rem}#content>.column{display:inline-block;float:left;padding-left:1rem !important;padding-right:1rem !important}#content>.column::after{clear:both}#content>.column1{width:90%}#content>.column1 #seccion1{height:25rem;width:100%}#content>.column1 #seccion1 .image-container{display:flex;justify-content:space-between;height:22.5rem}#content>.column1 #seccion1 .image-container img{width:50%;margin-top:7.96875rem}#content>.column1 #seccion1 .paragraph{padding-top:2.625rem;line-height:1.3125rem;text-align:justify}#content>.column1 #seccion1 .paragraph .header{margin-bottom:1rem;font-size:2.0625rem}#content>.column1 #seccion2{height:27.5rem}#content>.column1 #seccion2>.column{display:inline-block;float:left;width:50%}#content>.column1 #seccion2>.column::after{clear:both}#content>.column1 #seccion2 .column1{margin-top:7.5rem}#content>.column1 #seccion2 .column1 img{width:29.71875rem;height:29.71875rem}#content>.column1 #seccion2 .column2{margin-top:10.6875rem}#content>.column1 #seccion2 .column2 .row:first-child{background-color:#00427b;color:#fff;height:16.875rem;width:35.625rem;padding:2rem;margin-left:-3rem;overflow:hidden}#content>.column1 #seccion2 .column2 .row:first-child .header{font-weight:bold;font-size:1.5rem;margin-bottom:1rem}#content>.column1 #seccion2 .column2 .row:first-child ul{list-style:disc inside;font-size:.8333333333rem}#content>.column1 #seccion2 .column2 .row:last-child{margin-top:1.6875rem;display:flex;justify-content:space-between}#content>.column1 #seccion2 .column2 .row:last-child img{width:6.5625rem;height:7.96875rem}#content>.column1 #dimensiones{height:27.5rem}#content>.column1 #dimensiones .header{padding:3.46875rem 0 !important}#content>.column1 #dimensiones .header .bigger{font-size:1.5rem}#content>.column1 #dimensiones .images{display:flex}#content>.column1 #dimensiones .images .column{float:left}#content>.column1 #dimensiones .images .column>img{width:29.34375rem;height:22.03125rem}#content>.column1 #dimensiones .images .column div{width:29.34375rem;margin-top:2.34375rem}#content>.column1 #construido{height:21.875rem;padding-top:2.15625rem !important}#content>.column1 #construido .header{font-size:1.8333333333rem;padding:.9375rem 4.03125rem;background-color:rgba(255,255,255,.6)}#content>.column2{width:10%;height:101.875rem}#content>.column2 .sticky{height:24.84375rem;width:29.0625rem;margin:auto}#content>.column2 .sticky .row:first-child{height:15.9375rem;margin-top:7.5rem}#content>.column2 .sticky .row:first-child .column{display:inline-block;float:left}#content>.column2 .sticky .row:first-child .column::after{clear:both}#content>.column2 .sticky .row:first-child .column1{vertical-align:bottom;padding-top:1.875rem;width:19.375rem;font-size:1.1666666667rem}#content>.column2 .sticky .row:first-child .column1 .linea{margin-bottom:.9375rem}#content>.column2 .sticky .row:first-child .column1 .titulo{font-size:2.0833333333rem}#content>.column2 .sticky .row:first-child .column1 .precio{font-size:1.3333333333rem}#content>.column2 .sticky .row:first-child .column1 .colores{vertical-align:center}#content>.column2 .sticky .row:first-child .column1 .colores .text{margin-right:.28125rem}#content>.column2 .sticky .row:first-child .column1 .colores .white{border:thin solid #000;background-color:#fff}#content>.column2 .sticky .row:first-child .column1 .colores .black{background-color:#000}#content>.column2 .sticky .row:first-child .column1 .colores .blue{background-color:blue}#content>.column2 .sticky .row:first-child .column1 .colores .green{background-color:lime}#content>.column2 .sticky .row:first-child .column1 .colores .yellow{background-color:#ff0}#content>.column2 .sticky .row:first-child .column1 .colores .orange{background-color:#ff8200}#content>.column2 .sticky .row:first-child .column1 .colores .red{background-color:red}#content>.column2 .sticky .row:first-child .column1 .colores .circle{display:inline-block;width:.9375rem;height:.9375rem;border-radius:8000px;margin:auto .09375rem;cursor:pointer}#content>.column2 .sticky .row:first-child .column1 .colores .circle.selected{width:1.125rem;height:1.125rem;cursor:default}#content>.column2 .sticky .row:first-child .column1 .input{width:4.5rem;border:thin solid #000;text-align:center;padding:.5rem .05rem;font-size:.8333333333rem}#content>.column2 .sticky .row:first-child .column1 .input button{background:none;border:none;width:1rem;margin:0;padding:0;cursor:pointer;font-weight:bold}#content>.column2 .sticky .row:first-child .column1 .input input{width:2rem;background:none;margin:0;border:0;padding:0;text-align:center}#content>.column2 .sticky .row:first-child .column2{width:9.6875rem}#content>.column2 .sticky .row:first-child .column2 img{width:10.3125rem;height:15rem}#content>.column2 .sticky .row:last-child .button{border-radius:0 !important;width:100%}#content #corporativos{width:100%;height:32.5rem;margin-top:101.875rem !important}#content #corporativos>.column{display:inline-block;float:left;padding-left:1rem !important;padding-right:1rem !important}#content #corporativos>.column::after{clear:both}#content #corporativos .column1{width:67%}#content #corporativos .column1>.header{margin-top:6.28125rem;margin-bottom:3.46875rem}#content #corporativos .column1>.header .bigger{font-size:2.4375rem}#content #corporativos .column1 .opciones{display:flex;justify-content:space-around}#content #corporativos .column1 .opciones .opcion{display:inline-block}#content #corporativos .column1 .opciones .opcion .img-grande{display:inline-block;padding-right:1.125rem}#content #corporativos .column1 .opciones .opcion .img-grande img{width:12.65625rem;height:18.75rem}#content #corporativos .column1 .opciones .opcion .descripcion{display:inline-block;vertical-align:top;height:18.75rem;padding-top:1.875rem}#content #corporativos .column1 .opciones .opcion .descripcion .content{display:block}#content #corporativos .column1 .opciones .opcion .descripcion .content .header{font-size:1.1666666667rem;margin-bottom:.9375rem}#content #corporativos .column1 .opciones .opcion .descripcion .content ul{list-style:disc inside}#content #corporativos .column1 .opciones .opcion .descripcion .images{margin-top:3.1875rem}#content #corporativos .column1 .opciones .opcion .descripcion .images img{width:6.5625rem;height:7.96875rem}#content #corporativos .column2{width:33%;height:100%}#content #corporativos .column2 .header{margin-top:4.3125rem;margin-bottom:2.25rem;font-size:2.4375rem}#content #corporativos .column2 form .colores{vertical-align:center}#content #corporativos .column2 form .colores .text{margin-right:.28125rem}#content #corporativos .column2 form .colores .white{border:thin solid #000;background-color:#fff}#content #corporativos .column2 form .colores .black{background-color:#000}#content #corporativos .column2 form .colores .blue{background-color:blue}#content #corporativos .column2 form .colores .green{background-color:lime}#content #corporativos .column2 form .colores .yellow{background-color:#ff0}#content #corporativos .column2 form .colores .orange{background-color:#ff8200}#content #corporativos .column2 form .colores .red{background-color:red}#content #corporativos .column2 form .colores .circle{display:inline-block;width:.9375rem;height:.9375rem;border-radius:8000px;margin:auto .09375rem;cursor:pointer}#content #corporativos .column2 form .colores .circle.selected{width:1.125rem;height:1.125rem;cursor:default}#content #corporativos .column2 form .row{margin-bottom:.84375rem}#content #corporativos .column2 form .colores.linea{margin-bottom:1.5rem}#content #corporativos .column2 form .input.cantidad{width:4.5rem;border:thin solid #000;text-align:center;padding:.5rem .05rem;font-size:.8333333333rem}#content #corporativos .column2 form .input.cantidad button{background:none;border:none;width:1rem;margin:0;padding:0;cursor:pointer}#content #corporativos .column2 form .input.cantidad input{width:2rem;background:none;margin:0;border:0;padding:0;text-align:center}#content #corporativos .column2 form .input [type=file]{display:none}#content #corporativos .column2 form .input .file{display:inline-block;height:2.25rem;width:14.0625rem;padding-top:.28125rem;background-color:#cccccb;border:thin solid #333;font-size:.8333333333rem;text-align:center;cursor:pointer}#content #corporativos .column2 form .input [type=text]{height:1.6875rem;background-color:#fff;border:none !important;border-radius:0 !important}#content #corporativos .column2 form textarea{height:6.75rem;background-color:#fff;border:none !important;border-radius:0 !important;margin-bottom:1.5rem}#content #corporativos .column2 form .button{width:100%;background-color:#666667;color:#fff;border:none !important;border-radius:0 !important}#content #felices{height:21.875rem;padding:0 1rem !important;padding-top:5.625rem !important}#content #felices .header{font-size:1.8333333333rem}#content #felices .testimonios{margin-top:2.34375rem;display:flex;justify-content:space-between;text-align:center}#content #felices .testimonios .testimonio{height:7.5rem;color:#666667;margin-top:1.875rem;width:30%;text-align:center}#content #felices .nav{display:block;text-align:center;color:#666667}#content #formulario{height:30rem;padding:0 1rem !important}#content #formulario .whatsapp-link{color:inherit}#content #formulario>.column{float:left;padding-left:1rem !important;padding-right:1rem !important}#content #formulario>.column::after{clear:both}#content #formulario>.flotante{position:absolute;top:17.15625rem;margin:auto;left:40%;width:11.25rem;text-align:center}#content #formulario>.flotante>.content{width:12.1875rem;margin:auto;left:-50%}#content #formulario>.flotante>.content .item{display:block;padding:.46875rem 0}#content #formulario>.flotante>.content div.whatsapp{height:2.8125rem;background-color:#1a9947;color:#fff;font-size:.9375rem}#content #formulario>.flotante>.content div.whatsapp>i{position:relative;font-size:1.3333333333rem;top:.28125rem}#content #formulario>.flotante>.content .rrss{display:flex;justify-content:space-around;font-size:1.875rem}#content #formulario>.flotante>.content .rrss i.inverted.grey{color:#fff !important}#content #formulario>.column1{width:90%;margin-top:2.53125rem}#content #formulario>.column1>img{width:50.625rem;height:32.8125rem;float:left}#content #formulario>.column2{width:10%}#content #formulario>.column2 .header{margin-top:1.875rem;text-align:center;font-size:1.8333333333rem}#content #formulario>.column2 .header .whatsapp-link{display:inline-block;width:2.34375rem;height:2.34375rem;font-size:2.0833333333rem}#content #formulario>.column2 .paragraph{padding-top:1rem;padding-bottom:2.34375rem;justify-content:center}#content #formulario>.column2 form input{border-radius:0 !important;height:1.6875rem;margin-bottom:.84375rem;background-color:rgba(255,255,255,.5);font-size:.8333333333rem}#content #formulario>.column2 form input::placeholder{color:#333}#content #formulario>.column2 form textarea{border-radius:0 !important;height:6.75rem;margin-bottom:2.34375rem;background-color:rgba(255,255,255,.5);font-size:.8333333333rem}#content #formulario>.column2 form textarea::placeholder{color:#333}#content #formulario>.column2 form .button{width:100%;border-radius:0 !important;background-color:#fff;color:#333}#content section{background:none}#content section.segment>.container{height:100%}#content section.segment>.container>.column1{display:inline-block;width:90rem}#content section.segment>.container>.column2{display:inline-block;width:10rem}#content .simple.segment{border:none !important;border-radius:0 !important;box-shadow:none !important;margin:0 !important;padding:0 !important}#content .simple.segment>.ui.grid{height:100%}#content .fondo-blanco{background-color:rgba(255,255,255,.5)}}@media screen and (min-width: 800px){#backgrounds .cabezal{height:31.25rem;background-image:url("../images/banner.jpg");background-repeat:no-repeat;background-size:100rem;background-position:bottom -2.5rem center;background-color:rgba(0,0,0,.4);background-blend-mode:multiply}#backgrounds .seccion1{height:25rem;background-image:linear-gradient(#cccccc, #cccccc);background-position:left 7rem;background-size:100% 8rem;background-repeat:no-repeat}#backgrounds .seccion2{height:27.5rem;background-image:url("../images/fondo23.png")}#backgrounds .seccion2 .diagonal{border-bottom:27.5rem solid rgba(204,204,204,.5);border-right:118.75rem solid transparent}#backgrounds .dimensiones{height:27.5rem;background-image:url("../images/fondo23.png")}#backgrounds .dimensiones .fondo-gris{width:100%;height:100%;background-color:rgba(204,204,204,.5)}#backgrounds .construido{height:21.875rem;background-image:url("../images/fondo4.jpg")}#backgrounds .corporativos{height:32.5rem;background-image:url("../images/fondo5.png")}#backgrounds .testimonios{height:21.875rem;background-image:linear-gradient(#cccccc, #cccccc);background-position:left 7.1875rem;background-size:100% 7.375rem;background-repeat:no-repeat}#backgrounds .formulario{height:30rem;background-color:#ccc;clip-path:polygon(50% 0, 100% 0%, 100% 100%, 0% 100%)}html{height:217.5rem;overflow:hidden}body{height:217.5rem;font-family:Roboto,sans;color:#333}#content{max-width:67.5rem !important;height:217.5rem;position:relative;top:-217.5rem}#content #header{color:#fff;width:100%;height:31.25rem}#content #header .ui.menu{border:none !important;background:none !important;box-shadow:none !important;margin:0 !important;color:#000}#content #header .ui.menu .dropdown .menu{color:#000;font-size:1rem}#content #header .ui.menu .dropdown .menu .item{padding:1rem !important}#content #header .ui.menu .item{color:inherit !important;font-size:2rem;padding:1.25rem !important}#content #header .ui.menu .item .shopping.cart div{position:relative;color:#fff;display:inline-block;top:-2.6rem;left:.2rem;font-size:1rem;font-family:Roboto,sans}#content #header .logo{padding:0 !important;margin:0 !important}#content #header .logo img{width:50%;max-width:64.375rem}#content #header .logo .frase1{font-size:1.5rem}#content #header .logo .frase2{font-size:1rem}#content>.column{display:inline-block;float:left;padding-left:1rem !important;padding-right:1rem !important}#content>.column::after{clear:both}#content>.column1{width:67%}#content>.column1 #seccion1{height:25rem;width:100%}#content>.column1 #seccion1 .image-container{display:flex;justify-content:space-between;height:15rem}#content>.column1 #seccion1 .image-container img{height:9.6875rem;width:11.75rem;margin-top:5.3125rem}#content>.column1 #seccion1 .paragraph{padding-top:1.75rem;line-height:.875rem;text-align:justify}#content>.column1 #seccion1 .paragraph .header{margin-bottom:1rem;font-size:1.375rem}#content>.column1 #seccion2{height:27.5rem}#content>.column1 #seccion2>.column{display:inline-block;float:left;width:50%}#content>.column1 #seccion2>.column::after{clear:both}#content>.column1 #seccion2 .column1{margin-top:5rem}#content>.column1 #seccion2 .column1 img{width:19.8125rem;height:19.8125rem}#content>.column1 #seccion2 .column2{margin-top:7.125rem}#content>.column1 #seccion2 .column2 .row:first-child{background-color:#00427b;color:#fff;height:11.25rem;width:23.75rem;padding:2rem;margin-left:-3rem;overflow:hidden}#content>.column1 #seccion2 .column2 .row:first-child .header{font-weight:bold;font-size:1rem;margin-bottom:1rem}#content>.column1 #seccion2 .column2 .row:first-child ul{list-style:disc inside;font-size:.8333333333rem}#content>.column1 #seccion2 .column2 .row:last-child{margin-top:1.125rem;display:flex;justify-content:space-between}#content>.column1 #seccion2 .column2 .row:last-child img{width:4.375rem;height:5.3125rem}#content>.column1 #dimensiones{height:27.5rem}#content>.column1 #dimensiones .header{padding:2.3125rem 0 !important}#content>.column1 #dimensiones .header .bigger{font-size:1rem}#content>.column1 #dimensiones .images{display:flex}#content>.column1 #dimensiones .images .column{float:left}#content>.column1 #dimensiones .images .column>img{width:19.5625rem;height:14.6875rem}#content>.column1 #dimensiones .images .column div{width:19.5625rem;margin-top:1.5625rem}#content>.column1 #construido{height:21.875rem;padding-top:1.4375rem !important}#content>.column1 #construido .header{font-size:1.8333333333rem;padding:.625rem 2.6875rem;background-color:rgba(255,255,255,.6)}#content>.column2{width:33%;height:101.875rem}#content>.column2 .sticky{height:16.5625rem;width:19.375rem;margin:auto}#content>.column2 .sticky .row:first-child{height:10.625rem;margin-top:5rem}#content>.column2 .sticky .row:first-child .column{display:inline-block;float:left}#content>.column2 .sticky .row:first-child .column::after{clear:both}#content>.column2 .sticky .row:first-child .column1{vertical-align:bottom;padding-top:1.25rem;width:12.9166666667rem;font-size:1.1666666667rem}#content>.column2 .sticky .row:first-child .column1 .linea{margin-bottom:.625rem}#content>.column2 .sticky .row:first-child .column1 .titulo{font-size:2.0833333333rem}#content>.column2 .sticky .row:first-child .column1 .precio{font-size:1.3333333333rem}#content>.column2 .sticky .row:first-child .column1 .colores{vertical-align:center}#content>.column2 .sticky .row:first-child .column1 .colores .text{margin-right:.1875rem}#content>.column2 .sticky .row:first-child .column1 .colores .white{border:thin solid #000;background-color:#fff}#content>.column2 .sticky .row:first-child .column1 .colores .black{background-color:#000}#content>.column2 .sticky .row:first-child .column1 .colores .blue{background-color:blue}#content>.column2 .sticky .row:first-child .column1 .colores .green{background-color:lime}#content>.column2 .sticky .row:first-child .column1 .colores .yellow{background-color:#ff0}#content>.column2 .sticky .row:first-child .column1 .colores .orange{background-color:#ff8200}#content>.column2 .sticky .row:first-child .column1 .colores .red{background-color:red}#content>.column2 .sticky .row:first-child .column1 .colores .circle{display:inline-block;width:.75rem;height:.75rem;border-radius:8000px;margin:auto .0625rem;cursor:pointer}#content>.column2 .sticky .row:first-child .column1 .colores .circle.selected{width:.875rem;height:.875rem;cursor:default}#content>.column2 .sticky .row:first-child .column1 .input{width:4.5rem;border:thin solid #000;text-align:center;padding:.5rem .05rem;font-size:.8333333333rem}#content>.column2 .sticky .row:first-child .column1 .input button{background:none;border:none;width:1rem;margin:0;padding:0;cursor:pointer;font-weight:bold}#content>.column2 .sticky .row:first-child .column1 .input input{width:2rem;background:none;margin:0;border:0;padding:0;text-align:center}#content>.column2 .sticky .row:first-child .column2{width:6.4583333333rem}#content>.column2 .sticky .row:first-child .column2 img{width:6.875rem;height:10rem}#content>.column2 .sticky .row:last-child .button{border-radius:0 !important;width:100%}#content #corporativos{width:100%;height:32.5rem;margin-top:101.875rem !important}#content #corporativos>.column{display:inline-block;float:left;padding-left:1rem !important;padding-right:1rem !important}#content #corporativos>.column::after{clear:both}#content #corporativos .column1{width:67%}#content #corporativos .column1>.header{margin-top:4.1875rem;margin-bottom:2.3125rem}#content #corporativos .column1>.header .bigger{font-size:1.625rem}#content #corporativos .column1 .opciones{display:flex;justify-content:space-around}#content #corporativos .column1 .opciones .opcion{display:inline-block}#content #corporativos .column1 .opciones .opcion .img-grande{display:inline-block;padding-right:.75rem}#content #corporativos .column1 .opciones .opcion .img-grande img{width:8.4375rem;height:12.5rem}#content #corporativos .column1 .opciones .opcion .descripcion{display:inline-block;vertical-align:top;height:12.5rem;padding-top:1.25rem}#content #corporativos .column1 .opciones .opcion .descripcion .content{display:block}#content #corporativos .column1 .opciones .opcion .descripcion .content .header{font-size:1.1666666667rem;margin-bottom:.625rem}#content #corporativos .column1 .opciones .opcion .descripcion .content ul{list-style:disc inside}#content #corporativos .column1 .opciones .opcion .descripcion .images{margin-top:2.125rem}#content #corporativos .column1 .opciones .opcion .descripcion .images img{width:4.375rem;height:5.3125rem}#content #corporativos .column2{width:33%;height:100%}#content #corporativos .column2 .header{margin-top:2.875rem;margin-bottom:1.5rem;font-size:1.625rem}#content #corporativos .column2 form .colores{vertical-align:center}#content #corporativos .column2 form .colores .text{margin-right:.1875rem}#content #corporativos .column2 form .colores .white{border:thin solid #000;background-color:#fff}#content #corporativos .column2 form .colores .black{background-color:#000}#content #corporativos .column2 form .colores .blue{background-color:blue}#content #corporativos .column2 form .colores .green{background-color:lime}#content #corporativos .column2 form .colores .yellow{background-color:#ff0}#content #corporativos .column2 form .colores .orange{background-color:#ff8200}#content #corporativos .column2 form .colores .red{background-color:red}#content #corporativos .column2 form .colores .circle{display:inline-block;width:.75rem;height:.75rem;border-radius:8000px;margin:auto .0625rem;cursor:pointer}#content #corporativos .column2 form .colores .circle.selected{width:.875rem;height:.875rem;cursor:default}#content #corporativos .column2 form .row{margin-bottom:.5625rem}#content #corporativos .column2 form .input.cantidad{width:4.5rem;background:#fff;text-align:center;padding:.5rem .05rem;font-size:.8333333333rem;color:rgba(191,191,191,.87) !important}#content #corporativos .column2 form .input.cantidad button{background:none;border:none;width:1rem;margin:0;padding:0;cursor:pointer;color:rgba(191,191,191,.87) !important}#content #corporativos .column2 form .input.cantidad input{width:2rem;background:none;margin:0;border:0;padding:0;text-align:center;color:rgba(191,191,191,.87) !important}#content #corporativos .column2 form .input [type=file]{display:none}#content #corporativos .column2 form .input .file{display:inline-block;height:1.5rem;padding-top:.1875rem;margin-left:.3125rem;font-size:1.3333333333rem;text-align:center;cursor:pointer}#content #corporativos .column2 form .input [type=text]{height:1.125rem;background-color:#fff;border:none !important;border-radius:0 !important}#content #corporativos .column2 form textarea{height:4.5rem;background-color:#fff;border:none !important;border-radius:0 !important;margin-bottom:1rem}#content #corporativos .column2 form .button{width:100%;background-color:#666667;color:#fff;border:none !important;border-radius:0 !important}#content #felices{height:21.875rem;padding:0 1rem !important;padding-top:3.75rem !important}#content #felices .header{font-size:1.8333333333rem}#content #felices .testimonios{margin-top:1.5625rem;display:flex;justify-content:space-between;text-align:center}#content #felices .testimonios .testimonio{height:5rem;color:#666667;margin-top:1.25rem;width:30%;text-align:center}#content #felices .nav{display:block;text-align:center;color:#666667}#content #formulario{height:30rem;padding:0 1rem !important}#content #formulario .whatsapp-link{color:inherit}#content #formulario>.column{float:left;padding-left:1rem !important;padding-right:1rem !important}#content #formulario>.column::after{clear:both}#content #formulario>.flotante{position:absolute;top:11.4375rem;margin:auto;left:40%;width:13.5rem;text-align:center}#content #formulario>.flotante>.content{width:8.125rem;margin:auto;left:-50%}#content #formulario>.flotante>.content .item{display:block;padding:.3125rem 0}#content #formulario>.flotante>.content div.whatsapp{height:1.875rem;background-color:#1a9947;color:#fff;font-size:.625rem}#content #formulario>.flotante>.content div.whatsapp>i{position:relative;font-size:1.3333333333rem;top:.1875rem}#content #formulario>.flotante>.content .rrss{display:flex;justify-content:space-around;font-size:1.25rem}#content #formulario>.flotante>.content .rrss i.inverted.grey{color:#fff !important}#content #formulario>.column1{width:67%;margin-top:1.6875rem}#content #formulario>.column1>img{width:33.75rem;height:21.875rem;float:left}#content #formulario>.column2{width:33%}#content #formulario>.column2 .header{margin-top:1.25rem;text-align:center;font-size:1.8333333333rem}#content #formulario>.column2 .header .whatsapp-link{display:inline-block;width:1.5625rem;height:1.5625rem;font-size:2.0833333333rem}#content #formulario>.column2 .paragraph{padding-top:1rem;padding-bottom:1.5625rem;justify-content:center}#content #formulario>.column2 form input{border-radius:0 !important;height:1.125rem;margin-bottom:.5625rem;background-color:rgba(255,255,255,.5);font-size:.8333333333rem}#content #formulario>.column2 form input::placeholder{color:#333}#content #formulario>.column2 form textarea{border-radius:0 !important;height:4.5rem;margin-bottom:1.5625rem;background-color:rgba(255,255,255,.5);font-size:.8333333333rem}#content #formulario>.column2 form textarea::placeholder{color:#333}#content #formulario>.column2 form .button{width:100%;border-radius:0 !important;background-color:#fff;color:#333}#content section{background:none}#content section.segment>.container{height:100%}#content section.segment>.container>.column1{display:inline-block;width:67rem}#content section.segment>.container>.column2{display:inline-block;width:33rem}#content .simple.segment{border:none !important;border-radius:0 !important;box-shadow:none !important;margin:0 !important;padding:0 !important}#content .simple.segment>.ui.grid{height:100%}#content .fondo-blanco{background-color:rgba(255,255,255,.5)}} /*# sourceMappingURL=maps/main.min.css.map */ diff --git a/public/assets/styles/maps/main.min.css.map b/public/assets/styles/maps/main.min.css.map index 16c7646..b93f204 100644 --- a/public/assets/styles/maps/main.min.css.map +++ b/public/assets/styles/maps/main.min.css.map @@ -1 +1 @@ -{"version":3,"sources":["main.css"],"names":[],"mappings":"AAAA,mBACE,sBAGF,sPACE,SACA,UACA,SACA,eACA,aACA,wBACA,kCACA,mCACA,sBAGF,+BACE,cAGF,KACE,cAGF,MACE,gBAGF,aACE,YAGF,oDACE,WACA,aAGF,MACE,yBACA,iBAGF,MACE,wBACA,gBAGF,sBACE,aACA,6CACA,4BACA,uBACA,+BACA,gCACA,+BAEF,uBACE,aACA,mDACA,8BACA,0BACA,4BAEF,uBACE,eACA,8CAEF,iCACE,iDACA,yCAEF,0BACE,eACA,8CAEF,sCACE,WACA,YACA,sCAEF,yBACE,iBACA,6CAEF,2BACE,eACA,6CAEF,0BACE,iBACA,mDACA,mCACA,8BACA,4BAEF,yBACE,aACA,sBACA,sDAGF,KACE,iBACA,wBACA,WAGF,SACE,6BACA,iBACA,kBACA,eAEF,iBACE,WACA,WACA,aAEF,0BACE,uBACA,2BACA,iDACA,2BACA,oBAEF,0CAIE,WACA,eAEF,gDACE,wBAEF,gCACE,yBACA,eACA,2BAEF,mDACE,kBACA,WACA,qBACA,YACA,WACA,eACA,wBAEF,uBACE,qBACA,oBAEF,2BACE,UACA,oBAEF,+BACE,iBAEF,+BACE,eAEF,iBACE,qBACA,WACA,6BACA,8BAEF,wBACE,WAEF,kBACE,UAEF,4BACE,aACA,WAEF,6CACE,aACA,8BACA,aAEF,iDACE,iBACA,eACA,qBAEF,uCACE,oBACA,oBACA,mBAEF,+CACE,mBACA,mBAEF,4BACE,eAEF,oCACE,qBACA,WACA,UAEF,2CACE,WAEF,qCACE,gBAEF,yCACE,iBACA,kBAEF,qCACE,oBAEF,sDACE,yBACA,WACA,gBACA,eACA,aACA,kBACA,gBAEF,8DACE,iBACA,eACA,mBAEF,yDACE,uBACA,yBAEF,qDACE,oBACA,aACA,8BAEF,yDACE,eACA,iBAEF,+BACE,eAEF,uCACE,+BAEF,+CACE,eAEF,uCACE,aAEF,+CACE,WAEF,mDACE,iBACA,kBAEF,mDACE,iBACA,qBAEF,8BACE,iBACA,iCAEF,sCACE,0BACA,0BACA,sCAEF,kBACE,UACA,kBAEF,0BACE,kBACA,gBACA,YAEF,2CACE,iBACA,gBAEF,mDACE,qBACA,WAEF,0DACE,WAEF,oDACE,sBACA,oBACA,uBACA,0BAEF,2DACE,sBAEF,4DACE,0BAEF,4DACE,0BAEF,6DACE,sBAEF,mEACE,sBAEF,oEACE,uBACA,sBAEF,oEACE,sBAEF,mEACE,sBAEF,oEACE,sBAEF,qEACE,sBAEF,qEACE,yBAEF,kEACE,qBAEF,qEACE,qBACA,aACA,cACA,qBACA,qBACA,eAEF,8EACE,cACA,eACA,eAEF,2DACE,aACA,uBACA,kBACA,qBACA,yBAEF,kEACE,gBACA,YACA,WACA,SACA,UACA,eACA,iBAEF,iEACE,WACA,gBACA,SACA,SACA,UACA,kBAEF,oDACE,sBAEF,wDACE,eACA,aAEF,kDACE,2BACA,WAEF,uBACE,WACA,eACA,iCAEF,+BACE,qBACA,WACA,6BACA,8BAEF,sCACE,WAEF,gCACE,UAEF,wCACE,qBACA,wBAEF,gDACE,mBAEF,0CACE,aACA,6BAEF,kDACE,qBAEF,8DACE,qBACA,qBAEF,kEACE,gBACA,eAEF,+DACE,qBACA,mBACA,eACA,oBAEF,wEACE,cAEF,gFACE,0BACA,sBAEF,2EACE,uBAEF,uEACE,oBAEF,2EACE,eACA,iBAEF,gCACE,UACA,YAEF,wCACE,oBACA,qBACA,mBAEF,8CACE,sBAEF,oDACE,sBAEF,qDACE,uBACA,sBAEF,qDACE,sBAEF,oDACE,sBAEF,qDACE,sBAEF,sDACE,sBAEF,sDACE,yBAEF,mDACE,qBAEF,sDACE,qBACA,aACA,cACA,qBACA,qBACA,eAEF,+DACE,cACA,eACA,eAEF,0CACE,uBAEF,oDACE,mBAEF,qDACE,aACA,uBACA,kBACA,qBACA,yBAEF,4DACE,gBACA,YACA,WACA,SACA,UACA,eAEF,2DACE,WACA,gBACA,SACA,SACA,UACA,kBAEF,wDACE,aAEF,kDACE,qBACA,cACA,eACA,qBACA,yBACA,uBACA,yBACA,kBACA,eAEF,wDACE,gBACA,sBACA,uBACA,2BAEF,8CACE,cACA,sBACA,uBACA,2BACA,mBAEF,6CACE,WACA,yBACA,WACA,uBACA,2BAEF,kBACE,iBACA,0BACA,+BAEF,0BACE,0BAEF,+BACE,qBACA,aACA,8BACA,kBAEF,2CACE,YACA,cACA,mBACA,UACA,kBAEF,uBACE,cACA,kBACA,cAEF,qBACE,aACA,0BAEF,oCACE,cAEF,6BACE,WACA,6BACA,8BAEF,oCACE,WAEF,+BACE,kBACA,eACA,YACA,SACA,cACA,kBAEF,wCACE,eACA,YACA,UAEF,8CACE,cACA,mBAEF,qDACE,gBACA,yBACA,WACA,kBAEF,uDACE,kBACA,0BACA,aAEF,8CACE,aACA,8BACA,kBAEF,8DACE,sBAEF,8BACE,UACA,qBAEF,kCACE,eACA,iBACA,WAEF,8BACE,UAEF,sCACE,mBACA,kBACA,0BAEF,qDACE,qBACA,gBACA,iBACA,0BAEF,yCACE,iBACA,yBACA,uBAEF,yCACE,2BACA,gBACA,uBACA,sCACA,yBAEF,sDACE,WAEF,4CACE,2BACA,cACA,wBACA,sCACA,yBAEF,yDACE,WAEF,2CACE,WACA,2BACA,sBACA,WAEF,iBACE,gBAEF,oCACE,YAEF,6CACE,qBACA,YAEF,6CACE,qBACA,YAEF,yBACE,uBACA,2BACA,2BACA,oBACA,qBAEF,kCACE,YAEF,uBACE,sCAGF,OACE,WAEF,kBACE,iBACA,0BAEF,0BACE","file":"../main.min.css","sourcesContent":["*, *:before, *:after {\n box-sizing: border-box;\n}\n\nhtml, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {\n margin: 0;\n padding: 0;\n border: 0;\n font-size: 100%;\n font: inherit;\n vertical-align: baseline;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n text-size-adjust: none;\n}\n\nfooter, header, nav, section, main {\n display: block;\n}\n\nbody {\n line-height: 1;\n}\n\nol, ul {\n list-style: none;\n}\n\nblockquote, q {\n quotes: none;\n}\n\nblockquote:before, blockquote:after, q:before, q:after {\n content: \"\";\n content: none;\n}\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ninput {\n -webkit-appearance: none;\n border-radius: 0;\n}\n\n#backgrounds .cabezal {\n height: 25rem;\n background-image: url(\"../images/banner.jpg\");\n background-repeat: no-repeat;\n background-size: 100rem;\n background-position: top center;\n background-color: rgba(0, 0, 0, 0.4);\n background-blend-mode: multiply;\n}\n#backgrounds .seccion1 {\n height: 25rem;\n background-image: linear-gradient(#cccccc, #cccccc);\n background-position: left 7rem;\n background-size: 100% 8rem;\n background-repeat: no-repeat;\n}\n#backgrounds .seccion2 {\n height: 27.5rem;\n background-image: url(\"../images/fondo23.png\");\n}\n#backgrounds .seccion2 .diagonal {\n border-bottom: 27.5rem solid rgba(204, 204, 204, 0.5);\n border-right: 118.75rem solid transparent;\n}\n#backgrounds .dimensiones {\n height: 27.5rem;\n background-image: url(\"../images/fondo23.png\");\n}\n#backgrounds .dimensiones .fondo-gris {\n width: 100%;\n height: 100%;\n background-color: rgba(204, 204, 204, 0.5);\n}\n#backgrounds .construido {\n height: 21.875rem;\n background-image: url(\"../images/fondo4.jpg\");\n}\n#backgrounds .corporativos {\n height: 32.5rem;\n background-image: url(\"../images/fondo5.png\");\n}\n#backgrounds .testimonios {\n height: 21.875rem;\n background-image: linear-gradient(#cccccc, #cccccc);\n background-position: left 7.1875rem;\n background-size: 100% 7.375rem;\n background-repeat: no-repeat;\n}\n#backgrounds .formulario {\n height: 30rem;\n background-color: #cccccc;\n clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%);\n}\n\nbody {\n height: 211.25rem;\n font-family: Roboto, sans;\n color: #333333;\n}\n\n#content {\n max-width: 67.5rem !important;\n height: 211.25rem;\n position: relative;\n top: -211.25rem;\n}\n#content #header {\n color: white;\n width: 100%;\n height: 25rem;\n}\n#content #header .ui.menu {\n border: none !important;\n background: none !important;\n background-color: rgba(100, 100, 100, 0.3) !important;\n box-shadow: none !important;\n margin: 0 !important;\n}\n#content #header .ui.menu .dropdown .menu {\n /*background: none !important;\n border: none !important;\n box-shadow: none !important;*/\n color: black;\n font-size: 1rem;\n}\n#content #header .ui.menu .dropdown .menu .item {\n padding: 1rem !important;\n}\n#content #header .ui.menu .item {\n color: inherit !important;\n font-size: 2rem;\n padding: 1.25rem !important;\n}\n#content #header .ui.menu .item .shopping.cart div {\n position: relative;\n color: black;\n display: inline-block;\n top: -2.6rem;\n left: 0.2rem;\n font-size: 1rem;\n font-family: Roboto, sans;\n}\n#content #header .logo {\n padding: 0 !important;\n margin: 0 !important;\n}\n#content #header .logo img {\n width: 50%;\n max-width: 64.375rem;\n}\n#content #header .logo .frase1 {\n font-size: 1.5rem;\n}\n#content #header .logo .frase2 {\n font-size: 1rem;\n}\n#content > .column {\n display: inline-block;\n float: left;\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n}\n#content > .column::after {\n clear: both;\n}\n#content > .column1 {\n width: 67%;\n}\n#content > .column1 #seccion1 {\n height: 25rem;\n width: 100%;\n}\n#content > .column1 #seccion1 .image-container {\n display: flex;\n justify-content: space-between;\n height: 15rem;\n}\n#content > .column1 #seccion1 .image-container img {\n height: 9.6875rem;\n width: 11.75rem;\n margin-top: 5.3125rem;\n}\n#content > .column1 #seccion1 .paragraph {\n padding-top: 1.75rem;\n line-height: 0.875rem;\n text-align: justify;\n}\n#content > .column1 #seccion1 .paragraph .header {\n margin-bottom: 1rem;\n font-size: 1.375rem;\n}\n#content > .column1 #seccion2 {\n height: 27.5rem;\n}\n#content > .column1 #seccion2 > .column {\n display: inline-block;\n float: left;\n width: 50%;\n}\n#content > .column1 #seccion2 > .column::after {\n clear: both;\n}\n#content > .column1 #seccion2 .column1 {\n margin-top: 5rem;\n}\n#content > .column1 #seccion2 .column1 img {\n width: 19.8125rem;\n height: 19.8125rem;\n}\n#content > .column1 #seccion2 .column2 {\n margin-top: 7.125rem;\n}\n#content > .column1 #seccion2 .column2 .row:first-child {\n background-color: #00427b;\n color: white;\n height: 11.25rem;\n width: 23.75rem;\n padding: 2rem;\n margin-left: -3rem;\n overflow: hidden;\n}\n#content > .column1 #seccion2 .column2 .row:first-child .header {\n font-weight: bold;\n font-size: 1rem;\n margin-bottom: 1rem;\n}\n#content > .column1 #seccion2 .column2 .row:first-child ul {\n list-style: disc inside;\n font-size: 0.8333333333rem;\n}\n#content > .column1 #seccion2 .column2 .row:last-child {\n margin-top: 1.125rem;\n display: flex;\n justify-content: space-between;\n}\n#content > .column1 #seccion2 .column2 .row:last-child img {\n width: 4.375rem;\n height: 5.3125rem;\n}\n#content > .column1 #dimensiones {\n height: 27.5rem;\n}\n#content > .column1 #dimensiones .header {\n padding: 2.3125rem 0 !important;\n}\n#content > .column1 #dimensiones .header .bigger {\n font-size: 1rem;\n}\n#content > .column1 #dimensiones .images {\n display: flex;\n}\n#content > .column1 #dimensiones .images .column {\n float: left;\n}\n#content > .column1 #dimensiones .images .column > img {\n width: 19.5625rem;\n height: 14.6875rem;\n}\n#content > .column1 #dimensiones .images .column div {\n width: 19.5625rem;\n margin-top: 1.5625rem;\n}\n#content > .column1 #construido {\n height: 21.875rem;\n padding-top: 1.4375rem !important;\n}\n#content > .column1 #construido .header {\n font-size: 1.8333333333rem;\n padding: 0.625rem 2.6875rem;\n background-color: rgba(255, 255, 255, 0.6);\n}\n#content > .column2 {\n width: 33%;\n height: 101.875rem;\n}\n#content > .column2 .sticky {\n height: 16.5625rem;\n width: 19.375rem;\n margin: auto;\n}\n#content > .column2 .sticky .row:first-child {\n height: 10.625rem;\n margin-top: 5rem;\n}\n#content > .column2 .sticky .row:first-child .column {\n display: inline-block;\n float: left;\n}\n#content > .column2 .sticky .row:first-child .column::after {\n clear: both;\n}\n#content > .column2 .sticky .row:first-child .column1 {\n vertical-align: bottom;\n padding-top: 1.25rem;\n width: 12.9166666667rem;\n font-size: 1.1666666667rem;\n}\n#content > .column2 .sticky .row:first-child .column1 .linea {\n margin-bottom: 0.625rem;\n}\n#content > .column2 .sticky .row:first-child .column1 .titulo {\n font-size: 2.0833333333rem;\n}\n#content > .column2 .sticky .row:first-child .column1 .precio {\n font-size: 1.3333333333rem;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores {\n vertical-align: center;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .text {\n margin-right: 0.1875rem;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .white {\n border: thin solid black;\n background-color: white;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .black {\n background-color: black;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .blue {\n background-color: blue;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .green {\n background-color: lime;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .yellow {\n background-color: yellow;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .orange {\n background-color: #ff8200;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .red {\n background-color: red;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .circle {\n display: inline-block;\n width: 0.75rem;\n height: 0.75rem;\n border-radius: 8000px;\n margin: auto 0.0625rem;\n cursor: pointer;\n}\n#content > .column2 .sticky .row:first-child .column1 .colores .circle.selected {\n width: 0.875rem;\n height: 0.875rem;\n cursor: default;\n}\n#content > .column2 .sticky .row:first-child .column1 .input {\n width: 4.5rem;\n border: thin solid black;\n text-align: center;\n padding: 0.5rem 0.05rem;\n font-size: 0.8333333333rem;\n}\n#content > .column2 .sticky .row:first-child .column1 .input button {\n background: none;\n border: none;\n width: 1rem;\n margin: 0;\n padding: 0;\n cursor: pointer;\n font-weight: bold;\n}\n#content > .column2 .sticky .row:first-child .column1 .input input {\n width: 2rem;\n background: none;\n margin: 0;\n border: 0;\n padding: 0;\n text-align: center;\n}\n#content > .column2 .sticky .row:first-child .column2 {\n width: 6.4583333333rem;\n}\n#content > .column2 .sticky .row:first-child .column2 img {\n width: 6.875rem;\n height: 10rem;\n}\n#content > .column2 .sticky .row:last-child .button {\n border-radius: 0 !important;\n width: 100%;\n}\n#content #corporativos {\n width: 100%;\n height: 32.5rem;\n margin-top: 101.875rem !important;\n}\n#content #corporativos > .column {\n display: inline-block;\n float: left;\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n}\n#content #corporativos > .column::after {\n clear: both;\n}\n#content #corporativos .column1 {\n width: 67%;\n}\n#content #corporativos .column1 > .header {\n margin-top: 4.1875rem;\n margin-bottom: 2.3125rem;\n}\n#content #corporativos .column1 > .header .bigger {\n font-size: 1.625rem;\n}\n#content #corporativos .column1 .opciones {\n display: flex;\n justify-content: space-around;\n}\n#content #corporativos .column1 .opciones .opcion {\n display: inline-block;\n}\n#content #corporativos .column1 .opciones .opcion .img-grande {\n display: inline-block;\n padding-right: 0.75rem;\n}\n#content #corporativos .column1 .opciones .opcion .img-grande img {\n width: 8.4375rem;\n height: 12.5rem;\n}\n#content #corporativos .column1 .opciones .opcion .descripcion {\n display: inline-block;\n vertical-align: top;\n height: 12.5rem;\n padding-top: 1.25rem;\n}\n#content #corporativos .column1 .opciones .opcion .descripcion .content {\n display: block;\n}\n#content #corporativos .column1 .opciones .opcion .descripcion .content .header {\n font-size: 1.1666666667rem;\n margin-bottom: 0.625rem;\n}\n#content #corporativos .column1 .opciones .opcion .descripcion .content ul {\n list-style: disc inside;\n}\n#content #corporativos .column1 .opciones .opcion .descripcion .images {\n margin-top: 2.125rem;\n}\n#content #corporativos .column1 .opciones .opcion .descripcion .images img {\n width: 4.375rem;\n height: 5.3125rem;\n}\n#content #corporativos .column2 {\n width: 33%;\n height: 100%;\n}\n#content #corporativos .column2 .header {\n margin-top: 2.875rem;\n margin-bottom: 1.5rem;\n font-size: 1.625rem;\n}\n#content #corporativos .column2 form .colores {\n vertical-align: center;\n}\n#content #corporativos .column2 form .colores .text {\n margin-right: 0.1875rem;\n}\n#content #corporativos .column2 form .colores .white {\n border: thin solid black;\n background-color: white;\n}\n#content #corporativos .column2 form .colores .black {\n background-color: black;\n}\n#content #corporativos .column2 form .colores .blue {\n background-color: blue;\n}\n#content #corporativos .column2 form .colores .green {\n background-color: lime;\n}\n#content #corporativos .column2 form .colores .yellow {\n background-color: yellow;\n}\n#content #corporativos .column2 form .colores .orange {\n background-color: #ff8200;\n}\n#content #corporativos .column2 form .colores .red {\n background-color: red;\n}\n#content #corporativos .column2 form .colores .circle {\n display: inline-block;\n width: 0.75rem;\n height: 0.75rem;\n border-radius: 8000px;\n margin: auto 0.0625rem;\n cursor: pointer;\n}\n#content #corporativos .column2 form .colores .circle.selected {\n width: 0.875rem;\n height: 0.875rem;\n cursor: default;\n}\n#content #corporativos .column2 form .row {\n margin-bottom: 0.5625rem;\n}\n#content #corporativos .column2 form .colores.linea {\n margin-bottom: 1rem;\n}\n#content #corporativos .column2 form .input.cantidad {\n width: 4.5rem;\n border: thin solid black;\n text-align: center;\n padding: 0.5rem 0.05rem;\n font-size: 0.8333333333rem;\n}\n#content #corporativos .column2 form .input.cantidad button {\n background: none;\n border: none;\n width: 1rem;\n margin: 0;\n padding: 0;\n cursor: pointer;\n}\n#content #corporativos .column2 form .input.cantidad input {\n width: 2rem;\n background: none;\n margin: 0;\n border: 0;\n padding: 0;\n text-align: center;\n}\n#content #corporativos .column2 form .input [type=file] {\n display: none;\n}\n#content #corporativos .column2 form .input .file {\n display: inline-block;\n height: 1.5rem;\n width: 9.375rem;\n padding-top: 0.1875rem;\n background-color: #cccccb;\n border: thin solid #333;\n font-size: 0.8333333333rem;\n text-align: center;\n cursor: pointer;\n}\n#content #corporativos .column2 form .input [type=text] {\n height: 1.125rem;\n background-color: white;\n border: none !important;\n border-radius: 0 !important;\n}\n#content #corporativos .column2 form textarea {\n height: 4.5rem;\n background-color: white;\n border: none !important;\n border-radius: 0 !important;\n margin-bottom: 1rem;\n}\n#content #corporativos .column2 form .button {\n width: 100%;\n background-color: #666667;\n color: white;\n border: none !important;\n border-radius: 0 !important;\n}\n#content #felices {\n height: 21.875rem;\n padding: 0 1rem !important;\n padding-top: 3.75rem !important;\n}\n#content #felices .header {\n font-size: 1.8333333333rem;\n}\n#content #felices .testimonios {\n margin-top: 1.5625rem;\n display: flex;\n justify-content: space-between;\n text-align: center;\n}\n#content #felices .testimonios .testimonio {\n height: 5rem;\n color: #666667;\n margin-top: 1.25rem;\n width: 30%;\n text-align: center;\n}\n#content #felices .nav {\n display: block;\n text-align: center;\n color: #666667;\n}\n#content #formulario {\n height: 30rem;\n padding: 0 1rem !important;\n}\n#content #formulario .whatsapp-link {\n color: inherit;\n}\n#content #formulario > .column {\n float: left;\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n}\n#content #formulario > .column::after {\n clear: both;\n}\n#content #formulario > .flotante {\n position: absolute;\n top: 11.4375rem;\n margin: auto;\n left: 40%;\n width: 13.5rem;\n text-align: center;\n}\n#content #formulario > .flotante > .content {\n width: 8.125rem;\n margin: auto;\n left: -50%;\n}\n#content #formulario > .flotante > .content .item {\n display: block;\n padding: 0.3125rem 0;\n}\n#content #formulario > .flotante > .content div.whatsapp {\n height: 1.875rem;\n background-color: #1a9947;\n color: #fff;\n font-size: 0.625rem;\n}\n#content #formulario > .flotante > .content div.whatsapp > i {\n position: relative;\n font-size: 1.3333333333rem;\n top: 0.1875rem;\n}\n#content #formulario > .flotante > .content .rrss {\n display: flex;\n justify-content: space-between;\n font-size: 1.25rem;\n}\n#content #formulario > .flotante > .content .rrss i.inverted.grey {\n color: white !important;\n}\n#content #formulario > .column1 {\n width: 67%;\n margin-top: 1.6875rem;\n}\n#content #formulario > .column1 > img {\n width: 33.75rem;\n height: 21.875rem;\n float: left;\n}\n#content #formulario > .column2 {\n width: 33%;\n}\n#content #formulario > .column2 .header {\n margin-top: 1.25rem;\n text-align: center;\n font-size: 1.8333333333rem;\n}\n#content #formulario > .column2 .header .whatsapp-link {\n display: inline-block;\n width: 1.5625rem;\n height: 1.5625rem;\n font-size: 2.0833333333rem;\n}\n#content #formulario > .column2 .paragraph {\n padding-top: 1rem;\n padding-bottom: 1.5625rem;\n justify-content: center;\n}\n#content #formulario > .column2 form input {\n border-radius: 0 !important;\n height: 1.125rem;\n margin-bottom: 0.5625rem;\n background-color: rgba(255, 255, 255, 0.5);\n font-size: 0.8333333333rem;\n}\n#content #formulario > .column2 form input::placeholder {\n color: #333333;\n}\n#content #formulario > .column2 form textarea {\n border-radius: 0 !important;\n height: 4.5rem;\n margin-bottom: 1.5625rem;\n background-color: rgba(255, 255, 255, 0.5);\n font-size: 0.8333333333rem;\n}\n#content #formulario > .column2 form textarea::placeholder {\n color: #333333;\n}\n#content #formulario > .column2 form .button {\n width: 100%;\n border-radius: 0 !important;\n background-color: white;\n color: #333333;\n}\n#content section {\n background: none;\n}\n#content section.segment > .container {\n height: 100%;\n}\n#content section.segment > .container > .column1 {\n display: inline-block;\n width: 67rem;\n}\n#content section.segment > .container > .column2 {\n display: inline-block;\n width: 33rem;\n}\n#content .simple.segment {\n border: none !important;\n border-radius: 0 !important;\n box-shadow: none !important;\n margin: 0 !important;\n padding: 0 !important;\n}\n#content .simple.segment > .ui.grid {\n height: 100%;\n}\n#content .fondo-blanco {\n background-color: rgba(255, 255, 255, 0.5);\n}\n\n#subir {\n width: 100%;\n}\n#subir .container {\n text-align: right;\n padding: 0 1rem !important;\n}\n#subir .container i.icons {\n cursor: pointer;\n}"]} \ No newline at end of file +{"version":3,"sources":["main.css"],"names":[],"mappings":"AAAA,mBACE,sBAGF,sPACE,SACA,UACA,SACA,eACA,aACA,wBACA,kCACA,mCACA,sBAGF,+BACE,cAGF,KACE,cAGF,MACE,gBAGF,aACE,YAGF,oDACE,WACA,aAGF,MACE,yBACA,iBAGF,MACE,wBACA,gBAGF,qCACE,sBACE,aACA,6CACA,4BACA,qBACA,6CACA,gCACA,+BAEF,uBACE,aACA,mDACA,iCACA,2BACA,4BAEF,uBACE,eACA,8CAEF,iCACE,iDACA,0CAEF,0BACE,eACA,8CAEF,sCACE,WACA,YACA,sCAEF,yBACE,iBACA,6CAEF,2BACE,eACA,6CAEF,0BACE,iBACA,mDACA,qCACA,gCACA,4BAEF,yBACE,aACA,sBACA,sDAGF,KACE,0BACA,WACA,kBAGF,KACE,iBACA,wBACA,WAGF,SACE,sBACA,iBACA,oBACA,kBACA,eAEF,iBACE,WACA,WACA,aAEF,0BACE,uBACA,2BACA,2BACA,oBACA,WAEF,0CAIE,WACA,eAEF,gDACE,wBAEF,gCACE,yBACA,eAEF,mDACE,kBACA,WACA,qBACA,YACA,WACA,gBACA,wBAEF,uBACE,qBACA,oBAEF,2BACE,UACA,mBAEF,+BACE,UACA,YACA,eAEF,+BACE,gBAEF,iBACE,qBACA,WACA,6BACA,8BAEF,wBACE,WAEF,kBACE,UAEF,4BACE,aACA,WAEF,6CACE,aACA,8BACA,eAEF,iDACE,UACA,sBAEF,uCACE,qBACA,sBACA,mBAEF,+CACE,mBACA,oBAEF,4BACE,eAEF,oCACE,qBACA,WACA,UAEF,2CACE,WAEF,qCACE,kBAEF,yCACE,kBACA,mBAEF,qCACE,sBAEF,sDACE,yBACA,WACA,iBACA,gBACA,aACA,kBACA,gBAEF,8DACE,iBACA,iBACA,mBAEF,yDACE,uBACA,yBAEF,qDACE,qBACA,aACA,8BAEF,yDACE,gBACA,kBAEF,+BACE,eAEF,uCACE,gCAEF,+CACE,iBAEF,uCACE,aAEF,+CACE,WAEF,mDACE,kBACA,mBAEF,mDACE,kBACA,sBAEF,8BACE,iBACA,kCAEF,sCACE,0BACA,4BACA,sCAEF,kBACE,UACA,kBAEF,0BACE,mBACA,iBACA,YAEF,2CACE,kBACA,kBAEF,mDACE,qBACA,WAEF,0DACE,WAEF,oDACE,sBACA,qBACA,gBACA,0BAEF,2DACE,uBAEF,4DACE,0BAEF,4DACE,0BAEF,6DACE,sBAEF,mEACE,uBAEF,oEACE,uBACA,sBAEF,oEACE,sBAEF,mEACE,sBAEF,oEACE,sBAEF,qEACE,sBAEF,qEACE,yBAEF,kEACE,qBAEF,qEACE,qBACA,eACA,gBACA,qBACA,sBACA,eAEF,8EACE,eACA,gBACA,eAEF,2DACE,aACA,uBACA,kBACA,qBACA,yBAEF,kEACE,gBACA,YACA,WACA,SACA,UACA,eACA,iBAEF,iEACE,WACA,gBACA,SACA,SACA,UACA,kBAEF,oDACE,gBAEF,wDACE,iBACA,aAEF,kDACE,2BACA,WAEF,uBACE,WACA,eACA,iCAEF,+BACE,qBACA,WACA,6BACA,8BAEF,sCACE,WAEF,gCACE,UAEF,wCACE,sBACA,yBAEF,gDACE,oBAEF,0CACE,aACA,6BAEF,kDACE,qBAEF,8DACE,qBACA,uBAEF,kEACE,kBACA,gBAEF,+DACE,qBACA,mBACA,gBACA,qBAEF,wEACE,cAEF,gFACE,0BACA,uBAEF,2EACE,uBAEF,uEACE,qBAEF,2EACE,gBACA,kBAEF,gCACE,UACA,YAEF,wCACE,qBACA,sBACA,oBAEF,8CACE,sBAEF,oDACE,uBAEF,qDACE,uBACA,sBAEF,qDACE,sBAEF,oDACE,sBAEF,qDACE,sBAEF,sDACE,sBAEF,sDACE,yBAEF,mDACE,qBAEF,sDACE,qBACA,eACA,gBACA,qBACA,sBACA,eAEF,+DACE,eACA,gBACA,eAEF,0CACE,wBAEF,oDACE,qBAEF,qDACE,aACA,uBACA,kBACA,qBACA,yBAEF,4DACE,gBACA,YACA,WACA,SACA,UACA,eAEF,2DACE,WACA,gBACA,SACA,SACA,UACA,kBAEF,wDACE,aAEF,kDACE,qBACA,eACA,iBACA,sBACA,yBACA,uBACA,yBACA,kBACA,eAEF,wDACE,iBACA,sBACA,uBACA,2BAEF,8CACE,eACA,sBACA,uBACA,2BACA,qBAEF,6CACE,WACA,yBACA,WACA,uBACA,2BAEF,kBACE,iBACA,0BACA,gCAEF,0BACE,0BAEF,+BACE,sBACA,aACA,8BACA,kBAEF,2CACE,cACA,cACA,oBACA,UACA,kBAEF,uBACE,cACA,kBACA,cAEF,qBACE,aACA,0BAEF,oCACE,cAEF,6BACE,WACA,6BACA,8BAEF,oCACE,WAEF,+BACE,kBACA,gBACA,YACA,SACA,eACA,kBAEF,wCACE,iBACA,YACA,UAEF,8CACE,cACA,oBAEF,qDACE,iBACA,yBACA,WACA,mBAEF,uDACE,kBACA,0BACA,cAEF,8CACE,aACA,6BACA,mBAEF,8DACE,sBAEF,8BACE,UACA,sBAEF,kCACE,gBACA,kBACA,WAEF,8BACE,UAEF,sCACE,oBACA,kBACA,0BAEF,qDACE,qBACA,iBACA,kBACA,0BAEF,yCACE,iBACA,0BACA,uBAEF,yCACE,2BACA,iBACA,wBACA,sCACA,yBAEF,sDACE,WAEF,4CACE,2BACA,eACA,yBACA,sCACA,yBAEF,yDACE,WAEF,2CACE,WACA,2BACA,sBACA,WAEF,iBACE,gBAEF,oCACE,YAEF,6CACE,qBACA,YAEF,6CACE,qBACA,YAEF,yBACE,uBACA,2BACA,2BACA,oBACA,qBAEF,kCACE,YAEF,uBACE,uCAGJ,qCACE,sBACE,gBACA,6CACA,4BACA,uBACA,0CACA,gCACA,+BAEF,uBACE,aACA,mDACA,8BACA,0BACA,4BAEF,uBACE,eACA,8CAEF,iCACE,iDACA,yCAEF,0BACE,eACA,8CAEF,sCACE,WACA,YACA,sCAEF,yBACE,iBACA,6CAEF,2BACE,eACA,6CAEF,0BACE,iBACA,mDACA,mCACA,8BACA,4BAEF,yBACE,aACA,sBACA,sDAGF,KACE,gBACA,gBAGF,KACE,gBACA,wBACA,WAGF,SACE,6BACA,gBACA,kBACA,cAEF,iBACE,WACA,WACA,gBAEF,0BACE,uBACA,2BACA,2BACA,oBACA,WAEF,0CAIE,WACA,eAEF,gDACE,wBAEF,gCACE,yBACA,eACA,2BAEF,mDACE,kBACA,WACA,qBACA,YACA,WACA,eACA,wBAEF,uBACE,qBACA,oBAEF,2BACE,UACA,oBAEF,+BACE,iBAEF,+BACE,eAEF,iBACE,qBACA,WACA,6BACA,8BAEF,wBACE,WAEF,kBACE,UAEF,4BACE,aACA,WAEF,6CACE,aACA,8BACA,aAEF,iDACE,iBACA,eACA,qBAEF,uCACE,oBACA,oBACA,mBAEF,+CACE,mBACA,mBAEF,4BACE,eAEF,oCACE,qBACA,WACA,UAEF,2CACE,WAEF,qCACE,gBAEF,yCACE,iBACA,kBAEF,qCACE,oBAEF,sDACE,yBACA,WACA,gBACA,eACA,aACA,kBACA,gBAEF,8DACE,iBACA,eACA,mBAEF,yDACE,uBACA,yBAEF,qDACE,oBACA,aACA,8BAEF,yDACE,eACA,iBAEF,+BACE,eAEF,uCACE,+BAEF,+CACE,eAEF,uCACE,aAEF,+CACE,WAEF,mDACE,iBACA,kBAEF,mDACE,iBACA,qBAEF,8BACE,iBACA,iCAEF,sCACE,0BACA,0BACA,sCAEF,kBACE,UACA,kBAEF,0BACE,kBACA,gBACA,YAEF,2CACE,iBACA,gBAEF,mDACE,qBACA,WAEF,0DACE,WAEF,oDACE,sBACA,oBACA,uBACA,0BAEF,2DACE,sBAEF,4DACE,0BAEF,4DACE,0BAEF,6DACE,sBAEF,mEACE,sBAEF,oEACE,uBACA,sBAEF,oEACE,sBAEF,mEACE,sBAEF,oEACE,sBAEF,qEACE,sBAEF,qEACE,yBAEF,kEACE,qBAEF,qEACE,qBACA,aACA,cACA,qBACA,qBACA,eAEF,8EACE,cACA,eACA,eAEF,2DACE,aACA,uBACA,kBACA,qBACA,yBAEF,kEACE,gBACA,YACA,WACA,SACA,UACA,eACA,iBAEF,iEACE,WACA,gBACA,SACA,SACA,UACA,kBAEF,oDACE,sBAEF,wDACE,eACA,aAEF,kDACE,2BACA,WAEF,uBACE,WACA,eACA,iCAEF,+BACE,qBACA,WACA,6BACA,8BAEF,sCACE,WAEF,gCACE,UAEF,wCACE,qBACA,wBAEF,gDACE,mBAEF,0CACE,aACA,6BAEF,kDACE,qBAEF,8DACE,qBACA,qBAEF,kEACE,gBACA,eAEF,+DACE,qBACA,mBACA,eACA,oBAEF,wEACE,cAEF,gFACE,0BACA,sBAEF,2EACE,uBAEF,uEACE,oBAEF,2EACE,eACA,iBAEF,gCACE,UACA,YAEF,wCACE,oBACA,qBACA,mBAEF,8CACE,sBAEF,oDACE,sBAEF,qDACE,uBACA,sBAEF,qDACE,sBAEF,oDACE,sBAEF,qDACE,sBAEF,sDACE,sBAEF,sDACE,yBAEF,mDACE,qBAEF,sDACE,qBACA,aACA,cACA,qBACA,qBACA,eAEF,+DACE,cACA,eACA,eAEF,0CACE,uBAEF,qDACE,aACA,gBACA,kBACA,qBACA,yBACA,uCAEF,4DACE,gBACA,YACA,WACA,SACA,UACA,eACA,uCAEF,2DACE,WACA,gBACA,SACA,SACA,UACA,kBACA,uCAEF,wDACE,aAEF,kDACE,qBACA,cACA,qBACA,qBACA,0BACA,kBACA,eAEF,wDACE,gBACA,sBACA,uBACA,2BAEF,8CACE,cACA,sBACA,uBACA,2BACA,mBAEF,6CACE,WACA,yBACA,WACA,uBACA,2BAEF,kBACE,iBACA,0BACA,+BAEF,0BACE,0BAEF,+BACE,qBACA,aACA,8BACA,kBAEF,2CACE,YACA,cACA,mBACA,UACA,kBAEF,uBACE,cACA,kBACA,cAEF,qBACE,aACA,0BAEF,oCACE,cAEF,6BACE,WACA,6BACA,8BAEF,oCACE,WAEF,+BACE,kBACA,eACA,YACA,SACA,cACA,kBAEF,wCACE,eACA,YACA,UAEF,8CACE,cACA,mBAEF,qDACE,gBACA,yBACA,WACA,kBAEF,uDACE,kBACA,0BACA,aAEF,8CACE,aACA,6BACA,kBAEF,8DACE,sBAEF,8BACE,UACA,qBAEF,kCACE,eACA,iBACA,WAEF,8BACE,UAEF,sCACE,mBACA,kBACA,0BAEF,qDACE,qBACA,gBACA,iBACA,0BAEF,yCACE,iBACA,yBACA,uBAEF,yCACE,2BACA,gBACA,uBACA,sCACA,yBAEF,sDACE,WAEF,4CACE,2BACA,cACA,wBACA,sCACA,yBAEF,yDACE,WAEF,2CACE,WACA,2BACA,sBACA,WAEF,iBACE,gBAEF,oCACE,YAEF,6CACE,qBACA,YAEF,6CACE,qBACA,YAEF,yBACE,uBACA,2BACA,2BACA,oBACA,qBAEF,kCACE,YAEF,uBACE","file":"../main.min.css","sourcesContent":["*, *:before, *:after {\n box-sizing: border-box;\n}\n\nhtml, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {\n margin: 0;\n padding: 0;\n border: 0;\n font-size: 100%;\n font: inherit;\n vertical-align: baseline;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n text-size-adjust: none;\n}\n\nfooter, header, nav, section, main {\n display: block;\n}\n\nbody {\n line-height: 1;\n}\n\nol, ul {\n list-style: none;\n}\n\nblockquote, q {\n quotes: none;\n}\n\nblockquote:before, blockquote:after, q:before, q:after {\n content: \"\";\n content: none;\n}\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ninput {\n -webkit-appearance: none;\n border-radius: 0;\n}\n\n@media screen and (max-width: 800px) {\n #backgrounds .cabezal {\n height: 25rem;\n background-image: url(\"../images/banner.jpg\");\n background-repeat: no-repeat;\n background-size: 160%;\n background-position: bottom -0.9375rem center;\n background-color: rgba(0, 0, 0, 0.4);\n background-blend-mode: multiply;\n }\n #backgrounds .seccion1 {\n height: 25rem;\n background-image: linear-gradient(#cccccc, #cccccc);\n background-position: left 10.5rem;\n background-size: 100% 12rem;\n background-repeat: no-repeat;\n }\n #backgrounds .seccion2 {\n height: 27.5rem;\n background-image: url(\"../images/fondo23.png\");\n }\n #backgrounds .seccion2 .diagonal {\n border-bottom: 27.5rem solid rgba(204, 204, 204, 0.5);\n border-right: 178.125rem solid transparent;\n }\n #backgrounds .dimensiones {\n height: 27.5rem;\n background-image: url(\"../images/fondo23.png\");\n }\n #backgrounds .dimensiones .fondo-gris {\n width: 100%;\n height: 100%;\n background-color: rgba(204, 204, 204, 0.5);\n }\n #backgrounds .construido {\n height: 21.875rem;\n background-image: url(\"../images/fondo4.jpg\");\n }\n #backgrounds .corporativos {\n height: 32.5rem;\n background-image: url(\"../images/fondo5.png\");\n }\n #backgrounds .testimonios {\n height: 21.875rem;\n background-image: linear-gradient(#cccccc, #cccccc);\n background-position: left 10.78125rem;\n background-size: 100% 11.0625rem;\n background-repeat: no-repeat;\n }\n #backgrounds .formulario {\n height: 30rem;\n background-color: #cccccc;\n clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%);\n }\n\n html {\n font-size: 10.6666666667px;\n width: 100%;\n overflow-x: hidden;\n }\n\n body {\n height: 211.25rem;\n font-family: Roboto, sans;\n color: #333333;\n }\n\n #content {\n width: 100% !important;\n height: 211.25rem;\n margin: 0 !important;\n position: relative;\n top: -211.25rem;\n }\n #content #header {\n color: white;\n width: 100%;\n height: 25rem;\n }\n #content #header .ui.menu {\n border: none !important;\n background: none !important;\n box-shadow: none !important;\n margin: 0 !important;\n color: black;\n }\n #content #header .ui.menu .dropdown .menu {\n /*background: none !important;\n border: none !important;\n box-shadow: none !important;*/\n color: black;\n font-size: 1rem;\n }\n #content #header .ui.menu .dropdown .menu .item {\n padding: 1rem !important;\n }\n #content #header .ui.menu .item {\n color: inherit !important;\n font-size: 1rem;\n }\n #content #header .ui.menu .item .shopping.cart div {\n position: relative;\n color: black;\n display: inline-block;\n top: -1.3rem;\n left: 0.1rem;\n font-size: 0.5rem;\n font-family: Roboto, sans;\n }\n #content #header .logo {\n padding: 0 !important;\n margin: 0 !important;\n }\n #content #header .logo img {\n width: 50%;\n max-width: 56.25rem;\n }\n #content #header .logo .frase1 {\n width: 75%;\n margin: auto;\n font-size: 1rem;\n }\n #content #header .logo .frase2 {\n font-size: 0.7rem;\n }\n #content > .column {\n display: inline-block;\n float: left;\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n #content > .column::after {\n clear: both;\n }\n #content > .column1 {\n width: 90%;\n }\n #content > .column1 #seccion1 {\n height: 25rem;\n width: 100%;\n }\n #content > .column1 #seccion1 .image-container {\n display: flex;\n justify-content: space-between;\n height: 22.5rem;\n }\n #content > .column1 #seccion1 .image-container img {\n width: 50%;\n margin-top: 7.96875rem;\n }\n #content > .column1 #seccion1 .paragraph {\n padding-top: 2.625rem;\n line-height: 1.3125rem;\n text-align: justify;\n }\n #content > .column1 #seccion1 .paragraph .header {\n margin-bottom: 1rem;\n font-size: 2.0625rem;\n }\n #content > .column1 #seccion2 {\n height: 27.5rem;\n }\n #content > .column1 #seccion2 > .column {\n display: inline-block;\n float: left;\n width: 50%;\n }\n #content > .column1 #seccion2 > .column::after {\n clear: both;\n }\n #content > .column1 #seccion2 .column1 {\n margin-top: 7.5rem;\n }\n #content > .column1 #seccion2 .column1 img {\n width: 29.71875rem;\n height: 29.71875rem;\n }\n #content > .column1 #seccion2 .column2 {\n margin-top: 10.6875rem;\n }\n #content > .column1 #seccion2 .column2 .row:first-child {\n background-color: #00427b;\n color: white;\n height: 16.875rem;\n width: 35.625rem;\n padding: 2rem;\n margin-left: -3rem;\n overflow: hidden;\n }\n #content > .column1 #seccion2 .column2 .row:first-child .header {\n font-weight: bold;\n font-size: 1.5rem;\n margin-bottom: 1rem;\n }\n #content > .column1 #seccion2 .column2 .row:first-child ul {\n list-style: disc inside;\n font-size: 0.8333333333rem;\n }\n #content > .column1 #seccion2 .column2 .row:last-child {\n margin-top: 1.6875rem;\n display: flex;\n justify-content: space-between;\n }\n #content > .column1 #seccion2 .column2 .row:last-child img {\n width: 6.5625rem;\n height: 7.96875rem;\n }\n #content > .column1 #dimensiones {\n height: 27.5rem;\n }\n #content > .column1 #dimensiones .header {\n padding: 3.46875rem 0 !important;\n }\n #content > .column1 #dimensiones .header .bigger {\n font-size: 1.5rem;\n }\n #content > .column1 #dimensiones .images {\n display: flex;\n }\n #content > .column1 #dimensiones .images .column {\n float: left;\n }\n #content > .column1 #dimensiones .images .column > img {\n width: 29.34375rem;\n height: 22.03125rem;\n }\n #content > .column1 #dimensiones .images .column div {\n width: 29.34375rem;\n margin-top: 2.34375rem;\n }\n #content > .column1 #construido {\n height: 21.875rem;\n padding-top: 2.15625rem !important;\n }\n #content > .column1 #construido .header {\n font-size: 1.8333333333rem;\n padding: 0.9375rem 4.03125rem;\n background-color: rgba(255, 255, 255, 0.6);\n }\n #content > .column2 {\n width: 10%;\n height: 101.875rem;\n }\n #content > .column2 .sticky {\n height: 24.84375rem;\n width: 29.0625rem;\n margin: auto;\n }\n #content > .column2 .sticky .row:first-child {\n height: 15.9375rem;\n margin-top: 7.5rem;\n }\n #content > .column2 .sticky .row:first-child .column {\n display: inline-block;\n float: left;\n }\n #content > .column2 .sticky .row:first-child .column::after {\n clear: both;\n }\n #content > .column2 .sticky .row:first-child .column1 {\n vertical-align: bottom;\n padding-top: 1.875rem;\n width: 19.375rem;\n font-size: 1.1666666667rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .linea {\n margin-bottom: 0.9375rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .titulo {\n font-size: 2.0833333333rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .precio {\n font-size: 1.3333333333rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores {\n vertical-align: center;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .text {\n margin-right: 0.28125rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .white {\n border: thin solid black;\n background-color: white;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .black {\n background-color: black;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .blue {\n background-color: blue;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .green {\n background-color: lime;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .yellow {\n background-color: yellow;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .orange {\n background-color: #ff8200;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .red {\n background-color: red;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .circle {\n display: inline-block;\n width: 0.9375rem;\n height: 0.9375rem;\n border-radius: 8000px;\n margin: auto 0.09375rem;\n cursor: pointer;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .circle.selected {\n width: 1.125rem;\n height: 1.125rem;\n cursor: default;\n }\n #content > .column2 .sticky .row:first-child .column1 .input {\n width: 4.5rem;\n border: thin solid black;\n text-align: center;\n padding: 0.5rem 0.05rem;\n font-size: 0.8333333333rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .input button {\n background: none;\n border: none;\n width: 1rem;\n margin: 0;\n padding: 0;\n cursor: pointer;\n font-weight: bold;\n }\n #content > .column2 .sticky .row:first-child .column1 .input input {\n width: 2rem;\n background: none;\n margin: 0;\n border: 0;\n padding: 0;\n text-align: center;\n }\n #content > .column2 .sticky .row:first-child .column2 {\n width: 9.6875rem;\n }\n #content > .column2 .sticky .row:first-child .column2 img {\n width: 10.3125rem;\n height: 15rem;\n }\n #content > .column2 .sticky .row:last-child .button {\n border-radius: 0 !important;\n width: 100%;\n }\n #content #corporativos {\n width: 100%;\n height: 32.5rem;\n margin-top: 101.875rem !important;\n }\n #content #corporativos > .column {\n display: inline-block;\n float: left;\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n #content #corporativos > .column::after {\n clear: both;\n }\n #content #corporativos .column1 {\n width: 67%;\n }\n #content #corporativos .column1 > .header {\n margin-top: 6.28125rem;\n margin-bottom: 3.46875rem;\n }\n #content #corporativos .column1 > .header .bigger {\n font-size: 2.4375rem;\n }\n #content #corporativos .column1 .opciones {\n display: flex;\n justify-content: space-around;\n }\n #content #corporativos .column1 .opciones .opcion {\n display: inline-block;\n }\n #content #corporativos .column1 .opciones .opcion .img-grande {\n display: inline-block;\n padding-right: 1.125rem;\n }\n #content #corporativos .column1 .opciones .opcion .img-grande img {\n width: 12.65625rem;\n height: 18.75rem;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion {\n display: inline-block;\n vertical-align: top;\n height: 18.75rem;\n padding-top: 1.875rem;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .content {\n display: block;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .content .header {\n font-size: 1.1666666667rem;\n margin-bottom: 0.9375rem;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .content ul {\n list-style: disc inside;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .images {\n margin-top: 3.1875rem;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .images img {\n width: 6.5625rem;\n height: 7.96875rem;\n }\n #content #corporativos .column2 {\n width: 33%;\n height: 100%;\n }\n #content #corporativos .column2 .header {\n margin-top: 4.3125rem;\n margin-bottom: 2.25rem;\n font-size: 2.4375rem;\n }\n #content #corporativos .column2 form .colores {\n vertical-align: center;\n }\n #content #corporativos .column2 form .colores .text {\n margin-right: 0.28125rem;\n }\n #content #corporativos .column2 form .colores .white {\n border: thin solid black;\n background-color: white;\n }\n #content #corporativos .column2 form .colores .black {\n background-color: black;\n }\n #content #corporativos .column2 form .colores .blue {\n background-color: blue;\n }\n #content #corporativos .column2 form .colores .green {\n background-color: lime;\n }\n #content #corporativos .column2 form .colores .yellow {\n background-color: yellow;\n }\n #content #corporativos .column2 form .colores .orange {\n background-color: #ff8200;\n }\n #content #corporativos .column2 form .colores .red {\n background-color: red;\n }\n #content #corporativos .column2 form .colores .circle {\n display: inline-block;\n width: 0.9375rem;\n height: 0.9375rem;\n border-radius: 8000px;\n margin: auto 0.09375rem;\n cursor: pointer;\n }\n #content #corporativos .column2 form .colores .circle.selected {\n width: 1.125rem;\n height: 1.125rem;\n cursor: default;\n }\n #content #corporativos .column2 form .row {\n margin-bottom: 0.84375rem;\n }\n #content #corporativos .column2 form .colores.linea {\n margin-bottom: 1.5rem;\n }\n #content #corporativos .column2 form .input.cantidad {\n width: 4.5rem;\n border: thin solid black;\n text-align: center;\n padding: 0.5rem 0.05rem;\n font-size: 0.8333333333rem;\n }\n #content #corporativos .column2 form .input.cantidad button {\n background: none;\n border: none;\n width: 1rem;\n margin: 0;\n padding: 0;\n cursor: pointer;\n }\n #content #corporativos .column2 form .input.cantidad input {\n width: 2rem;\n background: none;\n margin: 0;\n border: 0;\n padding: 0;\n text-align: center;\n }\n #content #corporativos .column2 form .input [type=file] {\n display: none;\n }\n #content #corporativos .column2 form .input .file {\n display: inline-block;\n height: 2.25rem;\n width: 14.0625rem;\n padding-top: 0.28125rem;\n background-color: #cccccb;\n border: thin solid #333;\n font-size: 0.8333333333rem;\n text-align: center;\n cursor: pointer;\n }\n #content #corporativos .column2 form .input [type=text] {\n height: 1.6875rem;\n background-color: white;\n border: none !important;\n border-radius: 0 !important;\n }\n #content #corporativos .column2 form textarea {\n height: 6.75rem;\n background-color: white;\n border: none !important;\n border-radius: 0 !important;\n margin-bottom: 1.5rem;\n }\n #content #corporativos .column2 form .button {\n width: 100%;\n background-color: #666667;\n color: white;\n border: none !important;\n border-radius: 0 !important;\n }\n #content #felices {\n height: 21.875rem;\n padding: 0 1rem !important;\n padding-top: 5.625rem !important;\n }\n #content #felices .header {\n font-size: 1.8333333333rem;\n }\n #content #felices .testimonios {\n margin-top: 2.34375rem;\n display: flex;\n justify-content: space-between;\n text-align: center;\n }\n #content #felices .testimonios .testimonio {\n height: 7.5rem;\n color: #666667;\n margin-top: 1.875rem;\n width: 30%;\n text-align: center;\n }\n #content #felices .nav {\n display: block;\n text-align: center;\n color: #666667;\n }\n #content #formulario {\n height: 30rem;\n padding: 0 1rem !important;\n }\n #content #formulario .whatsapp-link {\n color: inherit;\n }\n #content #formulario > .column {\n float: left;\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n #content #formulario > .column::after {\n clear: both;\n }\n #content #formulario > .flotante {\n position: absolute;\n top: 17.15625rem;\n margin: auto;\n left: 40%;\n width: 11.25rem;\n text-align: center;\n }\n #content #formulario > .flotante > .content {\n width: 12.1875rem;\n margin: auto;\n left: -50%;\n }\n #content #formulario > .flotante > .content .item {\n display: block;\n padding: 0.46875rem 0;\n }\n #content #formulario > .flotante > .content div.whatsapp {\n height: 2.8125rem;\n background-color: #1a9947;\n color: #fff;\n font-size: 0.9375rem;\n }\n #content #formulario > .flotante > .content div.whatsapp > i {\n position: relative;\n font-size: 1.3333333333rem;\n top: 0.28125rem;\n }\n #content #formulario > .flotante > .content .rrss {\n display: flex;\n justify-content: space-around;\n font-size: 1.875rem;\n }\n #content #formulario > .flotante > .content .rrss i.inverted.grey {\n color: white !important;\n }\n #content #formulario > .column1 {\n width: 90%;\n margin-top: 2.53125rem;\n }\n #content #formulario > .column1 > img {\n width: 50.625rem;\n height: 32.8125rem;\n float: left;\n }\n #content #formulario > .column2 {\n width: 10%;\n }\n #content #formulario > .column2 .header {\n margin-top: 1.875rem;\n text-align: center;\n font-size: 1.8333333333rem;\n }\n #content #formulario > .column2 .header .whatsapp-link {\n display: inline-block;\n width: 2.34375rem;\n height: 2.34375rem;\n font-size: 2.0833333333rem;\n }\n #content #formulario > .column2 .paragraph {\n padding-top: 1rem;\n padding-bottom: 2.34375rem;\n justify-content: center;\n }\n #content #formulario > .column2 form input {\n border-radius: 0 !important;\n height: 1.6875rem;\n margin-bottom: 0.84375rem;\n background-color: rgba(255, 255, 255, 0.5);\n font-size: 0.8333333333rem;\n }\n #content #formulario > .column2 form input::placeholder {\n color: #333333;\n }\n #content #formulario > .column2 form textarea {\n border-radius: 0 !important;\n height: 6.75rem;\n margin-bottom: 2.34375rem;\n background-color: rgba(255, 255, 255, 0.5);\n font-size: 0.8333333333rem;\n }\n #content #formulario > .column2 form textarea::placeholder {\n color: #333333;\n }\n #content #formulario > .column2 form .button {\n width: 100%;\n border-radius: 0 !important;\n background-color: white;\n color: #333333;\n }\n #content section {\n background: none;\n }\n #content section.segment > .container {\n height: 100%;\n }\n #content section.segment > .container > .column1 {\n display: inline-block;\n width: 90rem;\n }\n #content section.segment > .container > .column2 {\n display: inline-block;\n width: 10rem;\n }\n #content .simple.segment {\n border: none !important;\n border-radius: 0 !important;\n box-shadow: none !important;\n margin: 0 !important;\n padding: 0 !important;\n }\n #content .simple.segment > .ui.grid {\n height: 100%;\n }\n #content .fondo-blanco {\n background-color: rgba(255, 255, 255, 0.5);\n }\n}\n@media screen and (min-width: 800px) {\n #backgrounds .cabezal {\n height: 31.25rem;\n background-image: url(\"../images/banner.jpg\");\n background-repeat: no-repeat;\n background-size: 100rem;\n background-position: bottom -2.5rem center;\n background-color: rgba(0, 0, 0, 0.4);\n background-blend-mode: multiply;\n }\n #backgrounds .seccion1 {\n height: 25rem;\n background-image: linear-gradient(#cccccc, #cccccc);\n background-position: left 7rem;\n background-size: 100% 8rem;\n background-repeat: no-repeat;\n }\n #backgrounds .seccion2 {\n height: 27.5rem;\n background-image: url(\"../images/fondo23.png\");\n }\n #backgrounds .seccion2 .diagonal {\n border-bottom: 27.5rem solid rgba(204, 204, 204, 0.5);\n border-right: 118.75rem solid transparent;\n }\n #backgrounds .dimensiones {\n height: 27.5rem;\n background-image: url(\"../images/fondo23.png\");\n }\n #backgrounds .dimensiones .fondo-gris {\n width: 100%;\n height: 100%;\n background-color: rgba(204, 204, 204, 0.5);\n }\n #backgrounds .construido {\n height: 21.875rem;\n background-image: url(\"../images/fondo4.jpg\");\n }\n #backgrounds .corporativos {\n height: 32.5rem;\n background-image: url(\"../images/fondo5.png\");\n }\n #backgrounds .testimonios {\n height: 21.875rem;\n background-image: linear-gradient(#cccccc, #cccccc);\n background-position: left 7.1875rem;\n background-size: 100% 7.375rem;\n background-repeat: no-repeat;\n }\n #backgrounds .formulario {\n height: 30rem;\n background-color: #cccccc;\n clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%);\n }\n\n html {\n height: 217.5rem;\n overflow: hidden;\n }\n\n body {\n height: 217.5rem;\n font-family: Roboto, sans;\n color: #333333;\n }\n\n #content {\n max-width: 67.5rem !important;\n height: 217.5rem;\n position: relative;\n top: -217.5rem;\n }\n #content #header {\n color: white;\n width: 100%;\n height: 31.25rem;\n }\n #content #header .ui.menu {\n border: none !important;\n background: none !important;\n box-shadow: none !important;\n margin: 0 !important;\n color: black;\n }\n #content #header .ui.menu .dropdown .menu {\n /*background: none !important;\n border: none !important;\n box-shadow: none !important;*/\n color: black;\n font-size: 1rem;\n }\n #content #header .ui.menu .dropdown .menu .item {\n padding: 1rem !important;\n }\n #content #header .ui.menu .item {\n color: inherit !important;\n font-size: 2rem;\n padding: 1.25rem !important;\n }\n #content #header .ui.menu .item .shopping.cart div {\n position: relative;\n color: white;\n display: inline-block;\n top: -2.6rem;\n left: 0.2rem;\n font-size: 1rem;\n font-family: Roboto, sans;\n }\n #content #header .logo {\n padding: 0 !important;\n margin: 0 !important;\n }\n #content #header .logo img {\n width: 50%;\n max-width: 64.375rem;\n }\n #content #header .logo .frase1 {\n font-size: 1.5rem;\n }\n #content #header .logo .frase2 {\n font-size: 1rem;\n }\n #content > .column {\n display: inline-block;\n float: left;\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n #content > .column::after {\n clear: both;\n }\n #content > .column1 {\n width: 67%;\n }\n #content > .column1 #seccion1 {\n height: 25rem;\n width: 100%;\n }\n #content > .column1 #seccion1 .image-container {\n display: flex;\n justify-content: space-between;\n height: 15rem;\n }\n #content > .column1 #seccion1 .image-container img {\n height: 9.6875rem;\n width: 11.75rem;\n margin-top: 5.3125rem;\n }\n #content > .column1 #seccion1 .paragraph {\n padding-top: 1.75rem;\n line-height: 0.875rem;\n text-align: justify;\n }\n #content > .column1 #seccion1 .paragraph .header {\n margin-bottom: 1rem;\n font-size: 1.375rem;\n }\n #content > .column1 #seccion2 {\n height: 27.5rem;\n }\n #content > .column1 #seccion2 > .column {\n display: inline-block;\n float: left;\n width: 50%;\n }\n #content > .column1 #seccion2 > .column::after {\n clear: both;\n }\n #content > .column1 #seccion2 .column1 {\n margin-top: 5rem;\n }\n #content > .column1 #seccion2 .column1 img {\n width: 19.8125rem;\n height: 19.8125rem;\n }\n #content > .column1 #seccion2 .column2 {\n margin-top: 7.125rem;\n }\n #content > .column1 #seccion2 .column2 .row:first-child {\n background-color: #00427b;\n color: white;\n height: 11.25rem;\n width: 23.75rem;\n padding: 2rem;\n margin-left: -3rem;\n overflow: hidden;\n }\n #content > .column1 #seccion2 .column2 .row:first-child .header {\n font-weight: bold;\n font-size: 1rem;\n margin-bottom: 1rem;\n }\n #content > .column1 #seccion2 .column2 .row:first-child ul {\n list-style: disc inside;\n font-size: 0.8333333333rem;\n }\n #content > .column1 #seccion2 .column2 .row:last-child {\n margin-top: 1.125rem;\n display: flex;\n justify-content: space-between;\n }\n #content > .column1 #seccion2 .column2 .row:last-child img {\n width: 4.375rem;\n height: 5.3125rem;\n }\n #content > .column1 #dimensiones {\n height: 27.5rem;\n }\n #content > .column1 #dimensiones .header {\n padding: 2.3125rem 0 !important;\n }\n #content > .column1 #dimensiones .header .bigger {\n font-size: 1rem;\n }\n #content > .column1 #dimensiones .images {\n display: flex;\n }\n #content > .column1 #dimensiones .images .column {\n float: left;\n }\n #content > .column1 #dimensiones .images .column > img {\n width: 19.5625rem;\n height: 14.6875rem;\n }\n #content > .column1 #dimensiones .images .column div {\n width: 19.5625rem;\n margin-top: 1.5625rem;\n }\n #content > .column1 #construido {\n height: 21.875rem;\n padding-top: 1.4375rem !important;\n }\n #content > .column1 #construido .header {\n font-size: 1.8333333333rem;\n padding: 0.625rem 2.6875rem;\n background-color: rgba(255, 255, 255, 0.6);\n }\n #content > .column2 {\n width: 33%;\n height: 101.875rem;\n }\n #content > .column2 .sticky {\n height: 16.5625rem;\n width: 19.375rem;\n margin: auto;\n }\n #content > .column2 .sticky .row:first-child {\n height: 10.625rem;\n margin-top: 5rem;\n }\n #content > .column2 .sticky .row:first-child .column {\n display: inline-block;\n float: left;\n }\n #content > .column2 .sticky .row:first-child .column::after {\n clear: both;\n }\n #content > .column2 .sticky .row:first-child .column1 {\n vertical-align: bottom;\n padding-top: 1.25rem;\n width: 12.9166666667rem;\n font-size: 1.1666666667rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .linea {\n margin-bottom: 0.625rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .titulo {\n font-size: 2.0833333333rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .precio {\n font-size: 1.3333333333rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores {\n vertical-align: center;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .text {\n margin-right: 0.1875rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .white {\n border: thin solid black;\n background-color: white;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .black {\n background-color: black;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .blue {\n background-color: blue;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .green {\n background-color: lime;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .yellow {\n background-color: yellow;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .orange {\n background-color: #ff8200;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .red {\n background-color: red;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .circle {\n display: inline-block;\n width: 0.75rem;\n height: 0.75rem;\n border-radius: 8000px;\n margin: auto 0.0625rem;\n cursor: pointer;\n }\n #content > .column2 .sticky .row:first-child .column1 .colores .circle.selected {\n width: 0.875rem;\n height: 0.875rem;\n cursor: default;\n }\n #content > .column2 .sticky .row:first-child .column1 .input {\n width: 4.5rem;\n border: thin solid black;\n text-align: center;\n padding: 0.5rem 0.05rem;\n font-size: 0.8333333333rem;\n }\n #content > .column2 .sticky .row:first-child .column1 .input button {\n background: none;\n border: none;\n width: 1rem;\n margin: 0;\n padding: 0;\n cursor: pointer;\n font-weight: bold;\n }\n #content > .column2 .sticky .row:first-child .column1 .input input {\n width: 2rem;\n background: none;\n margin: 0;\n border: 0;\n padding: 0;\n text-align: center;\n }\n #content > .column2 .sticky .row:first-child .column2 {\n width: 6.4583333333rem;\n }\n #content > .column2 .sticky .row:first-child .column2 img {\n width: 6.875rem;\n height: 10rem;\n }\n #content > .column2 .sticky .row:last-child .button {\n border-radius: 0 !important;\n width: 100%;\n }\n #content #corporativos {\n width: 100%;\n height: 32.5rem;\n margin-top: 101.875rem !important;\n }\n #content #corporativos > .column {\n display: inline-block;\n float: left;\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n #content #corporativos > .column::after {\n clear: both;\n }\n #content #corporativos .column1 {\n width: 67%;\n }\n #content #corporativos .column1 > .header {\n margin-top: 4.1875rem;\n margin-bottom: 2.3125rem;\n }\n #content #corporativos .column1 > .header .bigger {\n font-size: 1.625rem;\n }\n #content #corporativos .column1 .opciones {\n display: flex;\n justify-content: space-around;\n }\n #content #corporativos .column1 .opciones .opcion {\n display: inline-block;\n }\n #content #corporativos .column1 .opciones .opcion .img-grande {\n display: inline-block;\n padding-right: 0.75rem;\n }\n #content #corporativos .column1 .opciones .opcion .img-grande img {\n width: 8.4375rem;\n height: 12.5rem;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion {\n display: inline-block;\n vertical-align: top;\n height: 12.5rem;\n padding-top: 1.25rem;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .content {\n display: block;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .content .header {\n font-size: 1.1666666667rem;\n margin-bottom: 0.625rem;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .content ul {\n list-style: disc inside;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .images {\n margin-top: 2.125rem;\n }\n #content #corporativos .column1 .opciones .opcion .descripcion .images img {\n width: 4.375rem;\n height: 5.3125rem;\n }\n #content #corporativos .column2 {\n width: 33%;\n height: 100%;\n }\n #content #corporativos .column2 .header {\n margin-top: 2.875rem;\n margin-bottom: 1.5rem;\n font-size: 1.625rem;\n }\n #content #corporativos .column2 form .colores {\n vertical-align: center;\n }\n #content #corporativos .column2 form .colores .text {\n margin-right: 0.1875rem;\n }\n #content #corporativos .column2 form .colores .white {\n border: thin solid black;\n background-color: white;\n }\n #content #corporativos .column2 form .colores .black {\n background-color: black;\n }\n #content #corporativos .column2 form .colores .blue {\n background-color: blue;\n }\n #content #corporativos .column2 form .colores .green {\n background-color: lime;\n }\n #content #corporativos .column2 form .colores .yellow {\n background-color: yellow;\n }\n #content #corporativos .column2 form .colores .orange {\n background-color: #ff8200;\n }\n #content #corporativos .column2 form .colores .red {\n background-color: red;\n }\n #content #corporativos .column2 form .colores .circle {\n display: inline-block;\n width: 0.75rem;\n height: 0.75rem;\n border-radius: 8000px;\n margin: auto 0.0625rem;\n cursor: pointer;\n }\n #content #corporativos .column2 form .colores .circle.selected {\n width: 0.875rem;\n height: 0.875rem;\n cursor: default;\n }\n #content #corporativos .column2 form .row {\n margin-bottom: 0.5625rem;\n }\n #content #corporativos .column2 form .input.cantidad {\n width: 4.5rem;\n background: white;\n text-align: center;\n padding: 0.5rem 0.05rem;\n font-size: 0.8333333333rem;\n color: rgba(191, 191, 191, 0.87) !important;\n }\n #content #corporativos .column2 form .input.cantidad button {\n background: none;\n border: none;\n width: 1rem;\n margin: 0;\n padding: 0;\n cursor: pointer;\n color: rgba(191, 191, 191, 0.87) !important;\n }\n #content #corporativos .column2 form .input.cantidad input {\n width: 2rem;\n background: none;\n margin: 0;\n border: 0;\n padding: 0;\n text-align: center;\n color: rgba(191, 191, 191, 0.87) !important;\n }\n #content #corporativos .column2 form .input [type=file] {\n display: none;\n }\n #content #corporativos .column2 form .input .file {\n display: inline-block;\n height: 1.5rem;\n padding-top: 0.1875rem;\n margin-left: 0.3125rem;\n font-size: 1.3333333333rem;\n text-align: center;\n cursor: pointer;\n }\n #content #corporativos .column2 form .input [type=text] {\n height: 1.125rem;\n background-color: white;\n border: none !important;\n border-radius: 0 !important;\n }\n #content #corporativos .column2 form textarea {\n height: 4.5rem;\n background-color: white;\n border: none !important;\n border-radius: 0 !important;\n margin-bottom: 1rem;\n }\n #content #corporativos .column2 form .button {\n width: 100%;\n background-color: #666667;\n color: white;\n border: none !important;\n border-radius: 0 !important;\n }\n #content #felices {\n height: 21.875rem;\n padding: 0 1rem !important;\n padding-top: 3.75rem !important;\n }\n #content #felices .header {\n font-size: 1.8333333333rem;\n }\n #content #felices .testimonios {\n margin-top: 1.5625rem;\n display: flex;\n justify-content: space-between;\n text-align: center;\n }\n #content #felices .testimonios .testimonio {\n height: 5rem;\n color: #666667;\n margin-top: 1.25rem;\n width: 30%;\n text-align: center;\n }\n #content #felices .nav {\n display: block;\n text-align: center;\n color: #666667;\n }\n #content #formulario {\n height: 30rem;\n padding: 0 1rem !important;\n }\n #content #formulario .whatsapp-link {\n color: inherit;\n }\n #content #formulario > .column {\n float: left;\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n #content #formulario > .column::after {\n clear: both;\n }\n #content #formulario > .flotante {\n position: absolute;\n top: 11.4375rem;\n margin: auto;\n left: 40%;\n width: 13.5rem;\n text-align: center;\n }\n #content #formulario > .flotante > .content {\n width: 8.125rem;\n margin: auto;\n left: -50%;\n }\n #content #formulario > .flotante > .content .item {\n display: block;\n padding: 0.3125rem 0;\n }\n #content #formulario > .flotante > .content div.whatsapp {\n height: 1.875rem;\n background-color: #1a9947;\n color: #fff;\n font-size: 0.625rem;\n }\n #content #formulario > .flotante > .content div.whatsapp > i {\n position: relative;\n font-size: 1.3333333333rem;\n top: 0.1875rem;\n }\n #content #formulario > .flotante > .content .rrss {\n display: flex;\n justify-content: space-around;\n font-size: 1.25rem;\n }\n #content #formulario > .flotante > .content .rrss i.inverted.grey {\n color: white !important;\n }\n #content #formulario > .column1 {\n width: 67%;\n margin-top: 1.6875rem;\n }\n #content #formulario > .column1 > img {\n width: 33.75rem;\n height: 21.875rem;\n float: left;\n }\n #content #formulario > .column2 {\n width: 33%;\n }\n #content #formulario > .column2 .header {\n margin-top: 1.25rem;\n text-align: center;\n font-size: 1.8333333333rem;\n }\n #content #formulario > .column2 .header .whatsapp-link {\n display: inline-block;\n width: 1.5625rem;\n height: 1.5625rem;\n font-size: 2.0833333333rem;\n }\n #content #formulario > .column2 .paragraph {\n padding-top: 1rem;\n padding-bottom: 1.5625rem;\n justify-content: center;\n }\n #content #formulario > .column2 form input {\n border-radius: 0 !important;\n height: 1.125rem;\n margin-bottom: 0.5625rem;\n background-color: rgba(255, 255, 255, 0.5);\n font-size: 0.8333333333rem;\n }\n #content #formulario > .column2 form input::placeholder {\n color: #333333;\n }\n #content #formulario > .column2 form textarea {\n border-radius: 0 !important;\n height: 4.5rem;\n margin-bottom: 1.5625rem;\n background-color: rgba(255, 255, 255, 0.5);\n font-size: 0.8333333333rem;\n }\n #content #formulario > .column2 form textarea::placeholder {\n color: #333333;\n }\n #content #formulario > .column2 form .button {\n width: 100%;\n border-radius: 0 !important;\n background-color: white;\n color: #333333;\n }\n #content section {\n background: none;\n }\n #content section.segment > .container {\n height: 100%;\n }\n #content section.segment > .container > .column1 {\n display: inline-block;\n width: 67rem;\n }\n #content section.segment > .container > .column2 {\n display: inline-block;\n width: 33rem;\n }\n #content .simple.segment {\n border: none !important;\n border-radius: 0 !important;\n box-shadow: none !important;\n margin: 0 !important;\n padding: 0 !important;\n }\n #content .simple.segment > .ui.grid {\n height: 100%;\n }\n #content .fondo-blanco {\n background-color: rgba(255, 255, 255, 0.5);\n }\n}"]} \ No newline at end of file diff --git a/public/index.html b/public/index.html index 9ccd587..a5a5173 100644 --- a/public/index.html +++ b/public/index.html @@ -1 +1,13 @@ -Stand
LOREM IPSUM DOLOR SIT AMET, CONSECTETUR
adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
VENTAJAS
  • Apoyo estable del teléfono
  • Ángulo preciso de inclinación para usar en conferencias
  • Compatible con tablets permite cargar mientras se usa
  • Diseño moderno y minimalista
DIMENSIONES y colores
DISEÑADO Y FABRICADO EN CHILE
Fabricado en plástico de origen vegetal sin derivados del petróleo
CONSTRUIDOS EN IMPRESIÓN 3D
STAND
$ 5.990
COLOR
CORPORATIVOS Regalos y más ...
LOGO ABAJO
  • Siempre visible
  • Menor tamaño
LOGO ARRIBA
  • No se ve al apoyar el teléfono
  • Mayor tamaño
COTIZA CON NOSOTROS
COLOR
LOGO
Cargar archivo
CLIENTES FELICES
CONVERSEMOS!
scing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nosventas
\ No newline at end of file +Stand
LOREM IPSUM DOLOR SIT AMET, CONSECTETUR
adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
VENTAJAS
  • Apoyo estable del teléfono
  • Ángulo preciso de inclinación para usar en conferencias
  • Compatible con tablets permite cargar mientras se usa
  • Diseño moderno y minimalista
DIMENSIONES y colores
DISEÑADO Y FABRICADO EN CHILE
Fabricado en plástico de origen vegetal sin derivados del petróleo
CONSTRUIDOS EN IMPRESIÓN 3D
STAND
$ 5.990
COLOR
CORPORATIVOS Regalos y más ...
LOGO ABAJO
  • Siempre visible
  • Menor tamaño
LOGO ARRIBA
  • No se ve al apoyar el teléfono
  • Mayor tamaño
COTIZA CON NOSOTROS
LOGO
COLOR
CLIENTES FELICES
CONVERSEMOS!
scing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nosventas
\ No newline at end of file