/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

*:not(span) {
  word-wrap: break-word;
  overflow-wrap: break-word;
/*  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
   hyphens: none; */
}

body {
  font-size: 18px;
}

/* Screenreader */
.sr-label {
  text-indent: -999em;
}
a, editando{
  text-decoration: blink;
    color: inherit;
}
a:hover, editando:hover{
color: var(--color2) !important;
  text-decoration: blink;
    color: inherit;
}
.superscript {
  vertical-align: super;
  font-size: 1.5vw;
}

/* Grid */
:root {
  --serif-font: Caslon, serif;
  --sans-serif-font: "Open Sans", sans-serif;
  --u-100: calc(100vw / 12 - 10px);
  --uc-100: calc(100% / 12);
  --u-75: calc(var(--u-100) * 0.75);
  --u-50: calc(var(--u-100) * 0.5);
  --u-25: calc(var(--u-100) * 0.25);
  --f1: 5.5rem;
  --f2: 4rem;
  --f3: 3rem;
  --f4: 2rem;
  --f5: 1.5rem;
  --f6: 1rem;
  --small: 0.7rem;
}

.padT_0 {
  padding-top: 0
}

.padT_0 {
  padding-top: 0
}

.fondo_ {
  background-color: transparent;
}

.fondo_color1 {
  background-color: var(--color1);
}

.fondo_color2 {
  background-color: var(--color2);
}

.fondo_color3 {
  background-color: var(--color3);
}

.fondo_color4 {
  background-color: var(--color4);
}

.fondo_color5 {
  background-color: var(--color5);
}

.fondo_color6 {
  background-color: var(--color6);
}

.fondo_color7 {
  background-color: var(--color7);
}

.fondo_color8 {
  background-color: var(--color8);
}

.fondo_color9 {
  background-color: var(--color9);
}

.fondo_color10 {
  background-color: var(--color10);
}

.texto_color1 {
  color: var(--color1);
}

.texto_color2 {
  color: var(--color2);
}

.texto_color3 {
  color: var(--color3);
}

.texto_color4 {
  color: var(--color4);
}

.texto_color5 {
  color: var(--color5);
}

.texto_color6 {
  color: var(--color6);
}

.texto_color7 {
  color: var(--color7);
}

.texto_color8 {
  color: var(--color8);
}

.texto_color9 {
  color: var(--color9);
}

.texto_color10 {
  color: var(--color10);
}

.text-l {
  text-align: left;
}

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

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

@media (min-width: 1200px) {
  :root {
    --u-100: calc(1200px / 12);
    --uc-100: calc(100% / 12);
    --u-75: calc(var(--u-100) * 0.75);
    --u-50: calc(var(--u-100) * 0.5);
    --u-25: calc(var(--u-100) * 0.25);
  }
}

@media (min-width: 1920px) {
  .f_header-a {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }
}

@media (max-width: 700px) {
  :root {
    --u-100: 50px;
  }
}

.box,
.box-flex, .box-fix {
  max-width: calc(1200px + 0rem);
  /*padding-left: 2rem;
  padding-right: 2rem;*/
  margin-left: auto;
  margin-right: auto;
}

.box {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  /*grid-template-rows: repeat(12, [col-start] var(--u-100));*/
  grid-gap: 0;
  height: auto;
}

.box .blk {}

@media (max-width: 767px) {
  .box {
    grid-template-columns: repeat(12, [col-start] 1fr);
  }
}

.box-flex {
  display: flex;
}

.box-fix {
  display: grid;
  grid-auto-columns: calc(100% / 12);
      grid-row-template: repeat(12, 1fr) !important;
      grid-template-columns: calc(100% / 12);
      grid-auto-rows: calc(100% / 12);
}

.box-fix .blk {
  margin-left: 0;
  margin-right: 0;
}

.box-fix .blk:after {
  display: inline-block;
  content: "";
  margin-left: 0;
  margin-right: 0;
}

.start-1 {
  grid-column-start: col-start;
}

.start-2 {
  grid-column-start: col-start 2;
}

.start-3 {
  grid-column-start: col-start 3;
}

.start-4 {
  grid-column-start: col-start 4;
}

.start-5 {
  grid-column-start: col-start 5;
}

.start-6 {
  grid-column-start: col-start 6;
}

.start-7 {
  grid-column-start: col-start 7;
}

.start-8 {
  grid-column-start: col-start 8;
}

.start-9 {
  grid-column-start: col-start 9;
}

.start-10 {
  grid-column-start: col-start 10;
}

.start-11 {
  grid-column-start: col-start 11;
}

/*END*/
.end-1 {
  grid-column-end: 1;
}

.end-2 {
  grid-column-end: 2;
}

.end-3 {
  grid-column-end: 3;
}

.end-4 {
  grid-column-end: 4;
}

.end-5 {
  grid-column-end: 5;
}

.end-6 {
  grid-column-end: 6;
}

.end-7 {
  grid-column-end: 7;
}

.end-8 {
  grid-column-end: 8;
}

.end-9 {
  grid-column-end: 9;
}

.end-10 {
  grid-column-end: 10;
}

.end-11 {
  grid-column-end: 11;
}

.end-12 {
  grid-column-end: 12;
}

.end-13 {
  grid-column-end: 13;
}

/*SPAN*/
.span-1 {
  grid-column-end: span 1;
}

.span-2 {
  grid-column-end: span 2;
}

.span-3 {
  grid-column-end: span 3;
}

.span-4 {
  grid-column-end: span 4;
}

.span-5 {
  grid-column-end: span 5;
}

.span-6 {
  grid-column-end: span 6;
}

.span-7 {
  grid-column-end: span 7;
}

.span-8 {
  grid-column-end: span 8;
}

.span-9 {
  grid-column-end: span 9;
}

.span-10 {
  grid-column-end: span 10;
}

.span-11 {
  grid-column-end: span 11;
}

.span-12 {
  grid-column-end: span 12;
}

.span-full {
  grid-column: col-start / -1;
}

/* Margins */
.mt-175 {
  margin-top: calc(var(--u-100)/100*175);
}

.mt-200 {
  margin-top: calc(var(--u-100)*2);
}

.mt-150 {
  margin-top: calc(var(--u-100)/100*150);
}

.mt-125 {
  margin-top: calc(var(--u-100)/100*125);
}

.mt-100 {
  margin-top: var(--u-100);
}

.mt-75 {
  margin-top: var(--u-75);
}

.mt-50 {
  margin-top: var(--u-50);
}

.mt-25 {
  margin-top: var(--u-25);
}

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

/*mb*/
.mb-175 {
  margin-bottom: calc(var(--u-100)/100*175);
}

.mb-200 {
  margin-bottom: calc(var(--u-100)*2);
}

.mb-150 {
  margin-bottom: calc(var(--u-100)/100*150);
}

.mb-125 {
  margin-bottom: calc(var(--u-100)/100*125);
}

.mb-100 {
  margin-bottom: var(--u-100);
}

.mb-75 {
  margin-bottom: var(--u-75);
}

.mb-50 {
  margin-bottom: var(--u-50);
}

.mb-25 {
  margin-bottom: var(--u-25);
}

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

/*ml*/
.ml-175 {
  margin-left: calc(var(--u-100)/100*175);
}

.ml-200 {
  margin-left: calc(var(--u-100)*2);
}

.ml-150 {
  margin-left: calc(var(--u-100)/100*150);
}

.ml-125 {
  margin-left: calc(var(--u-100)/100*125);
}

.ml-100 {
  margin-left: var(--u-100);
}

.ml-75 {
  margin-left: var(--u-75);
}

.ml-50 {
  margin-left: var(--u-50);
}

.ml-25 {
  margin-left: var(--u-25);
}

.ml-0 {
  margin-left: 0;
}

/* Paddings */
.pt-175 {
  padding-top: calc(var(--u-100)/100*175);
}

.pt-150 {
  padding-top: calc(var(--u-100)/100*150);
}

.pt-125 {
  padding-top: calc(var(--u-100)/100*125);
}

.pt-100 {
  padding-top: var(--u-100);
}

.pt-200 {
  padding-top: calc(var(--u-100)*2);
}

.pt-75 {
  padding-top: var(--u-75);
}

.pt-50 {
  padding-top: var(--u-50);
}

.pt-25 {
  padding-top: var(--u-25);
}

.pt-175 {
  padding-bottom: calc(var(--u-100)/100*175);
}

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

/*PB*/
.pb-150 {
  padding-bottom: calc(var(--u-100)/100*150);
}

.pb-125 {
  padding-bottom: calc(var(--u-100)/100*125);
}

.pb-100 {
  padding-bottom: var(--u-100);
}

.pb-200 {
  padding-bottom: calc(var(--u-100)*2);
}

.pb-75 {
  padding-bottom: var(--u-75);
}

.pb-50 {
  padding-bottom: var(--u-50);
}

.pb-25 {
  padding-bottom: var(--u-25);
}

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

/*padd right*/
.pr-25 {
  padding-right: var(--u-25);
}

.pr-50 {
  padding-right: var(--u-50);
}

.pr-75 {
  padding-right: var(--u-75);
}

.pr-100 {
  padding-right: var(--u-100);
}

.pr-0 {
  padding-right: 0;
}

/*mar right*/
.mr-25 {
  margin-right: var(--u-25);
}

.mr-50 {
  margin-right: var(--u-50);
}

.mr-75 {
  margin-right: var(--u-75);
}

.mr-100 {
  margin-right: var(--u-100);
}

.mr-0 {
  margin-right: 0;
}

/*accordion css*/
.acordeon {}

.acordeon input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.acordeon .row {
  display: flex;
}

.acordeon .row .col {
  flex: 1;
}

.acordeon .row .col:last-child {
  margin-left: 1em;
}

/* Accordion styles */
.acordeon .tabs {}

.acordeon .tab {
  width: 100%;
  padding: 5px 0 0px 0;
  overflow: hidden;
  transition: height 0s;
}

.acordeon .tab-label {
  display: flex;
  justify-content: space-between;
  /*background: #2c3e50;
  font-weight: bold;*/
  cursor: pointer;
  /* Icon */
}

.acordeon .tab-label:hover {
  text-decoration: underline;
}

.acordeon .tab-label:hover::after {
  text-decoration: underline;
  background-image: url('../images/flecha_negra_simple.svg');
  background-size: 0 0;
  background-repeat: no-repeat;
  content: "";
}

.acordeon .tab-label::after {
  /*content: "❯";*/
  /* content: url(../images/flecha_negra_simple.svg);*/
  content: "";
  background-image: url('../images/flecha_negra_simple.svg');
  background-size: 0 0;
  background-repeat: no-repeat;
  display: inline-block;
  transform: rotate(0deg);
  width: 2em;
  height: 2em;
  text-align: center;
  transition: all 0s;
}

.acordeon .tab-content {
  max-height: 0;
  padding: 0;
  transition: height 2s;
  /*transition: all 1.35s;*/
}

.acordeon .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  /*background: #2c3e50;*/
  cursor: pointer;
}

.acordeon .tab-close:hover {
  background: #1a252f;
}

.acordeon input:checked+.tab-label {
  text-decoration: underline;
}

.acordeon input:checked+.tab-label::after {
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  transform: rotate(0deg);
}

.acordeon input:not(checked):hover+.tab-label::after {
  background-image: url('../images/flecha_negra_simple.svg');
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  display: inline-block;
  transform: rotate(180deg);
}

.acordeon input:checked:hover+.tab-label::after {
  background-image: url('../images/flecha_negra_simple.svg');
  transform: rotate(0deg);
  background-position: top;
}

.acordeon input:checked~.tab-content {}

.br_espacio br {
  padding: 5px 0 5px 0;
  content: "";
  margin: 2em;
  display: block;
  font-size: 0%;
}

.acordeon_abierto {
  max-height: 100vh !important;
  padding: 0.3em 0 1em 0 !important;
}

/* fin accordion */
/* Fonts */
.serif {
  font-family: var(--serif-font);
  letter-spacing: 0.3px;
}

.sans-serif {
  font-family: var(--sans-serif-font);
}

@media (max-width: 1024px) {
  :root {
    --f1: 2.2rem;
    --f2: 1.2rem;
    --f3: 1rem;
    --f4: 0.8rem;
    --f5: 0.7rem;
  }
}
.f1, .f2, .f3, .f4, .f5, .f6{
  line-height: inherit;
}

.f1 {
  font-size: var(--f1);
line-height: 1.32;
}

.f2 {
  font-size: var(--f2);
  line-height: 1.32;
}

.f3 {
  font-size: var(--f3);
  line-height: 1.32;
}

.f4 {
  font-size: var(--f4);
  line-height: 1.2;
}

.f5 {
  font-size: var(--f5);
  line-height: 1.1;
}

.f6 {
  font-size: var(--f6);
  line-height: 1.5;
}

.l {
  font-weight: lighter;
}

.divisor{
  width: 100%;
    border-top: 1px var(--color1) solid;
    height: 1px;
}

.b, strong, b {
  font-weight: 600;
  letter-spacing: .6px;
}

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

/* Util */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.tc {
  text-align: center;
}

.ttu {
  text-transform: uppercase;
}

/* Topbar */
.topbar {
  width: 100vw;
  height: var(--u-100);
  z-index: 168;
  position: relative;
  transition: all 0.2s ease;
}

.logo {
  height: var(--u-75);
  display: flex;
  align-items: flex-end;
  transition: all 0.2s ease;
}

.logo a {
  transform: scale(1);
  transition: all 0.125s ease;
  height: inherit;
  width: 100%;
  display: block;
}

.logo a:hover {
  transform: scale(1.03);
}

.logo a:active {
  transform: scale(0.97);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.nav li {
  height: var(--u-75);
  display: flex;
  align-items: flex-end;
  margin-left: var(--u-50);
  font-size: var(--f3);
  transition: all 0.2s ease;
}

.topbar-a .logo {
  margin-left: var(--u-100);
}

.topbar-a .nav {
  margin-right: var(--u-100);
}

/* Mobile Topbar */
.topbar-mobile {
  display: none;
}

@media (max-width: 860px), screen and (orientation: portrait) {}

.topbar-mobile .box-flex {
  justify-content: space-between;
}

.topbar-mobile .nav {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: rgba(255, 255, 255, .99);
  transition: 0.25s ease;
  padding-top: calc(var(--u-100) * 2.5);
  padding-left: calc(var(--u-100) * 3);
}

.mobile-nav-open .topbar-mobile .nav {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.topbar-mobile .nav ul {
  width: 100%;
  display: block;
}

.topbar-mobile .nav ul li {
  width: 100%;
  text-align: center;
  margin: 0;
  height: auto;
  display: block;
}

.topbar-mobile .nav ul li a {
  font-size: 2rem;
  color: var(--blue-color);
  padding: 2rem;
  display: block;
}

.topbar-mobile .nav ul li a::after {
  display: none;
}

/* Button */
.btn {
  border: 0;
  padding: 1em 1.8em;
  background: gray;
  display: inline-block;
  transform: scale(1);
  transition: all 0.125s ease;
}

.btn:hover {
  transform: scale(1.03);
}

.btn:active {
  transform: scale(0.97);
}

/* Hamburger Button */
.hamburger {
  padding: 0 var(--u-100);
  display: flex;
  height: 49px;
  align-items: center;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  position: absolute;
  right: 0;
  top: 0;
  grid-column: 2/6;
  margin-top: var(--u-100);
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger:focus {
  outline: none;
}

.hamburger.is-active {
  position: fixed;
  z-index: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #2680ff;
}

.hamburger-box {
  width: var(--u-100);
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: var(--u-100);
  height: 2px;
  background-color: var(--color1);
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -3vw;
}

.hamburger-inner::after {
  bottom: -3vw;
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Back to top */
#back-to-top {
  box-shadow: 0 5px 25px rgba(0, 0, 0, .1);
  background: white url(/images/back-to-top.svg) center center no-repeat;
  background-size: 28px 14px;
}

/* Masthead */
.masthead-a {
  min-height: calc(var(--u-100) * 4);
  position: relative;
}

.masthead-a img {
  display: block;
  width: 100vw;
}

.masthead-title-box {
  position: absolute;
  bottom: var(--u-100);
  width: 100%;
  left: 0;
}

.masthead-title {
  color: white;
  text-shadow: 1px 3px 12px rgba(0, 0, 0, .3);
  text-align: center;
}

.masthead-a .masthead-title {
  width: calc(var(--u-100) * 5);
  margin-left: var(--u-100);
  text-align: left;
}

@media (max-width: 740px) {
  .masthead-a .masthead-title {
    width: 100%;
    grid-column: col-start / -1;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .masthead-a {
    height: calc(var(--u-100) * 8) !important;
    position: relative;
  }

  .masthead-a img {
    height: calc(var(--u-100) * 8) !important;
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 550px) {
  .masthead-a .masthead-title br.hide-sm {
    display: none;
  }
}

.masthead-b {
  height: auto;
  /*calc(var(--u-100) * 3);*/
  width: 100vw;
  background: gray;
  display: flex;
  position: relative;
  align-items: center;
}

.masthead-b img {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.masthead-b .masthead-title {
  z-index: 1;
}

@media (max-width: 860px) {
  .masthead-b {
    margin-top: 6rem;
  }
}

@media (max-width: 700px) {
  .masthead-b {
    height: calc(var(--u-100) * 7);
  }
}

/* Section Header */
.section-header-a {
  height: calc(var(--u-100) * 2.3);
  align-items: center;
  justify-content: center;
}

.section-header-b {}

.section-header-b--center {
  align-items: center;
  justify-content: center;
}

.section-header-b .section-header-content p {
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .section-header-b .section-header-content br {
    display: none;
  }
}

/* Pull Quote */
.pull-quote-a .pull-quote-content p+p {
  margin-top: 0.5rem;
}

/* Description with Photo */
.desc-with-photo-a .desc {
  grid-column: col-start / span 5;
  grid-row: 1;
  height: calc(var(--u-100) * 5.2);
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .06);
  padding: var(--u-100);
}

@media(max-width: 1200px) {
  .desc-with-photo-a .desc {
    padding: calc(var(--u-100) * 0.7);
  }
}

@media(max-width: 900px) {
  .desc-with-photo-a .desc {
    padding: calc(var(--u-100) * 0.5);
  }
}

@media(max-width: 850px) {
  .desc-with-photo-a {
    margin-bottom: var(--u-100);
    margin-top: var(--u-100);
  }

  .desc-with-photo-a .desc {
    grid-row: 1 !important;
    grid-column: col-start / -1 !important;
    padding: 2rem 2rem calc(25vw + 3rem) 2rem;
    height: auto;
  }

  .desc-with-photo-a .photo {
    grid-row: 2 !important;
    grid-column: col-start / -1 !important;
    height: 50vw !important;
    width: 70vw;
    margin: -25vw auto 0 auto !important;
    overflow: visible !important;
  }

  .desc-with-photo-a .desc-title {
    text-align: center;
  }
}

.desc-with-photo-a .photo {
  grid-column: col-start 5 / -1;
  grid-row: 1;
  height: calc(var(--u-100) * 3);
  margin-top: var(--u-100);
  position: relative;
}

.desc-with-photo-a .photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.desc-title {
  margin-bottom: 1.5rem;
}

.desc-body ul li {
  margin-left: 1.2rem;
  padding-right: 3rem;
  margin-bottom: 0.6rem;
}

.desc-body p {
  padding-right: 5rem;
}

@media(max-width: 850px) {
  .desc-body ul li {
    padding-right: 0;
  }
}

.desc-body p+p {
  margin-top: 1rem;
}

/* Product Listing */
.product-listing-a .product-items {
  justify-content: center;
}

@media (max-width: 750px) {
  .product-listing-a .box-flex {
    flex-direction: column;
    align-items: center;
  }

  .product-listing-a .product-item+.product-item {
    margin-top: var(--u-100);
  }
}

.product-listing-a .product-item {
  flex: 1;
  max-width: 33%;
  flex-shrink: 0;
  text-align: center;
  padding: 0 2rem;
  text-decoration: none;
  color: var(--text-color);
}

.product-listing-a .product-item img {
  min-height: var(--u-100);
  margin-bottom: 1.5rem;
  width: 100%;
  transition: transform 0.125s ease;
}

.product-listing-a .product-item:hover img {
  transform: scale(1.03);
}

.product-listing-a .product-item:active img {
  transform: scale(0.98);
}

.product-title {
  margin-bottom: 0.5rem;
}

.product-specs {
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.product-listing-a .all-products-link {
  justify-content: center;
  align-items: center;
  height: var(--u-100);
  margin-top: 3.3rem;
}

.product-listing-a .all-products-link a {
  padding-top: 1rem;
  border-top: 1px solid var(--text-color);
  min-width: calc(var(--u-100) * 2);
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
}

@media (max-width: 860px) {
  .product-listing-a .all-products-link {
    margin-top: 5rem;
    margin-bottom: 6rem;
  }

  .product-listing-a .product-item {
    padding-top: var(--u-50);
  }
}

/* Product Details */
.product-detail-a .product-images {
  grid-column: col-start / span 4;
  grid-row: 1;
  text-align: center;
  position: relative;
}

.product-detail-a .product-desc {
  grid-column: col-start 5 / -1;
  grid-row: 1;
}

.product-detail-a .product-image {
  width: calc(var(--u-100) * 1.5);
}

.product-detail-a .product-icon {
  height: calc(var(--u-100) * 0.63);
  position: absolute;
  left: 0;
  top: 0;
}

.product-desc-header p {
  margin-top: 1rem;
}

.product-desc-body {
  margin-top: 3rem;
}

.product-desc-body p+p {
  margin-top: 1rem;
}

.product-desc-specs {
  margin-top: 3.9rem;
  opacity: 0.5;
  margin-bottom: 5rem;
}

.product-desc-buttons {
  margin-top: 2rem;
}

.product-desc-buttons a {
  margin-bottom: 1rem;
}

@media (max-width: 760px) {
  .product-detail-a .product-images {
    grid-row: 1;
    grid-column: col-start / -1;
    padding-left: 0 !important;
    margin-bottom: var(--u-100);
  }

  .product-detail-a .product-image {
    width: 30vw;
  }

  .product-detail-a .product-desc {
    grid-row: 2;
    grid-column: col-start / -1;
  }

  .product-desc-header {
    text-align: center;
  }

  .product-desc-buttons {
    justify-content: center;
    text-align: center;
  }

  .product-desc-buttons .btn {
    margin-bottom: 1rem;
    margin-right: 0rem;
  }

  .product-detail-a .product-icon {
    width: calc(var(--u-100) * 0.4);
    bottom: 5.5vw;
    top: auto;
  }
}

/* Footer */
.footer-a {
  padding-top: var(--u-25);
  padding-bottom: var(--u-25);
}

.footer-a .logo {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.footer-a p {
  /*text-align: center;
  font-family: var(--serif-font);*/
}

.footer-a .footer-links {
  margin-top: 1rem;
  justify-content: space-between;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-color);
}

.footer-a .footer-social {
  width: calc(var(--u-100) * 2);
}

.footer-a .footer-social a+a {
  margin-left: 1.5rem;
}

.footer-a .footer-made-by {
  width: calc(var(--u-100) * 2);
  text-align: right;
}

.footer-a .footer-made-by img {
  position: relative;
  top: 3px;
}

.footer-a .footer-legal {
  font-family: var(--serif-font);
}

.footer-a a {
  transition: opacity 0.25s ease;
}

.footer-a a:hover {
  opacity: 0.99;
}

@media (max-width: 860px) {
  .footer-a {
    margin-top: 6rem;
  }

  .footer-a .logo {
    margin-bottom: 3rem;
  }

  .footer-a .logo img {
    width: 120px;
  }

  .footer-a .footer-links {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }

  .footer-a .footer-social {
    margin-bottom: 0.5rem;
  }

  .footer-a .footer-social a+a {
    margin-left: 1rem;
  }

  .footer-a .footer-social {
    width: auto;
    text-align: center;
  }

  .footer-a .footer-made-by {
    text-align: center;
    width: auto;
    margin-top: 1.5rem;
  }
}

/* Legal */
.legal {
  padding-bottom: var(--u-100);
}

.legal h1 {
  margin-top: var(--u-50);
  margin-bottom: var(--u-25);
}

.legal-content {
  max-width: calc(var(--u-100) * 5);
  line-height: 1.5;
}

.legal h2,
.legal h3,
.legal h4 {
  font-weight: 500;
  margin: 2rem 0 1rem 0;
}

.legal h2 {
  font-size: var(--f2);
}

.legal h3 {
  font-size: var(--f3);
}

.legal h4 {
  font-size: var(--f4);
}

.legal ul,
.legal ol,
.legal p+p,
.legal ul+p,
.legal ol+p {
  margin-top: 1rem;
}

.legal ul li {
  margin-left: 1.5rem;
}

/* Cookie Consent */
.cc-window {
  /*  box-shadow: 0 5px 25px rgba(0, 0, 0, .1) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(0, 0, 0, .08);
  font-family: var(--sans-serif) !important;
  */
}

.cc-link {
  color: var(--blue-color) !important;
  text-decoration: none !important;
}

.cc-link:focus {
  outline: none;
}

.cc-dismiss {
  border-radius: 30px !important;
  color: white !important;
  font-weight: 500 !important;
  transition: transform 0.125s ease;
}

.cc-dismiss:focus {
  outline: none;
}

.hidden {
  display: none !important;
  height: 0 !important;
}

.cc-dismiss:active {
  background-color: var(--blue-color) !important;
  transform: scale(0.97) !important;
}

/* Grid Helper */
.grid-helper {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  min-height: 100vh;
  pointer-events: none;
  transform: translateX(-50%);
}

.grid-helper-col {
  border-left: 1px solid rgba(255, 0, 0, .1);
}

.grid-helper-col:last-child {
  border-right: 1px solid rgba(255, 0, 0, .1);
}
