* {
  border: 0 solid;
  /* box-sizing: border-box; */
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  /* overflow-wrap: break-word; */
}

/* *, :after, :before {
  border: 0 solid;
  box-sizing: border-box;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
} */

img,
video {
  max-width: 100%;
}

a,
a:visited {
  /* color: inherit; */
}

/* table {
  border-collapse: collapse;
  border-spacing: 0;
} */

/* img {
  border-style: none;
} */

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-weight: 300;
  --font-weight-strong: 800;
  --font-weight-medium: 700;
  --font-weight-medium-light: 500;
  --max-block-width: 32rem;
  --module-gap: 1.5rem;
  --text-line-height: 1.8;

  --base-font-size: calc(1rem + 0.5vw);
  /* 1.125rem; */

  --color-gray-100: #fafafa;
  --color-gray-200: #f4f4f4;
  --color-gray-300: #E3E3E3;
  --color-gray-500: #ccc;
  --color-gray-600: #a0a0a0;
  --color-gray-700: #7f7e7e;
  --color-gray-800: #424242;
  --color-gray-900: #333;

  --color-blue-300: #eff4f9;

  --color-primary-000: #ffe6d9;
  --color-primary-100: #fcdac9;
  --color-primary-200: #efba9c;
  --color-primary-400: #f36f21;
  --color-primary-450: #de6218;
  --color-primary-500: #cb5015;
  --color-primary-700: #7d300d;
  --color-primary-800: #521f08;

  --box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
}

:root {
  font-family: var(--default-font-family);
  font-size: var(--base-font-size);
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  color: var(--color-gray-900);
  font-weight: var(--font-weight);
}

i {
  font-style: italic;
}

p,
ul,
tr,
td,
h3,
button,
a {
  line-height: var(--text-line-height);
}

h1,
h2 {
  line-height: 1.5;
}

h1,
h2 {
  font-weight: var(--font-weight-strong);
}

h3,
strong {
  font-weight: var(--font-weight-medium);
}

h1 + p,
h2 + p,
h2 + ul,
p + h3 {
  margin-top: var(--module-gap);
}

p + p,
p + ul,
ul + p,
ul + ul {
  margin-top: 1em;
}

/* 
  RESPONSIVITY 
*/

@media only screen and (min-width: 1200px) {
  :root {
    --base-font-size: calc(1rem + 0.3vw);
  }
}

.brand-shapes {
  background: var(--brand-shapes-b, #999);
  height: 4rem;
  position: relative;
}

.brand-shapes > * {
  height: 100%;
  position: absolute;
  width: 100%;
}

.brand-shapes > .mirror {
  margin: 2px 0; /* FIX because Chrome pixel gap */
  transform: scale(1, -1);
}

.brand-shapes-triangle {

  background: var(--brand-shapes-c, #eee);

  /* FIX 5% because Chrome pixel gap */
  -webkit-clip-path: polygon(100% 0, -5% 0, 100% 100%);
          clip-path: polygon(100% 0, -5% 0, 100% 100%);

  margin: -2px 0; /* FIX Chrome px gap */
}

.brand-shapes-trapezoid {

  background: var(--brand-shapes-a, #ddd);
  -webkit-clip-path: polygon(0 0, 100% 90%, 100% 100%, 0 50%);
          clip-path: polygon(0 0, 100% 90%, 100% 100%, 0 50%);
}

@media only screen and (min-width: 1200px) { 
  .brand-shapes {
    height: 5rem;
  }
  
  .brand-shapes-trapezoid {
    -webkit-clip-path: polygon(0 0, 100% 95%, 100% 100%, 0 30%);
            clip-path: polygon(0 0, 100% 95%, 100% 100%, 0 30%);
  }
}

@media only screen and (min-width: 1800px) {
  .brand-shapes {
    height: 7rem;
  }
}

/* .r-blocks {
    --columns: 1;
    --gap: 3rem;
    --max-column-width: 35rem;
    --grid-template-columns: repeat(var(--columns), minmax(auto, var(--max-column-width)));
    --justify-content: space-around;

    display: grid;
    gap: var(--gap);
    grid-template-columns: var(--grid-template-columns);
    justify-content: var(--justify-content);
} */

.r-blocks {
  --r-blocks-max-block-width: 35rem;
  --r-blocks-gap: 1.5rem;
  --r-blocks-justify-content: space-around;

  display: grid;
  gap: var(--r-blocks-gap);
}

.r-blocks--ac {
  align-items: center;
}

.r-blocks--jc {
  --r-blocks-justify-content: center;
}

@media only screen and (min-width: 1200px) {
  .r-blocks {
    display: grid;
    gap: calc(var(--r-blocks-gap) * 4);
    grid-template-columns: repeat(2, minmax(400px, var(--r-blocks-max-block-width)));
    justify-content: var(--r-blocks-justify-content);
  }
}

.container {
  --container-gap: 1.5rem;
  --container-max-block-width: 35rem;

  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-max-block-width);
  padding-left: var(--container-gap);
  padding-right: var(--container-gap);
}

@media only screen and (min-width: 600px) {
  .container {
    padding-left: calc(var(--container-gap) * 2);
    padding-right: calc(var(--container-gap) * 2);
  }
}

@media only screen and (min-width: 1200px) {
  .container--medium {
    max-width: calc(var(--container-max-block-width) * 2);
  }

  .container--wide {
    max-width: calc(var(--container-max-block-width) * 2.5);
  }
}

.button {
  background: #fff3eb;
  color: var(--color-primary-500);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: var(--font-weight-medium);
  padding: 0.6em 1.5em;
  text-decoration: none;
  transition: background 0.2s;
}

.button:hover {
  background: #fce8db;
}

.button:active {
  position: relative;
  top: 1px;
}

.button.button--dark {
  border-radius: 0.5em;
  background: var(--color-primary-450);
  color: #fff;
}

.button.button--dark:hover {
  background: var(--color-primary-500);
}

.button.button--wide {
  box-sizing: border-box;
  display: block;
  text-align: center;
  width: 100%;
}

.topbar {
  align-items: center;
  background: transparent;
  display: grid;
  grid-template-areas:
    "logo country toggle"
    "nav nav nav";
  grid-template-columns: 1fr;
  grid-template-rows: minmax(4.5rem, 1fr);

  position: relative;
}

.topbar-logo {
  /* FIX little a bottom-margin */
  display: inline-flex;
  grid-area: logo;
  padding: 0 0 0 1rem;
}

.topbar-logo img {
  height: 0.7rem;
}

.topbar-country-code {
  display: inline-flex;
  grid-area: country;
  text-decoration: none;
}

.topbar-country-code img {
  height: 1rem;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.topbar-country-code:hover img {
  opacity: 1;
}

.topbar-country-code span {
  display: none;
  font-size: 0.6em;
}

.topbar-country-code img + span {
  margin-left: 0.5em;
}

@media only screen and (min-width: 600px) {
  .topbar-country-code span {
    display: initial;
  }
}

.topbar nav {
  grid-area: nav;
  padding: 1.5rem 0;
  /* border-top: 3px solid #fff4ef; */
  text-align: center;
}

.topbar nav li {
  padding: 1rem;
}

.topbar button {
  align-items: center;
  background: inherit;
  border-bottom-left-radius: 0.5rem;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  grid-area: toggle;
  height: 100%;
  outline: none;
  padding: 1rem 1.5rem;
  transition: border-radius 0.25s;
}

/* .topbar button[aria-expanded=true] {
  border-bottom-left-radius: .5rem;
} */

.topbar button svg {
  fill: none;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 4;
  width: 1rem;
}

.topbar button[aria-expanded="true"] svg path {
  d: path("M3,3 29,29 M16,16 16,16 M3,29 29,3");
}

.topbar button svg path {
  transition: d 0.25s;
}

.topbar button > * {
  pointer-events: none;
}

.topbar button[aria-expanded="false"] + nav {
  display: none;
}

.topbar button[aria-expanded="true"] + nav {
  display: block;
}

footer {
  background: var(--color-gray-900);
  color: var(--color-gray-500);
}

footer a {
  text-decoration: none;
}

footer svg {
  background: #232323;
  border-radius: 50%;
  color: var(--color-gray-500);
  fill: var(--color-gray-500);
  padding: 0.7rem;
}

footer hr {
  background: var(--color-gray-800);
  height: 1px;
  margin: var(--module-gap) 0;
}

.footer-links .highlighted-link {
  color: var(--color-gray-200);
  display: inline-block;
  margin-top: 0.5em;
}

.footer-links h3 {
  color: var(--color-gray-200);
  font-size: 1.25rem;
}

.footer-links h3 + ul {
  margin-top: 0.5em;
}

.footer-links ul {
  list-style: none;
  line-height: 2.1;
}

.footer-extra .country-selector {
  align-items: center;
  display: flex;
}

.footer-extra .country-selector * + * {
  margin-left: 1em;
}

.footer-extra .country-selector img {
  max-width: 1.2em;
}

.footer-extra .social-links {
  display: flex;
  gap: 0.6rem;
}

.footer-extra .social-links a {
  display: block;
}

.footer-links {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto;
  margin-top: 6rem;
}

@media only screen and (min-width: 600px) {
  .footer-links {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }
}

.footer-extra {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
}

.footer-terms {
  font-size: 0.7em;
  padding-bottom: 6rem;
  line-height: 1.7em;
  text-align: center;
  color: var(--color-gray-600);
}

.subscribe {
  background: var(--color-primary-500);
  color: var(--color-primary-000);
}

.subscribe .brand-shapes {
  --brand-shapes-a: var(--color-primary-400);
  --brand-shapes-b: var(--color-gray-900);
  --brand-shapes-c: var(--color-primary-500);
}

.subscribe .brand-shapes:first-child {
  --brand-shapes-a: var(--color-primary-400);
  --brand-shapes-b: white;
  --brand-shapes-c: var(--color-primary-500);
}

.subscribe-container {
  margin-bottom: 4.5rem;
  margin-top: 4.5rem;
}

.subscribe-container h2 {
  line-height: 1;
}

.subscribe-container input {
  background: #bb460f;
  border-bottom-left-radius: 0.5em;
  border-top-left-radius: 0.5em;
  box-sizing: border-box;
  padding: 1em;
  width: 100%;
}

.subscribe-container input:focus {
  outline: 2px solid var(--color-primary-700);
}

.subscribe-container input::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container input::-moz-placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container input:-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container input::-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container input::placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container .button {
  background: var(--color-primary-700);
  border-bottom-right-radius: 0.5em;
  border-top-right-radius: 0.5em;
  color: inherit;
}

.subscribe-container form {
  display: grid;
  grid-template-columns: 1fr auto;
}

.subscribe-container h2 {
  font-size: 1.5em;
}

@media only screen and (min-width: 600px) {
  .subscribe-container h2 {
    font-size: 1.75em;
  }
}

.subscribe-container h2 span {
  color: var(--color-primary-200);
  display: inline-block;
  font-size: 0.48em;
  margin-left: 0.6em;
  text-shadow: none;
}

.subscribe-container h2 + form {
  margin-top: 2rem;
}

.subscribe-after-message {
  display: inline-block;
  margin-top: 1em;
}

.page-header {
  background: var(--color-gray-100);
}

.page-header--center {
  text-align: center;
}

.page-header h1 {
  font-size: 1.75em;
}

.page-header>.svg-logo {
  height: 1.4rem;
}

.page-header .brand-shapes {
  --brand-shapes-a: var(--color-gray-200);
  --brand-shapes-b: white;
  --brand-shapes-c: var(--color-gray-100);
}

.page-header>h1,
.page-header>.svg-logo,
.page-header>hgroup {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

@media only screen and (min-width: 1200px) {

  .page-header>h1,
  .page-header>.svg-logo,
  .page-header>hgroup {
    padding-bottom: 6rem;
    padding-top: 6rem;
  }
}

.page-header-bar {
  background: var(--color-gray-100);
}

@media only screen and (min-width: 600px) {
  .page-header h1 {
    font-size: 2em;
  }

  .page-header>.svg-logo {
    height: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .page-header h1 {
    font-size: 2.75em;
  }
}

.product-card-img {
  align-self: center;
  justify-self: center;
  max-height: 40rem;
}

.product-card-highlights article + article {
  margin-top: var(--module-gap);
}

.product-card-highlights article {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  display: grid;
  grid-template-areas:
    "icon feature"
    "icon subline";
  grid-template-columns: auto 1fr;
}

.product-card-highlights article img {
  align-self: center;
  grid-area: icon;
  height: 2rem;
  justify-self: center;
  width: 2rem;
}

* + .product-card-highlights,
.product-card-highlights + * {
  margin-top: 2rem;
}

.locator {
  background-color: #fff3eb;
}

.locator .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
}

.locator .brand-shapes {
  --brand-shapes-a: var(--color-primary-400);
  --brand-shapes-b: #fff3eb;
  --brand-shapes-c: var(--color-gray-100);
}

.locator.locator--logo .brand-shapes {
  --brand-shapes-c: white;
}

.locator .locator-headline {
  display: flex;
  align-items: center;
}

.locator .locator-headline img {
  height: 1rem;
  margin: 0 .5rem;
}

.locator .locator-headline + * {
  margin-top: 1rem;
}

.locator .button {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.locator a.button {
  background: var(--color-primary-450);
  border: 0.2em solid var(--color-primary-450);
  color: var(--color-primary-000);
}

.locator button.button {
  border: 0.2em solid var(--color-primary-500);
  box-sizing: border-box;
}

.locator .button + .button {
  margin-top: 1rem;
}

@media only screen and (min-width: 600px) {
  .locator .button {
    display: inline-block;
    width: auto;
  }

  .locator .button + .button {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

.r-blocks {
  --r-blocks-max-block-width: var(--max-block-width);
  --r-blocks-gap: var(--module-gap);
}

.container {
  --container-gap: 1rem;
}

.module+*,
*+.module {
  margin-top: var(--module-gap);
}

.module--lg+*,
*+.module--lg {
  margin-top: calc(var(--module-gap) * 2);
}

h2+h3 {
  margin-top: 2em;
}

h2 {
  font-size: 1.5em;
}

h2 span {
  color: var(--color-primary-500);
  display: inline-block;
  font-size: 0.7em;
}

@media only screen and (min-width: 600px) {
  h2 {
    font-size: 1.75em;
  }
}

.logo-header .container {
  display: flex;
  justify-content: center;
  padding: 3rem;
}

.logo-header img {
  width: 15rem;
}

@media only screen and (min-width: 600px) {
  .logo-header img {
    width: 20rem;
  }
}

.product-detail-photos {
  text-align: center;
}

.product-detail-photos h2+* {
  margin-top: 3rem;
}

.product-detail-photos img+h3 {
  margin-top: 1em;
}

.product-manuals-card img {
  max-height: 10rem;
}

.product-manuals-card ul {
  padding-left: 1rem;
}

.sector {
  background: var(--color-gray-100);
}

.sector>*:nth-child(2) {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.sector .brand-shapes:first-child {
  --brand-shapes-a: var(--color-gray-200);
  --brand-shapes-b: white;
  --brand-shapes-c: var(--color-gray-100);
}

.sector .brand-shapes:last-child {
  --brand-shapes-a: var(--color-gray-200);
  --brand-shapes-b: white;
  --brand-shapes-c: var(--color-gray-100);
}

.shaped-block {
  /* clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%); */
  -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
}

.shaped-block-wrapper {
  /* filter: drop-shadow(1rem -1rem 0 #f36e21); */
  -webkit-filter: drop-shadow(1rem 1rem 0 var(--color-gray-200));
  filter: drop-shadow(1rem 1rem 0 var(--color-gray-200));
  /* filter: drop-shadow(1rem -1rem 0 #f36e21) drop-shadow(1rem -1rem 0 #f7f7f7); */
  /* filter: drop-shadow(1rem -1rem 0 #333) drop-shadow(1rem -1rem 0 #f36e21) ; */
  /* filter: drop-shadow(-1rem 1rem 0 #f7f7f7) */
}

.button.shaped-block {
  padding: 1.5rem;
}

.light-headline {
  font-weight: 100;
}

.small {
  font-size: 0.7em;
}

.brand-slogan {
  margin-bottom: var(--module-gap);
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .brand-slogan {
    text-align: right;
  }
}

@media only screen and (min-width: 1200px) {
  .section--right {
    text-align: right;
  }

  header+section,
  .sector+section {
    margin-top: 6rem;
  }
}

*+section,
*+.section {
  margin-top: 4.5rem;
}

@media only screen and (min-width: 1200px) {

  *+section,
  *+.section {
    margin-top: 9rem;
  }
}

.product-title {
  font-weight: var(--font-weight-strong);
  text-transform: uppercase;
}

.product-title+p {
  margin-top: 0.6rem;
}

ul.product-labels {
  list-style: none;
  display: flex;
  gap: 0.4rem;
}

ul.product-labels li {
  font-size: 0.7em;
  font-weight: 500;
  padding: 0.2em 0.8em;
  background-color: rgb(209, 209, 209);
  border-radius: 0.4em;
}

ul.product-labels li[data-type="new"] {
  /* background-color: #1873DE; */
  background-color: var(--color-gray-800);
  color: white;
}

ul.product-labels li[data-type="promo"] {
  background-color: #DE9918;
  color: white;
}

ul.product-labels+* {
  margin-top: 0.8rem;
}