/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */

hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

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

/**
 * 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
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 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 size in all browsers.
 */

small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * 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 iframes in all browsers (opinionated).
 */

iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * Collapse border spacing in all browsers (opinionated).
 */

table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */

fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * 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;
}

/* User interaction
 * ========================================================================== */

/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat Regular'), local('Montserrat-Regular'), url(fonts/montserrat-regular-ext.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat Regular'), local('Montserrat-Regular'), url(fonts/montserrat-regular.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'), url(fonts/montserrat-bold-ext.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'), url(fonts/montserrat-bold.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --red: #eb141f;
  --anthrazit: #262626;
  --violett: #6217AD;
  --green: #3b8632;
  --orange: #FFB100;
  --white: #FFFFFF;
  --yellow: #F9C80E;
  --blue: #01BAEF;
  --olive: #A8C686;
  --teal: #00ACAB;
  --purple: #473144;
  --pink: #EE92C2;
  --brown: #352208;
  --grey: #aaa;
  --black: var(--anthrazit);

  --first-button: var(--red);
  --second-button: var(--violett);
  --third-button: var(--green);

  --primary-color: var(--red);
  --light-color: var(--white);
  --tamaro-primary-color: var(--primary-color);
  --tamaro-bg-color: var(--background-color);
  --tamaro-primary-color__hover: #d52932;

  --text-color: var(--anthrazit);
  --background-color:var(--white);
  --highlight-color: var(--primary-color);

  --footer-background-color: var(--anthrazit);
  --footer-text-color: var(--white);

  --container-width: 94vw;
  --container-outer-width: 100vw;

  --outer-padding: calc((100vw - var(--container-outer-width))/2);
  --inner-padding: calc((100vw - var(--container-width))/2);

  --navbar-height: 60px;
  --navbar-offset: 80px;

  --body-font: 'Klima', sans-serif;
  --title-font: 'Klima', sans-serif;
  --button-font: 'Klima', sans-serif;
  --menu-font: 'Klima', sans-serif;

  --menu-weight: 900;
  --button-weight: 900;

  --box-shadow: rgba(0, 0, 0, 0.4) 0 4px 8px;
  --border-radius: 3px;
}

.red {
  --primary-color: var(--red);
}

.orange {
  --primary-color: var(--orange);
}

.yellow {
  --primary-color: var(--yellow);
}

.olive {
  --primary-color: var(--olive);
}

.blue {
  --primary-color: var(--blue);
}

.green {
  --primary-color: var(--green);
}


.teal {
  --primary-color: var(--teal);
}
.violett {
  --primary-color: var(--violett);
}

.purple {
  --primary-color: var(--purple);
}

.pink {
  --primary-color: var(--pink);
}


.brown {
  --primary-color: var(--brown);
}

.grey {
  --primary-color: var(--grey);
}

.black {
  --primary-color: var(--black);
}

@media (min-width: 1250px){
  :root {
    --container-width: 1200px;
    --container-outer-width: 1200px;
  }
}

@supports (-ms-ime-align:auto) {
  :root {
    --container-width: 94vw;
    --container-outer-width: 1200px;

    --outer-padding: 2vw;
    --inner-padding: 2vw;

  }
  main {
    max-width: 1200px !important;
    margin-right: auto;
    margin-left: auto;
  }
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 33%);
}

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

.image img {
  max-width: 100%;
  border-radius: 50%;
}

.testimonial .image {
  padding-top: 2em;
  padding-bottom: 1em;
  padding-left: 2em;
  padding-right: 2em;
}

.person {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial .name {
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 0.3rem;
}

.testimonial-title {
  margin-left: 0.3rem;
}

.quote {
  text-align: center;
  font-size: 0.9em;
}

.quote::before {
  content: "«";
  display: inline;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 0.2rem;
}

.quote::after {
  content: "»";
  display: inline;
  font-weight: bold;
  font-size: 1.2em;
  margin-left: 0.2rem;
}

.testimonial .image {
  padding-left: 25%;
  padding-right: 25%;
}

.testimonials {
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(var(--container-width), 300px), 1fr)
  );
  grid-gap: 1em;
  margin-bottom: 2em;
  margin-top: 1em;
}

#id_statement {
  height: 4em;
}
body.theme-change, body.theme-change .nav-panel {
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

body.dark{
  background-color: #262626;
  color: #dedede;
  --white: #dedede;
  --grey: #4e4e4e;
  --text-color: var(--white);
  --background-color:var(--anthrazit);
  --footer-background-color: black;
  --footer-text-color: grey;
  --tamaro-bg-color: var(--anthrazit);
  --tamaro-block-header-color: var(--white);
  --tamaro-text-color: var(--white);
  --tamaro-label-checkable-color: var(--white);
}

body.dark img {
  opacity: .75;
  -webkit-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

body.dark img:hover {
  opacity: 1;
}

.toggle-theme {
  margin: 0 1em;
  font-size: 0.7em;
}

.toggle-theme.light {
  display: none;
}

body.dark .toggle-theme.light {
  display: inherit;
}

body.dark .toggle-theme.dark {
  display: none;
}
form.form {
  padding: 0.3rem;
}

form.form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr 1em 1fr 1em 1fr 1em 1fr 1em 1fr 1em 1fr 1em 1fr
    1em 1fr 1em 1fr 1em 1fr 1em 1fr;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}

form.form > .message {
  -ms-grid-column-span: 12;
  grid-column: span 12;
  font-size: 0.9rem;
}

form.form > button {
  -ms-grid-column-span: 12;
  grid-column: span 12;
  width: 100%;
  font-size: 1em;
}

form .field {
  position: relative;
  margin-bottom: 1em;
  padding-top: 0.5em;
  margin-top: 0.4em;
}

.field {
  -ms-grid-column-span: 12;
  grid-column: span 12;
}

@media (min-width: 420px) {
  .field.one {
    -ms-grid-column-span: 12;
    grid-column: span 12;
  }

  .field.three-fourths {
    -ms-grid-column-span: 9;
    grid-column: span 9;
  }

  .field.two-thirds {
    -ms-grid-column-span: 8;
    grid-column: span 8;
  }

  .field.one-half,
  .field.id_first_name,
  .field.id_last_name {
    -ms-grid-column-span: 6;
    grid-column: span 6;
  }

  .field.one-third {
    -ms-grid-column-span: 4;
    grid-column: span 4;
  }

  .field.one-fourth {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
}

.field > label {
  position: absolute;
  top: -0.5em;
  left: 0.1rem;
  color: var(--text-color);
  display: block;
  font-size: 0.9rem;
}

.feature-content label {
  color: var(--light-color);
  top: -1rem;
  font-size: 1.2rem;
}

.feature-content form {
  padding: 0;
}

.field > input[type="checkbox"] {
  width: auto;
  display: inline;
}

.field > input[type="checkbox"] + label {
  color: var(--text-color);
  display: inline;
  font-size: 1rem;
  position: relative;
  padding-top: 0.7em;
  vertical-align: middle;
}

.field > input[type="checkbox"] + label + small {
  display: block;
  -webkit-transform: translateY(-0.5em);
  -ms-transform: translateY(-0.5em);
  transform: translateY(-0.5em);
}

.field > small,
.field > label {
  -webkit-transition: color 100ms ease-in-out;
  -o-transition: color 100ms ease-in-out;
  transition: color 100ms ease-in-out;
  opacity: 0.7;
}

.field > input:focus,
.field > textarea:focus {
  border-bottom-color: var(--highlight-color);
  outline: none;
}

.field > input:focus + label,
.field > input:focus ~ small {
  color: var(--highlight-color);
  opacity: 1;
}

.field > input,
.field > select,
.field > textarea {
  width: 100%;
  background: var(--background-color);
  border: none;
  color: var(--text-color);
  border-bottom: solid var(--text-color) 2px;
  margin-bottom: -0.3rem;
  font-size: 1em;
  padding: 0.3em;
  -webkit-transition: border 100ms ease-in-out;
  -o-transition: border 100ms ease-in-out;
  transition: border 100ms ease-in-out;
  font-family: var(--body-font);
}

.field > small {
  font-size: 0.6em;
  margin-top: 0em;
}

form .field.two {
  display: none;
}
body {
  font-size: 16px;
  font-size: clamp(15px, 2vw, 22px);
  font-family: var(--body-font);
  counter-reset: glossary;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
header {
  font-family: var(--title-font);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4em;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

header > a {
  text-decoration: none;
}

h5 {
  font-style: italic;
}

h4,
h5,
h6 {
  font-weight: 400;
}

.hidden {
  display: none;
}

.remove-margin {
  margin-left: calc(-1 * var(--inner-padding));
  margin-right: calc(-1 * var(--inner-padding));
  padding-left: var(--inner-padding);
  padding-right: var(--inner-padding);
}
