/*  Structure */
:root {
  --scroll-padding: 65px;
  --size-outer-container: 100em;
  --size-container-max: 95vw;
  --size-container-default: 80em;
  --size-container: var(--size-container-default);
  --h-header-mobile: 50px;
  --c-white: hsl(0, 0%, 100%);
  --c-text: hsl(0, 0%, 7%);
  --c-orange-hsl: 30 94% 50%;
  --c-orange: hsl(30, 94%, 50%);
  --bg-hr: #ccc;
  --fz-base: 13px;
  --fz-base-mobile: 16px;
  --f-text: "Montserrat";
  --m-body: 0;
  --p-body: 0;
  --bg-selection: #ccc;
  --c-selection: #fcfcfc;
  --bg-header: var(--c-white);
  --bg-body: #fff;
  --icon-fill: var(--c-orange);
  --icon-stroke: var(--c-orange);
  --bgc-scrollbar: var(--c-orange);
  --td-menu-transform: 500ms;
  --td-menu-box-shadow: 300ms;
  --bg-button: var(--c-orange);
  --c-button: var(--c-white);
  --bd-input: 1px solid var(--c-text);
  --bdrs-input: 4px;
  /**
      scale 1340 at 16px
      320px at 12px;
   */
  --step--2: clamp(0.56rem, calc(0.54rem + 0.13vw), 0.64rem);
  --step--1: clamp(0.68rem, calc(0.63rem + 0.21vw), 0.8rem);
  --step-0: clamp(0.81rem, calc(0.75rem + 0.33vw), 1rem);
  --step-1: clamp(0.98rem, calc(0.88rem + 0.48vw), 1.25rem);
  --step-2: clamp(1.17rem, calc(1.03rem + 0.68vw), 1.56rem);
  --step-3: clamp(1.4rem, calc(1.21rem + 0.96vw), 1.95rem);
  --step-4: clamp(1.69rem, calc(1.42rem + 1.32vw), 2.04rem);
  --step-5: clamp(2.02rem, calc(1.66rem + 1.79vw), 2.05rem);
  --fz-h1: var(--step-5);
  --fz-h2: var(--step-4);
  --fz-h3: var(--step-3);
  --fz-h4: var(--step-1);
  --fz-h5: var(--step-0);
  --fz-small: var(--step--1);
  --space-3xs: clamp(0.25rem, calc(0.25rem + 0vw), 0.25rem);
  --space-2xs: clamp(0.44rem, calc(0.42rem + 0.1vw), 0.5rem);
  --space-xs: clamp(0.69rem, calc(0.67rem + 0.1vw), 0.75rem);
  --space-s: clamp(0.88rem, calc(0.84rem + 0.2vw), 1rem);
  --space-m: clamp(1.31rem, calc(1.25rem + 0.29vw), 1.5rem);
  --space-l: clamp(1.75rem, calc(1.67rem + 0.39vw), 2rem);
  --space-xl: clamp(2.63rem, calc(2.51rem + 0.59vw), 3rem);
  --space-2xl: clamp(3.5rem, calc(3.34rem + 0.78vw), 4rem);
  --space-3xl: clamp(5.25rem, calc(5.01rem + 1.18vw), 6rem);
  /* One-up pairs */
  --space-3xs-2xs: clamp(0.25rem, calc(0.17rem + 0.39vw), 0.5rem);
  --space-2xs-xs: clamp(0.44rem, calc(0.34rem + 0.49vw), 0.75rem);
  --space-xs-s: clamp(0.69rem, calc(0.59rem + 0.49vw), 1rem);
  --space-s-m: clamp(0.88rem, calc(0.68rem + 0.98vw), 1.5rem);
  --space-m-l: clamp(1.31rem, calc(1.1rem + 1.08vw), 2rem);
  --space-l-xl: clamp(1.75rem, calc(1.36rem + 1.96vw), 3rem);
  --space-xl-2xl: clamp(2.63rem, calc(2.19rem + 2.16vw), 4rem);
  --space-2xl-3xl: clamp(3.5rem, calc(2.72rem + 3.92vw), 6rem);
  /* Custom pairs */
  --space-s-l: clamp(0.88rem, calc(0.52rem + 1.76vw), 2rem);
  --gap: var(--space-xl);
  --w-widget: 15rem;
  --bxsh-base: 0 0 20px hsl(0 0% 0% / 0.1);
  --bdrs-base: 20px;
}

@keyframes chevron-in {
  100% {
    clip-path: circle(111.6% at 0 50%);
  }
}
@keyframes chevron-out {
  0% {
    clip-path: circle(111.6% at 0 50%);
  }
  100% {
    clip-path: circle(0 at 90% 95%);
  }
}
@keyframes chevron-transition {
  0% {
    clip-path: polygon(0% 0%, 100% 0px, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@keyframes start {
  from {
    transform: translateX(-40%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes write {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fillIn {
  to {
    fill: currentColor;
  }
}
.transition-fade {
  transition: 1s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

.split .letter {
  opacity: 0;
}

.fade-in {
  opacity: 0;
  transition: opacity 2s ease-out;
}
.in-view .fade-in {
  opacity: 1;
}

.fade-in-zoom {
  transform: scale(1.3);
  opacity: 0;
  transition: opacity 2s ease-out, transform 800ms ease-out;
}
.in-view .fade-in-zoom, .fade-in-zoom.in-view {
  opacity: 1;
  transform: scale(1);
}

@keyframes zoom {
  from {
    transform: scale(1);
    opacity: 1;
    border-width: 3px;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
    border-width: 0;
  }
}
.container {
  width: min(var(--size-container), var(--size-container-max));
  margin-inline: auto;
}

textarea, select, input[type=text], input[type=password], input[type=phone], input[type=tel], input[type=number], input[type=search], input[type=url], input[type=date], input[type=month], input[type=week], input[type=datetime], input[type=datetime-local], input[type=email] {
  padding: 0.5em;
  border: var(--bd-input);
  transition: all 1s;
  border-radius: var(--bdrs-input);
}
textarea:focus, select:focus, input[type=text]:focus, input[type=password]:focus, input[type=phone]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=search]:focus, input[type=url]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, textarea:active, select:active, input[type=text]:active, input[type=password]:active, input[type=phone]:active, input[type=tel]:active, input[type=number]:active, input[type=search]:active, input[type=url]:active, input[type=date]:active, input[type=month]:active, input[type=week]:active, input[type=datetime]:active, input[type=datetime-local]:active, input[type=email]:active {
  border: var(--bd-input-active);
}

.button-alt, .button,
[type=submit],
[type=button],
[type=reset] {
  display: inline-block;
  position: relative;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 100px;
  background-color: var(--bg-button);
  color: var(--c-button);
  font-weight: bold;
  font-size: var(--step--1);
  padding: var(--space-xs) var(--space-xl);
  transition: box-shadow 500ms;
  outline: none;
}
.button-alt:active, .button:active,
[type=submit]:active,
[type=button]:active,
[type=reset]:active, .button-alt:hover, .button:hover,
[type=submit]:hover,
[type=button]:hover,
[type=reset]:hover, .button-alt:focus, .button:focus,
[type=submit]:focus,
[type=button]:focus,
[type=reset]:focus {
  box-shadow: 0 0 0 5px hsl(var(--c-orange-hsl)/0.5);
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bold;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

*::-moz-selection {
  background: var(--bg-selection, #fcfcfc);
  color: var(--c-selection, #fff);
}

*::selection {
  background: var(--bg-selection, #fcfcfc);
  color: var(--c-selection, #fff);
}

::-webkit-scrollbar {
  width: 0.6rem;
  border-left: 1px solid;
}

::-webkit-scrollbar-thumb {
  background: var(--bgc-scrollbar);
}

html {
  min-height: 100%;
  scroll-padding-top: var(--scroll-padding, 65px);
  scroll-behavior: smooth;
}

html,
body {
  scrollbar-color: var(--bgc-scrollbar) var(--bg-body);
  scrollbar-width: thin;
}

body {
  background-color: var(--bg-body);
  font-family: var(--f-text);
  color: var(--c-text);
  padding: var(--p-body, 0);
  margin: var(--m-body, 0);
  font-size: var(--fz-base);
}
body.toggled {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: color 0.4s;
  color: currentColor;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
}

figure {
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
}

hr {
  background-color: var(--bg-hr, #ccc);
  border: none;
  height: 1px;
  display: block;
  flex-basis: 100%;
}

.core_loader-overlay {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 99;
  opacity: 0;
  transition: opacity 1s 0.3s;
  transform-origin: center bottom;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-delay: 1s;
  z-index: -1;
}
.core_loader-overlay svg path {
  fill: inherit;
}
.core_loader-overlay use {
  fill: var(--brand-blue);
}
.core_loader-overlay.-removed {
  transition-delay: 0s;
  opacity: 0;
  z-index: -1;
}
.core_loader-overlay.-show {
  pointer-events: auto;
  opacity: 1;
  transition-duration: 0.5s;
}
.core_loader-overlay.-front {
  z-index: 9999;
}
.core_loader-overlay.-front .loader_image svg {
  transform: scale(1);
  opacity: 1;
}
.core_loader-overlay .loader_image {
  max-width: 500px;
  overflow: hidden;
  height: auto;
}
.core_loader-overlay .loader_image svg {
  width: 100%;
  transition: opacity 0.25s, transform 1s;
  transform: scale(0);
  opacity: 0;
  will-change: opacity, transform;
}
.core_loader-overlay .loader_image path {
  will-change: stroke-dasharray, stroke-dashoffset;
  stroke: #fff;
  stroke-linecap: square;
  fill: var(--brand-blue);
  stroke-width: 0;
  animation: write 2.5s ease-out, fillIn 1s cubic-bezier(0, 0.5, 1, 0.5);
  animation-delay: 1s, 3s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  color: #fff;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.core_loader-overlay .loader_image path.orange {
  color: #E95E1D;
  stroke: currentColor;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-regular-webfont.woff2") format("woff2"), url("../fonts/montserrat-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-bold-webfont.woff2") format("woff2"), url("../fonts/montserrat-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-black-webfont.woff2") format("woff2"), url("../fonts/montserrat-black-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.screen__reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: var(--fz-h1);
}

h2 {
  font-size: var(--fz-h2);
}

h3 {
  font-size: var(--fz-h3);
}

h4 {
  font-size: var(--fz-h4);
}

h5 {
  font-size: var(--fz-h5);
}

h6 {
  font-size: var(--fz-h6);
}

small {
  font-size: var(--fz-small);
}

.large,
.large strong {
  font-weight: 900;
  line-height: 1;
}

p,
ul,
ol,
cite {
  line-height: 1.65;
}

.strenghts,
.features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.strenghts li {
  margin-bottom: var(--space-xs);
  --w-marker: 1em;
  padding-left: 1.5rem;
  font-size: 0.9em;
  position: relative;
}
.strenghts li > * {
  position: relative;
}
.strenghts li:before, .strenghts li:after {
  content: "";
  position: absolute;
  display: block;
}
.strenghts li:before {
  display: block;
  height: var(--w-marker);
  width: var(--w-marker);
  left: 0.2rem;
  top: 3px;
  background-size: contain;
  background: url(../images/check.svg) no-repeat 50% 50%;
}
.strenghts strong {
  display: block;
}

.title {
  margin-bottom: var(--space-m);
}

.features {
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: var(--space-l) 0;
}
.features svg {
  height: 30px;
}
.features li {
  background-color: #fff;
  border: 1px solid var(--c-orange);
  border-radius: var(--bdrs-base);
  padding: var(--space-3xs);
  display: flex;
  align-items: center;
  font-size: 0.8em;
  margin-bottom: var(--space-l);
  transition: all 300ms;
}
.features li:hover {
  background-color: var(--c-orange);
  color: #fff;
  --icon-stroke: #fff;
}
.features figure {
  padding: 0 var(--space-2xs);
}
.features svg {
  max-height: 40%;
}
.features p {
  margin: 0;
}

.lead {
  max-width: 60ch;
  font-size: 1.1em;
}

cite {
  font-style: normal;
}

.readmore {
  text-transform: uppercase;
}

address {
  font-style: normal;
}

.callout {
  border: 2px dashed var(--c-orange);
  padding: var(--space-s-l);
  border-radius: 10px;
  font-size: 1.3em;
  margin-block: var(--space-xl);
  max-width: 80ch;
  margin-inline: auto;
}

p a {
  font-weight: bold;
  text-decoration: underline;
}

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

.text-columns {
  -moz-columns: 350px 2;
       columns: 350px 2;
  -moz-column-rule: 1px dashed #ccc;
       column-rule: 1px dashed #ccc;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}
.text-columns p:first-of-type {
  margin-block-start: 0;
}
.text-columns h2 {
  -moz-column-span: all;
       column-span: all;
  margin-block-end: var(--space-l);
  max-width: 40ch;
  margin-inline: auto;
}

.form-group {
  margin: var(--space-xs) 0;
  max-width: 90vw;
}

label {
  font-weight: bold;
  color: var(--c-label);
  display: block;
}
label.legal {
  text-transform: none;
  font-size: var(--fz-small);
  font-weight: normal;
  display: inline-block;
  color: var(--c-muted, #ccc);
}
label.legal a {
  font-size: inherit;
  font-weight: bold;
}

input[type=color] {
  background-color: transparent;
  border: none;
  padding: 0;
}

textarea {
  max-width: 100%;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  z-index: 0;
  transform: scale(0.1);
  display: block;
}
input[type=checkbox] + label,
input[type=radio] + label {
  padding-left: 30px;
  position: relative;
}
input[type=checkbox] + label > *,
input[type=radio] + label > * {
  position: relative;
}
input[type=checkbox] + label:before, input[type=checkbox] + label:after,
input[type=radio] + label:before,
input[type=radio] + label:after {
  content: "";
  position: absolute;
  display: block;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  position: absolute;
  left: 0;
  background-color: #fff;
  display: inline-block;
  top: 0;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  width: 30px;
  height: 30px;
  left: 0;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  border-radius: 2px;
  border: 1px solid var(--c-orange);
  height: 15px;
  width: 15px;
  transition: background-color 300ms ease;
}
input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before {
  background-color: var(--c-orange);
}

input[type=radio] + label:before {
  border-radius: 50%;
}

.legal label {
  font-size: 0.8em;
  font-weight: normal;
  display: inline-block;
  max-width: 70ch;
}
.legal div {
  margin-bottom: var(--space-xs);
}

.button:disabled,
[type=submit]:disabled,
[type=button]:disabled,
[type=reset]:disabled {
  color: var(--c-muted);
}

.button-alt {
  background-color: #fff;
  color: var(--c-orange);
  border: 1px solid currentColor;
  text-align: center;
}

.readmore {
  border-bottom: 3px solid var(--c-orange);
}

@media screen and (min-width: 760px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  color: var(--c-orange);
  min-width: 24px;
}

form .flex {
  gap: 0;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

.alert {
  background-color: var(--c-orange);
  border-radius: var(--bdrs-base);
  overflow: hidden;
  color: var(--c-white);
  text-align: center;
  padding: var(--space-xs);
  position: relative;
  margin-bottom: var(--space-m);
}
.alert p {
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.alert .close {
  position: absolute;
  right: var(--space-2xs);
  top: var(--space-2xs);
  border: 2px solid var(--c-white);
  padding: 0;
  aspect-ratio: 1/1;
  width: 2em;
  border-radius: 50%;
  transition: 300ms all;
}
.alert .close:hover {
  --icon-fill: var(--c-orange);
  color: var(--c-orange);
  background-color: #fff;
}

.nav ul,
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inline-contact {
  padding-right: 15px;
}
.inline-contact strong {
  font-size: 1rem;
  font-weight: bold;
  padding-right: 5px;
}

.main-navigation {
  --fz-menu-item: var(--fz-h3);
  --fz-submenu-item: var(--fz-h4);
}
.main-navigation ul {
  display: flex;
  flex-direction: column;
}
.main-navigation ul li {
  position: relative;
  padding: var(--space-3xs);
}
.main-navigation ul li.active a {
  font-weight: bold;
  color: var(--c-orange);
}
.main-navigation ul .sub-menu {
  overflow: hidden;
  transition: transform var(--td-menu-transform, 500ms) ease, box-shadow var(--td-menu-box-shadow, 300ms) ease;
  transform-origin: left top;
  transition-delay: var(--td-menu-box-shadow, 300ms), 0ms;
  margin-left: var(--space-s);
}
.main-navigation ul .sub-menu li {
  white-space: nowrap;
}
.main-navigation ul a,
.main-navigation ul span {
  font-size: var(--fz-menu-item);
  font-weight: bold;
}
.main-navigation ul a:hover,
.main-navigation ul span:hover {
  color: var(--c-orange);
}
.main-navigation ul ul li a,
.main-navigation ul ul li span {
  font-weight: normal;
  font-size: var(--fz-submenu-item);
}
@media screen and (min-width: 760px) {
  .main-navigation {
    --fz-menu-item: var(--fz-base);
    --fz-submenu-item: 0.8em;
  }
  .main-navigation ul {
    flex-direction: row;
  }
  .main-navigation .sub-menu {
    top: 100%;
    left: 0;
    margin-left: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border-radius: 3px;
    border-bottom: 2px solid var(--c-orange);
  }
  .main-navigation .sub-menu a:hover {
    color: var(--c-orange);
  }
  .main-navigation .top-level + li {
    margin-left: var(--space-s);
  }
  .main-navigation .top-level:last-child .sub-menu {
    left: auto;
    right: 0;
  }
  .main-navigation .top-level .sub-menu {
    transform: scaleY(0);
  }
  .main-navigation .top-level .sub-menu li {
    opacity: 0;
    transition-delay: 0s;
    transition: opacity var(--td-menu-box-shadow, 300ms);
  }
  .main-navigation .top-level:hover .sub-menu, .main-navigation .top-level:active .sub-menu, .main-navigation .top-level:focus .sub-menu, .main-navigation .top-level.open .sub-menu {
    transition-delay: 0s, var(--td-menu-transform, 500ms);
    transform: scaleY(1);
  }
  .main-navigation .top-level:hover .sub-menu li, .main-navigation .top-level:active .sub-menu li, .main-navigation .top-level:focus .sub-menu li, .main-navigation .top-level.open .sub-menu li {
    transition-delay: var(--td-menu-transform, 500ms);
    opacity: 1;
  }
}

nav.pages {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing)/3;
  flex-wrap: wrap;
}

.site-footer nav ul {
  margin: 0;
  margin-left: var(--space-2xs);
}
.site-footer nav span {
  font-weight: bold;
  text-transform: uppercase;
}

.page-home .pagination {
  display: none;
}
.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xs);
}
.pagination .page-link {
  aspect-ratio: 1/1;
  display: block;
  width: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xs);
  border: 1px solid currentColor;
  border-radius: 3px;
}
.pagination li:not(.disabled) .page-link:hover,
.pagination .active .page-link {
  color: var(--c-orange);
}
.pagination .active .page-link {
  box-shadow: var(--bxsh-base);
}

.inline-nav a {
  padding-left: var(--space-xs);
}

.cookies-bar {
  --transition-speed-modal: 300ms;
  position: fixed;
  background: var(--bg-cookies-bar, #fff);
  z-index: var(--z-cookies-bar, 99);
  border-radius: var(--bdrs-base);
  box-shadow: var(--bxsh-base);
  padding: var(--space-s) var(--space-m);
  bottom: calc(var(--space-m) + var(--h-header-mobile));
  right: var(--space-m);
  transition: all var(--transition-speed-modal);
}
.cookies-bar > * {
  transition: opacity var(--transition-speed-modal);
}
.cookies-bar .content {
  margin: 0;
  padding: 0;
}
.cookies-bar .title {
  font-size: var(--fz-h4);
  margin-bottom: 0;
}
.cookies-bar.hide {
  transition-delay: 300ms;
  opacity: 0;
  pointer-events: none;
}
.cookies-bar.hide > * {
  opacity: 0;
}

.modal-dialog,
.modal {
  background-color: var(--c-white);
  position: fixed;
  box-shadow: var(--bxsh-base);
  width: min(600px, 50vw);
  margin-inline: auto;
  border-radius: var(--bdrs-base);
  overflow: hidden;
  z-index: 999;
  max-height: 50vh;
}
.modal-dialog .modal-content,
.modal .modal-content {
  height: 100%;
  display: grid;
}
.modal-dialog .modal-header,
.modal .modal-header {
  background-color: var(--c-orange);
  color: var(--c-white);
  padding: 0.5rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.modal-dialog .close,
.modal .close {
  position: absolute;
  right: 0;
  background-color: inherit;
  padding: 0.5rem;
  box-shadow: none;
  border: none;
}
.modal-dialog .modal-title,
.modal .modal-title {
  color: inherit;
}
.modal-dialog .modal-body,
.modal .modal-body {
  padding: 1rem;
  overflow: scroll;
}
.modal-dialog .modal-footer,
.modal .modal-footer {
  display: none;
}

.hidden-svg {
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}

.filled-icon {
  fill-rule: evenodd;
  clip-rule: evenodd;
  stroke-linejoin: round;
  stroke-miterlimit: 1.5;
  fill: var(--icon-fill, #e4e4e4);
}

.filled-in-stroke {
  fill: var(--icon-fill);
  stroke: none;
}

.stroked-icon {
  fill-rule: evenodd;
  clip-rule: evenodd;
  stroke-linejoin: round;
  stroke-miterlimit: 2;
  fill: none;
  stroke: var(--icon-stroke, #e4e4e4);
  stroke-width: 1px;
}

.icon {
  width: var(--icon-size, 24px);
  height: var(--icon-size, 24px);
  min-width: var(--icon-size, 24px);
}

.is-filled {
  --icon-fill: #fcbc05;
}

.icon--16 {
  --icon-size: 16px;
}

.icon--13 {
  --icon-size: 13px;
}

.icon--24 {
  --icon-size: 24px;
}

.icon--32 {
  --icon-size: 32px;
}

.icon--48 {
  --icon-size: 48px;
}

.icon--64 {
  --icon-size: 64px;
}

.icon--96 {
  --icon-size: 96px;
}

.icon--128 {
  --icon-size: 128px;
}

.icon--256 {
  --icon-size: 256px;
}

svg.logo {
  max-width: 250px;
}
svg.logo path {
  fill: inherit;
}
svg.logo use {
  fill: var(--brand-blue);
}

img,
video,
iframe,
svg {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

svg {
  height: auto;
}

.icon-box {
  display: flex;
}
.icon-box svg {
  max-height: 36px;
  width: 100px;
  flex-basis: 60px;
}
.icon-box.icon-large svg {
  max-height: 100px;
  height: 100px;
}
.icon-box .icon-box-title {
  margin-top: 0;
  margin-bottom: 0;
}
.icon-box.stroked {
  border: 1px solid var(--c-orange);
  padding: var(--space-xs);
  justify-content: start;
  background-color: var(--bgc, #fff);
  color: var(--c, var(--c-text));
  transition: all 300ms;
}
.icon-box.stroked:hover, .icon-box.stroked:first-child {
  --bgc: var(--c-orange);
  --c: var(--c-white);
  --icon-stroke: #fff;
}
.icon-box.stroked figure svg {
  width: 24px;
  height: auto;
  margin-bottom: var(--space-3xs);
}
.icon-box.stroked h4 {
  margin-bottom: 0;
  font-size: var(--step-0);
}
.icon-box.stroked p {
  font-size: 0.8em;
  margin-top: 0;
}
.icon-box.info {
  border-radius: var(--bdrs-base);
  min-width: 150px;
}
.icon-box.info figure {
  margin-right: var(--space-xs);
  min-width: 24px;
}
.icon-box.info em {
  font-style: normal;
  font-weight: normal;
  font-size: var(--fz-small);
}
.icon-box.info ul,
.icon-box.info ol {
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
  line-height: 1.2;
  font-size: var(--fz-base);
  list-style: none;
}
.icon-box.info ul li,
.icon-box.info ol li {
  margin-bottom: var(--space-xs);
}
.icon-box.info p {
  margin-bottom: 0;
}
.icon-box.info p:first-child {
  margin-top: 0;
}
.icon-box.info section {
  font-size: var(--fz-h3);
  font-weight: bold;
}

.column {
  flex-direction: column;
  border-radius: 20px;
  justify-content: space-between;
  align-items: start;
}

.icon-box-inline {
  align-items: center;
}

.contact-box {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: var(--space-3xs);
}
.contact-box svg,
.contact-box figure {
  flex-basis: 30%;
  min-width: var(--miw-contact-box-icon, 30px);
  max-width: var(--maw-contact-box-icon, 35px);
  height: -moz-min-content;
  height: min-content;
  width: 24px;
  padding: var(--space-3xs);
}

.flex {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
}
.flex > * {
  flex-basis: 15%;
  flex-grow: 1;
  min-width: 110px;
}

.service-box {
  border-left: 2px solid var(--c-orange);
  border-radius: 0;
  padding-left: var(--space-m);
  margin-bottom: var(--space-m);
}
.service-box figure {
  margin-bottom: var(--space-3xs);
}
.service-box svg {
  width: 24px;
  vertical-align: middle;
}
.service-box p {
  font-size: var(--fz-small);
  max-width: 80ch;
}

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version %%INJECT_VERSION%%
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease;
}
#baguetteBox-overlay.visible {
  opacity: 1;
}
#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}
#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}
#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  transition: left 0.4s ease, transform 0.4s ease;
}
#baguetteBox-slider.bounce-from-right {
  animation: bounceFromRight 0.4s ease-out;
}
#baguetteBox-slider.bounce-from-left {
  animation: bounceFromLeft 0.4s ease-out;
}

@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
.baguetteBox-button#previous-button, .baguetteBox-button#next-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  transition: background-color 0.4s ease;
}
.baguetteBox-button:focus, .baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}
.baguetteBox-button#next-button {
  right: 2%;
}
.baguetteBox-button#previous-button {
  left: 2%;
}
.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}
.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  animation-delay: -1s;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
figure.gallery {
  text-align: center;
}

.inline-icons {
  display: flex;
}

blockquote {
  min-width: 60px;
}

.inline-auto-scroll {
  width: 100%;
  display: flex;
  overflow: hidden;
  padding-block-end: var(--space-xs);
  margin-block-end: var(--space-s);
}

.scroll-group {
  display: flex;
  gap: 2em;
  animation: scroll-inline 500s infinite linear;
}
.scroll-group:hover {
  animation-play-state: paused;
}
.scroll-group blockquote {
  flex: 0 0 40em;
  margin: 0;
}

@keyframes scroll-inline {
  from {
    transform: translateX(0);
  }
  to {
    transform: translate(-100%);
  }
}
.card {
  background-repeat: no-repeat;
  background-size: auto 100%;
  border-radius: var(--border-radius-footer, 30px);
  margin-block: var(--space-xl);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  padding: var(--space-m-l);
  display: flex;
}
.card figure {
  aspect-ratio: 1;
  max-width: 80px;
}
.card cite {
  font-weight: bold;
}

.dc-google-rating {
  flex-direction: row;
}

.dc-google-rating__value {
  display: block;
}

.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}

.tns-visually-hidden {
  position: absolute;
  left: -9999px;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.slider {
  display: flex;
  gap: 2rem;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-item {
  border: 1px dashed var(--c-orange);
  border-radius: var(--bdrs-base);
  padding: var(--space-m);
  background: var(--c-white) url(../images/testimonial-bg.svg) no-repeat right top;
}

.testimonial {
  display: flex;
  flex-direction: column-reverse;
}

.testimonial-meta .name {
  text-transform: uppercase;
}
.testimonial-meta .company-name {
  display: block;
}

.tns-controls,
.tns-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tns-controls button {
  color: var(--c-white);
  margin: var(--space-3xs);
  background-color: var(--c-orange);
  border: none;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.single-post,
.single-post-list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: calc(var(--spacing) / 3);
  border-bottom: 1px solid var(--color--brand-lightgray);
}

.related {
  display: flex;
  flex-wrap: wrap;
}
.related .single-post-list {
  flex-direction: column;
  flex-basis: 33%;
  border-bottom: 0;
}
.related .single-post-list figure {
  display: none;
}

.single-post-list + .single-post-list {
  margin-top: calc(var(--spacing) / 3);
}
.single-post-list > * {
  flex-grow: 1;
}
.single-post-list figure {
  flex-basis: 40%;
  text-align: center;
  min-width: 280px;
}
.single-post-list section.content {
  flex-basis: 50%;
  max-width: 80ch;
}
.single-post-list .readmore {
  margin-top: var(--size-padding);
  display: inline-block;
}

.meta {
  flex-basis: 10%;
  padding-left: var(--size-padding);
  padding-bottom: var(--size-padding);
  white-space: nowrap;
  max-width: 20ch;
  font-weight: bold;
}

.single-post {
  display: flex;
  max-width: 80ch;
}
.single-post header {
  padding-left: 10%;
}
.single-post section.content {
  flex-basis: 80%;
}
.single-post blockquote,
.single-post aside {
  border-left: 3px solid var(--c-orange);
  padding: 0 var(--space-m);
  margin-left: -5ch;
  padding-left: 5ch;
  position: relative;
}
.single-post blockquote:before,
.single-post aside:before {
  content: "";
  display: inline-block;
  position: absolute;
  background: #fff url(../images/paragraph.svg) no-repeat top center;
  width: 1em;
  height: 2em;
  left: 0;
  transform: translateX(-50%);
  top: 0;
}
.single-post blockquote p,
.single-post aside p {
  margin-top: 0;
  font-size: var(--fz-p);
}
.single-post aside {
  margin-top: var(--space-m);
  margin-bottom: var(--space-m);
  margin-left: 1em;
  font-size: var(--fz-p);
  padding: var(--space-s);
  padding-left: var(--space-l);
  border: 2px solid var(--c-orange);
  border-radius: 10px;
}
.single-post aside:before {
  top: 10%;
  background-image: url(../images/warning.svg);
  width: 3em;
  height: 4em;
  aspect-ratio: 1/1;
  left: 0;
}

.gradent-mask {
  height: 80%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: flex-end;
}

.blog-hero {
  padding-top: var(--space-xl);
}
.blog-hero img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.blog-hero hgroup {
  max-width: 80ch;
  margin-inline: auto;
}
.blog-hero h1 {
  font-size: var(--step-3);
}

.post-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.post-box a {
  align-self: center;
}

.post-thumbnail,
.post-box figure {
  border-radius: var(--bdrs-base);
  overflow: hidden;
  margin-bottom: var(--space-m);
}
.post-thumbnail img,
.post-box figure img {
  width: 100%;
}

/**
 *  styles shared by all screen sizes without grid support
 **/
[class*=grid-] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

.grid-third {
  gap: var(--gap);
}
@media screen and (min-width: 760px) {
  .grid-third {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-four {
  gap: var(--gap);
}
@media screen and (min-width: 760px) {
  .grid-four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-blog {
  gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.grid-half {
  place-items: center;
}
@media screen and (min-width: 760px) {
  .grid-half {
    grid-template-columns: repeat(2, 1fr);
  }
}

.align-items-left {
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .align-items-left {
    place-items: flex-start;
  }
}

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

.section {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
.section .section {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.logo {
  --icon-fill: var(--c-text);
  --accent-fill: var(--c-text);
}

.background-right {
  background: url(../images/bg.svg) no-repeat 110% 50%;
  background-size: contain;
}

.color-background {
  background: url(../images/bg-2.svg) no-repeat 0% 50%;
  background-size: contain;
}

.cta {
  border: 3px solid var(--c-orange);
  border-radius: var(--bdrs-base);
  display: flex;
  overflow: hidden;
  padding-left: var(--space-m);
  padding-right: var(--space-m);
}
.cta figure {
  align-self: flex-end;
}
@media screen and (max-width: 760px) {
  .cta figure {
    display: none;
  }
}
.cta img {
  display: block;
}
.cta section {
  padding: var(--space-m);
}
.cta input {
  max-width: 100%;
}

.spacer {
  margin-top: var(--space-m);
}

.grid-sidebar {
  position: relative;
}
@media screen and (min-width: 760px) {
  .grid-sidebar {
    grid-template-columns: 1fr 3fr;
  }
}
.grid-sidebar a {
  border-radius: var(--bdrs-base);
  display: block;
  overflow: hidden;
}
.grid-sidebar a img {
  width: 100%;
}
.grid-sidebar > aside {
  position: sticky;
  top: 0;
  display: grid;
  gap: var(--gap);
  align-content: start;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.gallery {
  margin-top: var(--space-m);
  display: grid;
  gap: calc(var(--gap) / 2);
  grid-template-columns: repeat(auto-fill, 100px);
}
.gallery a {
  display: block;
  border: 1px solid #888;
  border-radius: var(--bdrs-base);
  overflow: hidden;
  transition: all 300ms;
}
.gallery a:hover {
  box-shadow: var(--bxsh-base);
}
.gallery a:target:not(:hover) {
  opacity: 0.5;
}
.gallery img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.contact-box {
  align-self: start;
  justify-self: start;
}

.grid-certificates {
  grid-template-columns: minmax(75px, 20vw) 1fr;
}

.page-about .about-section .button {
  display: none;
}

.site-header {
  width: 100%;
  transition: all 0.7s ease-out;
  z-index: 999;
  background-color: var(--bg-header, #fff);
  padding: var(--space-3xs);
  --gap: 0;
}
.site-header .head {
  margin-right: auto;
  margin-left: auto;
}
.site-header a {
  text-decoration: none;
}
.site-header .logo {
  margin: 0;
  line-height: 1;
  transition: all 0.4s;
  grid-area: brand;
  display: flex;
  align-items: center;
  max-width: 24vw;
  min-width: 120px;
  margin-right: var(--space-s);
}
.site-header .logo svg {
  height: auto;
}
.site-header .contact {
  grid-area: top;
}
.site-header .main-navigation {
  grid-area: nav;
}

@media screen and (max-width: 761px) {
  .site-header {
    --headroom-translate: 0%;
    position: fixed;
    bottom: 0;
    box-shadow: var(--bxsh-base);
  }
  .site-header .inner {
    height: var(--h-header-mobile);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .toggable {
    left: 0;
    right: 0;
    bottom: var(--h-header-mobile);
    height: calc(100vh - var(--h-header-mobile));
    background-color: var(--bgc-toggable-mobile, #fff);
    opacity: 0;
    position: fixed;
    padding: var(--space-m);
    pointer-events: none;
    display: flex;
  }
  .menu-open .site-header .toggable {
    pointer-events: all;
    opacity: 1;
  }
  .site-header .toggable .main-navigation {
    width: 100%;
    height: 100%;
    border: 1px solid var(--c-orange);
    padding: var(--space-xs);
    border-radius: var(--bdrs-base);
    overflow: scroll;
  }
  .site-header a span {
    display: none;
  }
}
@media screen and (min-width: 760px) {
  .site-header {
    --headroom-translate: -200%;
    top: 0;
  }
  .site-header .inner {
    width: min(var(--size-container), var(--size-container-max));
    margin-inline: auto;
    display: grid;
    gap: var(--gap);
    grid-template-areas: "brand top" "brand nav";
    grid-template-columns: min-content 1fr;
    justify-items: end;
  }
}
.headroom {
  will-change: transform;
  position: fixed;
}

.headroom--pinned,
.headroom--unpinned {
  box-shadow: var(--bxsh-base);
}

.headroom--top {
  box-shadow: none;
}

.site-footer {
  padding-top: var(--space-xl);
  background: url(../images/bg-2.svg) no-repeat 110% 0%, url(../images/bg.svg) no-repeat -80% 0;
  background-size: 20%, 70%;
}
@media screen and (max-width: 760px) {
  .site-footer {
    padding-bottom: var(--scroll-padding);
  }
}

.social-icons {
  padding-left: var(--space-2xs);
}

.site-footer .container {
  display: grid;
  gap: var(--space-l);
  grid-template-areas: "info" "contactinfo" "nav" "copyright" "designer";
}
@media screen and (min-width: 760px) {
  .site-footer .container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "info nav contactinfo" "copyright copyright copyright" "designer designer designer";
  }
}
.site-footer .container .copyright {
  --bd-copyright: 1px dotted var(--c-orange);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 0.8em;
  border-top: var(--bd-copyright);
  border-bottom: var(--bd-copyright);
  padding-top: var(--space-s);
  padding-bottom: var(--space-s);
}
.site-footer .container .copyright p {
  margin: 0;
}
.site-footer .container .copyright nav {
  display: flex;
  align-items: center;
}
.site-footer .container .copyright {
  grid-area: copyright;
}
.site-footer .container .designer {
  grid-area: designer;
}
.site-footer .container .info {
  grid-area: info;
}
.site-footer .container .footer-nav {
  grid-area: nav;
}

.designer {
  text-align: center;
  margin-bottom: var(--space-xs, 0.5rem);
  margin-top: var(--space-xs, 0.5rem);
}
.designer svg {
  height: var(--h-designer-logo, 1em);
  width: auto;
}

.hero {
  background: url(../images/bg.svg) no-repeat -50% 100%, url(../images/bg.svg) no-repeat 130% 100%;
  background-size: contain, 30%;
}
.hero strong {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--c-text);
  color: transparent;
}
@media screen and (min-width: 760px) {
  .hero {
    margin-top: var(--scroll-padding);
  }
}

.outer,
.inner {
  display: grid;
  width: min(var(--size-container), var(--size-container-max));
  margin-inline: auto;
  place-content: center;
}
@media screen and (min-width: 760px) {
  .outer,
  .inner {
    gap: var(--space-l);
    grid-template-columns: 1fr 1fr;
  }
}

.outer {
  grid-template-areas: "content" "image";
}
@media screen and (min-width: 760px) {
  .outer {
    grid-template-areas: "image content";
  }
}

.outer {
  --size-container: var(--size-outer-container);
  max-width: var(--size-container);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: var(--size-container)) {
  .outer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.inner {
  grid-area: content;
}

.image {
  grid-area: image;
}

.inner {
  --size-container: var(--size-container-default);
  grid-column: 1/-1;
  justify-self: center;
}
.inner .content {
  grid-column: 2;
  max-width: calc(var(--size-container) / 2);
}

.content {
  padding: var(--space-m);
}

.large strong {
  display: block;
}
