@charset "UTF-8";
/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../Fonts/poppins-v24-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts/poppins-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../Fonts/poppins-v24-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../Fonts/poppins-v24-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../Fonts/poppins-v24-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.02);
  }
}
:root {
  scroll-behavior: smooth;
}

.visuallyHidden, .hiddenHeading, .sr-only {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
}

.navSkip {
  position: relative;
  z-index: 9;
  margin: 0;
  padding: 0;
  list-style: none;
}
.navSkip a {
  transition: 0;
}
.navSkip a:active, .navSkip a:focus {
  position: absolute;
  z-index: 9;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  margin: 0px;
  padding: 15px;
  overflow: visible;
  clip: auto;
  color: #ffffff;
  background: none repeat scroll 0 0 #3f3f3f;
}

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

.layoutGrid, .frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1030px) 30px minmax(0, 1fr);
}
@media screen and (min-width: 1110px) {
  .layoutGrid, .frame {
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1030px) 30px minmax(0, 1fr);
  }
}
.layoutGrid > *, .frame > * {
  grid-column: 3;
}
.layoutGrid.contentNarrow > *, .frame.contentNarrow > * {
  justify-self: center;
  max-width: 560px;
}
.layoutGrid .layoutGrid, .layoutGrid .frame, .frame .layoutGrid, .frame .frame {
  grid-template-columns: 1fr;
}
.layoutGrid .layoutGrid > *, .layoutGrid .frame > *, .frame .layoutGrid > *, .frame .frame > * {
  grid-column: 1;
}
.layoutGrid .frame-default, .frame .frame-default {
  align-content: start;
}

.layoutGrid-1-1, .layoutGrid-1-1_square {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 640px) {
  .layoutGrid-1-1, .layoutGrid-1-1_square {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
}
@media screen and (min-width: 950px) {
  #main .layoutGrid-1-1, #main .layoutGrid-1-1_square {
    width: calc(100% + 30px + 30px);
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 950px) and (min-width: 1110px) {
  #main .layoutGrid-1-1, #main .layoutGrid-1-1_square {
    width: calc(100% + 40px + 40px);
    margin-right: -40px;
    margin-left: -40px;
  }
}

.layoutGrid-2-1 {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 640px) {
  .layoutGrid-2-1 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 790px) {
  .layoutGrid-2-1 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}
@media screen and (min-width: 950px) {
  #main .layoutGrid-2-1 {
    width: calc(100% + 30px + 30px);
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 950px) and (min-width: 1110px) {
  #main .layoutGrid-2-1 {
    width: calc(100% + 40px + 40px);
    margin-right: -40px;
    margin-left: -40px;
  }
}

@media screen and (min-width: 480px) {
  .layoutGrid-1-3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 790px) {
  .layoutGrid-1-3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
}
@media screen and (min-width: 1110px) {
  .layoutGrid-1-3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    gap: 30px;
  }
}
@media screen and (min-width: 950px) {
  #main .layoutGrid-1-3 {
    width: calc(100% + 30px + 30px);
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 950px) and (min-width: 1110px) {
  #main .layoutGrid-1-3 {
    width: calc(100% + 40px + 40px);
    margin-right: -40px;
    margin-left: -40px;
  }
}

.layoutGrid-1-1-1 {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 640px) {
  .layoutGrid-1-1-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 950px) {
  .layoutGrid-1-1-1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
}
@media screen and (min-width: 950px) {
  #main .layoutGrid-1-1-1 {
    width: calc(100% + 30px + 30px);
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 950px) and (min-width: 1110px) {
  #main .layoutGrid-1-1-1 {
    width: calc(100% + 40px + 40px);
    margin-right: -40px;
    margin-left: -40px;
  }
}

@media screen and (min-width: 950px) {
  .leftIndent {
    column-gap: 90px;
  }
  .leftIndent > *:first-child {
    padding-left: 40px;
  }
}

.maxWidth405, .frame-maxWidth405 {
  max-width: 405px;
}

@media screen and (min-width: 1110px) {
  .mobileOnly,
  .frame-layout-101 {
    display: none;
  }
}

@media screen and (max-width: 1109px) {
  .mobileHidden,
  .frame-layout-102 {
    display: none;
  }
}

.frame-bgBlueDark {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background: #221c35;
}

.frame-bgWhite, .frame-bgWhiteRedBorder {
  position: relative;
  margin: 30px 0px;
  padding: 20px 30px;
  background: #ffffff;
}
.frame-bgWhite > *, .frame-bgWhiteRedBorder > * {
  margin-top: 0;
}
.frame-bgWhite.marginTopNegative, .frame-bgWhiteRedBorder.marginTopNegative {
  margin: 20px 0 30px 0px;
  padding: 30px 30px 20px 30px;
}

.frame-bgWhiteRedBorder {
  border-left: 6px solid #971b2f;
}

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

html {
  overflow-y: scroll;
  overflow-x: hidden;
  max-width: 100vw;
  background: #ededed;
  color: #3f3f3f;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  color: #3f3f3f;
}

.clearfix {
  *zoom: 1;
}
.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

img {
  width: auto;
  max-width: 100% !important;
  height: auto;
}

video {
  width: 100% !important;
  height: auto !important;
  margin: 10px 0 20px 0;
  line-height: 1;
}

iframe {
  max-width: 100%;
  overflow: scroll;
  margin: 0;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%; /* ratio 16x9 (height/width) */
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 40px 0;
}
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

::-moz-selection {
  color: #ffffff;
  background: #3f3f3f;
}
@supports (-webkit-text-stroke: thin) {
  ::-moz-selection {
    -webkit-text-fill-color: #ffffff;
  }
}

::selection {
  color: #ffffff;
  background: #3f3f3f;
}
@supports (-webkit-text-stroke: thin) {
  ::selection {
    -webkit-text-fill-color: #ffffff;
  }
}

a {
  text-decoration: none;
  color: #3f3f3f;
  text-decoration: none;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
a:hover {
  color: #3f3f3f;
}
a.underlined {
  text-decoration: underline;
}

h1 {
  position: relative;
  margin: 0px 0 12px 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 1.13;
  letter-spacing: 0.03em;
  color: #221c35;
}
@media screen and (min-width: 790px) {
  h1 {
    font-size: 46px;
  }
}
@media screen and (min-width: 1110px) {
  h1 {
    font-size: 47px;
  }
}

h2 {
  position: relative;
  margin: 50px 0 15px 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 1.13;
  letter-spacing: 0.03em;
  color: #221c35;
}
@media screen and (min-width: 1110px) {
  h2 {
    font-size: 36px;
  }
}
h1 + h2 {
  margin-top: 40px;
}
h2.blueBar {
  background: #221c35;
  color: #ffffff;
}

h3 {
  margin: 30px 0 15px 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: 0.03em;
  color: #221c35;
}
@media screen and (min-width: 790px) {
  h3 {
    font-size: 20px;
  }
}
h2 + h3 {
  margin-top: 5px;
}

h4 {
  margin: 30px 0 15px 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #3f3f3f;
  font-size: 17px;
  line-height: 1.12;
  text-transform: none;
}
h3 + h4 {
  margin-top: 5px;
}

p {
  margin: 0px 0 15px 0;
}

.hyphens {
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

h1 .preheader, h1.preheader, h2 .preheader, h2.preheader, h3 .preheader, h3.preheader, h4 .preheader, h4.preheader, p .preheader, p.preheader, span .preheader, span.preheader {
  display: block;
  margin-bottom: 10px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  text-transform: uppercase;
  color: #971b2f;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li, ol li {
  margin: 0;
  padding: 0;
}
.frame-bgBlack ul li, .frame-bgRed ul li, .frame-bgBlack ol li, .frame-bgRed ol li {
  color: #ffffff;
}

ul:not(.navSkip) {
  margin: 0 0 30px 0;
  gap: 15px 30px;
}
ul:not(.navSkip).layoutGrid-1-1 {
  margin-top: 30px;
}
ul:not(.navSkip) li {
  position: relative;
  margin-bottom: 0px;
  padding-left: 20px;
}
ul:not(.navSkip) li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 4px;
  top: 11px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #3f3f3f no-repeat center center;
}
ul:not(.navSkip) li.frame-bgWhiteRedBorder {
  margin: 0px;
  padding-left: 30px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: 0.03em;
  color: #221c35;
  text-transform: uppercase;
}
@media screen and (min-width: 950px) {
  ul:not(.navSkip) li.frame-bgWhiteRedBorder {
    padding-left: 30px;
  }
}
ul:not(.navSkip) li.frame-bgWhiteRedBorder:before {
  display: none;
}
ul:not(.navSkip) ul {
  margin: 8px 0;
}
ul:not(.navSkip) ul li {
  margin-bottom: 5px;
  font-size: 16px;
}
ul:not(.navSkip) ul li:before {
  width: 8px;
  height: 1px;
  top: 12px;
}

ol {
  margin-bottom: 1.5rem;
  padding-left: 12px;
  list-style-type: decimal;
}
ol li {
  margin-bottom: 0.75rem;
  padding-left: 5px;
  line-height: 1.52;
}

strong, b {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}

em, i {
  font-style: italic;
}

.divider, hr {
  clear: both;
  position: relative;
  display: block;
  width: 100%;
  height: 1px !important;
  margin: 40px 0px 40px 0px;
  padding: 0 !important;
  border: 0;
  font-size: 0;
  line-height: 0;
  background: #3f3f3f;
}

address {
  margin: 30px 0 0px 0;
  font-style: normal;
}

figure {
  margin: 0;
  line-height: 0;
}
figure figcaption {
  display: block;
  margin: 15px auto;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  font-size: 20px;
  line-height: 1.5;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3f3f3f;
}

dl {
  margin: 30px 0 20px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
}
dl dt {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.nobr {
  white-space: nowrap;
}

form:not(.productFilter) {
  margin: 0 0 30px 0;
  padding: 30px 20px 15px 20px;
  background: #ffffff;
}
@media screen and (min-width: 1920px) {
  form:not(.productFilter) {
    padding: 60px 60px 30px 60px;
  }
}
form:not(.productFilter) fieldset {
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
}
form:not(.productFilter) fieldset legend {
  margin: 0 0 20px 0;
  color: #3f3f3f;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
}
form:not(.productFilter) fieldset fieldset {
  margin-bottom: 0;
  padding: 0px 0px;
  background: none;
}
form:not(.productFilter) fieldset fieldset legend {
  margin-top: 0px;
  float: none;
  margin-bottom: 0;
}
form:not(.productFilter) fieldset + fieldset {
  margin-top: 25px;
}
form:not(.productFilter) label {
  display: block;
  color: #3f3f3f;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  text-align: left;
}
form:not(.productFilter) input, form:not(.productFilter) textarea, form:not(.productFilter) select, form:not(.productFilter) file, form:not(.productFilter) button[type=submit] {
  width: 100%;
  margin: 0 0 18px 0;
  padding: 10px 15px 8px 15px;
  border: 0px solid transparent;
  background: rgba(237, 237, 237, 0.5);
  color: #3f3f3f;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.33;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  text-align: left;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: inset 4px 4px 4px 0px rgba(63, 63, 63, 0.2);
}
form:not(.productFilter) input[type=radio], form:not(.productFilter) input[type=checkbox] {
  width: auto;
  width: 20px;
  height: 20px;
  margin: 3px 10px 10px 10px;
  padding: 0;
  background: none;
  border: none;
  vertical-align: middle;
  color: #3f3f3f;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  accent-color: #3f3f3f;
}
form:not(.productFilter) input[type=radio] {
  box-shadow: none;
}
form:not(.productFilter) input[placeholder] {
  color: #3f3f3f;
  opacity: 1 !important;
}
form:not(.productFilter) input[placeholder]:focus, form:not(.productFilter) input[placeholder]:hover {
  color: #3f3f3f;
}
form:not(.productFilter) textarea {
  height: 150px;
}
form:not(.productFilter) input:focus, form:not(.productFilter) textarea:focus, form:not(.productFilter) input:hover, form:not(.productFilter) textarea:hover {
  outline: 0;
  background: #ededed;
}
form:not(.productFilter) input[readonly], form:not(.productFilter) input[readonly]:focus, form:not(.productFilter) input[readonly]:hover {
  color: #3f3f3f;
}
form:not(.productFilter) input[type=submit], form:not(.productFilter) button[type=submit], form:not(.productFilter) button[type=button] {
  position: relative;
  display: inline-block;
  width: auto;
  margin: 0 0 15px 0;
  padding: 10px 20px 10px 34px;
  border: 0px solid #3f3f3f;
  background: #971b2f;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
}
form:not(.productFilter) input[type=submit]:before, form:not(.productFilter) button[type=submit]:before, form:not(.productFilter) button[type=button]:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 15px;
  top: 15px;
  left: 15px;
  background: url(../Icons/arrow_white.svg) no-repeat center left;
  background-size: 100% auto;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
form:not(.productFilter) input[type=submit]:hover, form:not(.productFilter) button[type=submit]:hover, form:not(.productFilter) button[type=button]:hover {
  background: #3f3f3f;
}
form:not(.productFilter) input[type=submit] {
  padding-left: 20px;
}
form:not(.productFilter) input[type=submit]:before {
  display: none;
}
form:not(.productFilter) select {
  width: 100%;
}
form:not(.productFilter) option {
  padding: 10px 20px;
  line-height: 1.5;
  background: #ffffff;
}
form:not(.productFilter) .mandatory {
  padding-left: 0.25rem;
  color: #3f3f3f;
}
form:not(.productFilter) .radio label, form:not(.productFilter) .checkbox label, form:not(.productFilter) .form-check label {
  position: relative;
  display: block;
  margin-right: 8px;
  padding-top: 0px;
  padding-bottom: 5px;
  padding-left: 26px;
  color: #3f3f3f;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
}
form:not(.productFilter) .radio label a, form:not(.productFilter) .checkbox label a, form:not(.productFilter) .form-check label a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
@media screen and (min-width: 790px) {
  form:not(.productFilter) .radio label a:after, form:not(.productFilter) .checkbox label a:after, form:not(.productFilter) .form-check label a:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 3px;
    left: 0;
    background: #3f3f3f;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -ms-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
  }
}
form:not(.productFilter) .radio label input[type=radio],
form:not(.productFilter) .radio label input[type=checkbox], form:not(.productFilter) .checkbox label input[type=radio],
form:not(.productFilter) .checkbox label input[type=checkbox], form:not(.productFilter) .form-check label input[type=radio],
form:not(.productFilter) .form-check label input[type=checkbox] {
  position: absolute;
  z-index: 999999;
  opacity: 0;
  width: 28px;
  height: 28px;
  top: 3px;
  left: 0px;
}
form:not(.productFilter) .radio label .checkmark, form:not(.productFilter) .checkbox label .checkmark, form:not(.productFilter) .form-check label .checkmark {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  top: 6px;
  left: 0px;
  border: 1px solid #3f3f3f;
  opacity: 1;
  background: #ffffff no-repeat center center;
  background-size: 100% 100%;
}
form:not(.productFilter) .radio label input[type=radio]:checked ~ .checkmark, form:not(.productFilter) .checkbox label input[type=radio]:checked ~ .checkmark, form:not(.productFilter) .form-check label input[type=radio]:checked ~ .checkmark {
  background-image: url(../Icons/form_check.svg);
}
form:not(.productFilter) .radio label input[type=checkbox]:checked ~ .checkmark, form:not(.productFilter) .checkbox label input[type=checkbox]:checked ~ .checkmark, form:not(.productFilter) .form-check label input[type=checkbox]:checked ~ .checkmark {
  background-image: url(../Icons/form_check.svg);
}

.radio label .checkmark, .form-check.powermail_radiowrap label .checkmark {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.mandatory {
  font-size: 16px;
  color: #3f3f3f;
}
.mandatory span {
  color: #3f3f3f;
}

.error, .required, .alert-danger {
  color: #971b2f;
}

.alert-success {
  color: #971b2f;
}

table {
  width: 100%;
  margin: 30px 0 60px 0;
  border-collapse: collapse;
}
table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
table th,
table td {
  padding: 5px 0;
  border-bottom: 1px solid #a6a6a6;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
}
table td {
  text-align: right;
}
@media screen and (max-width: 479px) {
  table th,
  table td {
    display: block;
    text-align: left;
  }
  table td {
    padding-top: 0;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
  }
}
@media screen and (min-width: 480px) {
  table.specTable td {
    text-align: right;
  }
}

#logoSVGWrapper {
  display: none;
}

#logoSVG path {
  fill: #ffffff;
}

#header {
  position: fixed;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1110px) minmax(0, 1fr);
}
#header .headerTop {
  grid-column: 2;
  grid-row: 1;
  background: #221c35;
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 2fr);
  grid-gap: 0px;
  padding: 15px 35px 0 20px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.scrollDown #header .headerTop {
  padding-top: 0px;
}
#header .headerTop .logo {
  position: relative;
  z-index: 3;
  padding: 14px 30px 31px 10px;
  text-align: left;
  line-height: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media screen and (min-width: 950px) {
  #header .headerTop .logo {
    padding-left: 30px;
  }
}
.scrollDown #header .headerTop .logo {
  padding-bottom: 10px;
}
@media screen and (min-width: 950px) {
  .scrollDown #header .headerTop .logo {
    padding-bottom: 8px;
  }
}
#header .headerTop .logo svg {
  width: 150px;
}
#header .headerTop .navToggle {
  justify-self: end;
}
@media screen and (min-width: 950px) {
  #header .headerTop .navToggle {
    display: none;
  }
}
#header .navInfo {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: flex-end;
  border-top: 6px solid #971b2f;
  position: relative;
  z-index: 3;
}
#header .navInfo ul {
  display: inline-flex;
  justify-content: flex-end;
  margin: 0px 0 0 0;
  padding: 0 15px 5px 15px;
  background: #971b2f;
}
#header .navInfo ul li {
  padding: 0;
}
#header .navInfo ul li::before {
  display: none;
}
#header .navInfo ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 1px 10px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}
#header .navInfo ul li a:hover, #header .navInfo ul li a:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}
#header .navInfo ul li svg {
  height: 14px;
  margin-top: 4px;
  flex: 0 0 15px;
  margin: 0 10px 0 0;
}
#header .navInfo ul li svg path {
  fill: #ffffff;
}
#header .navInfo ul li.language {
  margin-left: 20px;
  position: relative;
}
#header .navInfo ul li.language .languageWrapper {
  display: flex;
  overflow: hidden;
  width: 50px;
  transition: width 0.3s ease;
}
#header .navInfo ul li.language a.active:hover, #header .navInfo ul li.language a.active:focus-visible {
  background: none;
}
#header .navInfo ul li.language:hover .languageWrapper, #header .navInfo ul li.language:focus-within .languageWrapper, #header .navInfo ul li.language.isOpen .languageWrapper {
  width: 140px;
}

.navBreadcrumb {
  width: calc(100% + 30px + 30px);
  margin-right: -30px;
  margin-left: -30px;
}
@media screen and (min-width: 1110px) {
  .navBreadcrumb {
    width: calc(100% + 40px + 40px);
    margin-right: -40px;
    margin-left: -40px;
  }
}
.navBreadcrumb {
  margin-top: 155px;
  margin-bottom: 60px;
}
@media screen and (min-width: 950px) {
  .navBreadcrumb {
    margin-top: 180px;
    margin-bottom: 60px;
  }
}
.navBreadcrumb .navBreadcrumbList {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 10px;
  margin: 0;
  padding: 0 30px 10px 30px;
  list-style: none;
}
@media screen and (min-width: 1110px) {
  .navBreadcrumb .navBreadcrumbList {
    padding: 0 0 30px 0;
  }
}
.navBreadcrumb .navBreadcrumbList::after {
  content: "";
  position: absolute;
  width: calc(100% + 30px + 30px);
  height: 1px;
  bottom: 0;
  left: -30px;
  background: #a6a6a6;
}
@media screen and (min-width: 1110px) {
  .navBreadcrumb .navBreadcrumbList::after {
    width: calc(100% + 40px + 40px);
    left: -40px;
  }
}
.navBreadcrumb .navBreadcrumbList li {
  display: flex;
  align-items: center;
  color: #a6a6a6;
  padding-left: 0 !important;
}
.navBreadcrumb .navBreadcrumbList li::after {
  content: ">";
  display: block;
  margin-right: 0px;
  margin-left: 10px;
  color: #a6a6a6;
}
.navBreadcrumb .navBreadcrumbList a {
  text-decoration: none;
  color: #a6a6a6;
}
.navBreadcrumb .navBreadcrumbList a:hover, .navBreadcrumb .navBreadcrumbList a:focus-visible {
  color: #3f3f3f;
}
.navBreadcrumb .navBreadcrumbList [aria-current=page]::after {
  display: none;
}

#footer {
  margin-top: 90px;
  font-size: 15px;
}
#footer ul {
  margin: 0;
  padding: 0;
}
#footer ul li {
  padding: 0;
}
#footer ul li::before {
  display: none;
}
#footer a {
  color: inherit;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}
#footer a.phone, #footer a.email, #footer a.linkedin, #footer a.xing {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
}
#footer a.phone::before, #footer a.email::before, #footer a.linkedin::before, #footer a.xing::before {
  top: 1px;
}
#footer a.phone::before {
  background-image: url(../Icons/phone_white.svg);
}
#footer a.email::before {
  background-image: url(../Icons/email_white.svg);
}
#footer a.linkedin::before {
  background-image: url(../Icons/social_linkedin_white.svg);
}
#footer a.xing::before {
  background-image: url(../Icons/social_xing_white.svg);
}
#footer .footerContent {
  padding: 60px 0 60px 0;
  background: #221c35;
  color: #ffffff;
}
#footer .footerContent .logo svg {
  display: block;
  width: 150px;
  height: auto;
  margin-bottom: 30px;
}
#footer .footerContent .logo p {
  font-size: 15px;
  color: inherit;
}
#footer .footerContent .navFooter {
  grid-row: 1/span 2;
  grid-column: 2/span 1;
}
#footer .footerContent .navFooter ul {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (min-width: 640px) {
  #footer .footerContent .navFooter ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 790px) {
  #footer .footerContent .navFooter ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1110px) {
  #footer .footerContent .navFooter ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
#footer .footerContent .navFooter ul li a {
  display: block;
  margin-bottom: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
#footer .footerContent .navFooter ul li ul {
  display: block;
}
#footer .footerContent .navFooter ul li ul a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0px;
  font-weight: 400;
  text-transform: none;
}
#footer .footerContent .navFooter ul li ul a:hover {
  color: #ffffff !important;
}
#footer .footerContent .navContact ul {
  display: block;
}
#footer .footerContent .navContact ul li {
  display: block;
}
#footer .footerBottom {
  padding-top: 15px;
  padding-bottom: 15px;
}
#footer .footerBottom p {
  margin: 0;
}
#footer .footerBottom .navInfo {
  margin-top: 15px;
}
@media screen and (min-width: 480px) {
  #footer .footerBottom .navInfo {
    margin-top: 0px;
  }
}
@media screen and (min-width: 790px) {
  #footer .footerBottom .navInfo {
    display: flex;
    justify-content: flex-end;
    gap: 0 18px;
  }
}
#footer .footerBottom .navInfo li + li::before {
  content: "|";
  margin-right: 18px;
}

.toTop {
  position: fixed;
  z-index: 9999;
  display: none;
  z-index: 2;
  bottom: 0px;
  right: 30px;
}
.toTop .scrollToTop {
  float: right;
  display: grid;
  justify-items: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #971b2f;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.toTop .scrollToTop svg {
  width: 30%;
  height: auto;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.toTop .scrollToTop svg path {
  fill: #ededed;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.toTop .scrollToTop:hover {
  background-color: #3f3f3f;
  cursor: pointer;
}
.toTop .scrollToTop:hover svg path {
  fill: #971b2f;
}

#navToggle {
  position: relative;
  z-index: 999;
  width: 32px;
  height: 32px;
  margin: 16px 0 0 0;
  border: 0px solid transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: center;
  cursor: pointer;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
#navToggle::before, #navToggle::after {
  display: none;
}
#navToggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  background: #ffffff;
  opacity: 1;
  left: 4px;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#navToggle span:nth-child(1) {
  top: 6px;
}
#navToggle span:nth-child(2), #navToggle span:nth-child(3) {
  top: 14px;
}
#navToggle span:nth-child(4) {
  top: 22px;
}
#navToggle span::before, #navToggle span::after {
  display: none;
}
#navToggle:hover, #navToggle:focus {
  cursor: pointer;
  background: #221c35;
  border-color: #221c35;
}
#navToggle:hover span, #navToggle:focus span {
  background: #ffffff !important;
}
.navMainActive #navToggle span:nth-child(1) {
  top: 28px;
  width: 0%;
  left: 50%;
}
.navMainActive #navToggle span:nth-child(2) {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navMainActive #navToggle span:nth-child(3) {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navMainActive #navToggle span:nth-child(4) {
  top: 28px;
  width: 0%;
  left: 50%;
}
@media screen and (max-width: 639px) {
  .navMainActive #navToggle:hover span {
    background: #ffffff !important;
  }
}

.navMain ul {
  padding-top: 2px;
}
.navMain ul li {
  padding: 0;
}
.navMain ul li::before {
  display: none;
}
.navMain ul li a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
}
.navMain ul li:last-child::after {
  display: none;
}
.navMain ul li:last-child a.navSearch {
  padding: 17px 0px 0px 10px;
}
.navMain ul li:last-child a.navSearch svg {
  width: 30px;
  height: 30px;
  padding: 6px 7px 6px 4px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.navMain ul li:last-child a.navSearch svg path, .navMain ul li:last-child a.navSearch svg line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.5;
  stroke-linejoin: bevel;
  stroke-miterlimit: 10;
}
.navMain ul li:last-child a.navSearch::after {
  display: none;
}
.navMain ul li:last-child a.navSearch:hover svg {
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 949px) {
  body.navMainActive {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .navMain {
    position: fixed;
    background: #221c35;
    z-index: 2;
    width: 100vw;
    min-height: calc(100vh - 100px);
    top: 0px;
    left: 100vw;
    padding-top: 90px !important;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -ms-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
  }
  .navMain ul {
    display: block;
    padding: 60px 20px 30px 20px;
  }
  .navMain ul li {
    margin-bottom: 20px;
  }
  .navMain ul li a:hover::after {
    display: none;
  }
  .navMain ul li a.navSearch {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
  }
  .navMain ul li button.arrow {
    display: none;
    border: 0;
    padding: 0;
  }
  .navMainActive .navMain {
    left: 0;
  }
  .navMain ul ul {
    display: none;
    text-align: left;
  }
  .navMain ul ul li button.arrow {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media screen and (min-width: 950px) {
  .navMain ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    gap: 15px 0px;
  }
  .navMain ul li {
    margin: 0;
  }
  .navMain ul li::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 14px;
    top: 24px;
    right: 0;
    background: #ffffff;
  }
  .navMain ul li button.arrow {
    display: none;
  }
  .navMain ul li a {
    padding: 18px 14px;
  }
  .navMain ul li a::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 1px;
    bottom: 18px;
    left: 14px;
    background: #ffffff;
    background: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -ms-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
  }
  .navMain ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .navMain ul li a:hover::after {
    width: calc(100% - 28px);
  }
  .navMain ul ul {
    display: none;
  }
}
button {
  border: none;
}
button:hover {
  cursor: pointer;
}

.buttonRed, .buttonWhite {
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
  padding: 5px 12px 4px 24px;
  font-size: 17px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  text-decoration: none;
}
.buttonRed::before, .buttonWhite::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  top: 12px;
  left: 10px;
  background: no-repeat;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.buttonRed:hover::before, .buttonWhite:hover::before {
  left: 13px;
}
.buttonRed:hover, .buttonRed:focus-visible, .buttonWhite:hover, .buttonWhite:focus-visible {
  -moz-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  -webkit-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
}

.buttonRed {
  background: #971b2f;
  color: #ffffff;
  box-shadow: inset 0 0 0 0 #971b2f;
}
.buttonRed::before {
  background-image: url(../Icons/arrow_white.svg);
}
.buttonRed:hover {
  box-shadow: inset 400px 0 0 0 #221c35;
  color: #ffffff;
}

.buttonWhite {
  background: #ffffff;
  color: #3f3f3f;
}
.buttonWhite::before {
  background-image: url(../Icons/arrow_red.svg);
}
.buttonWhite:hover {
  -moz-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  -webkit-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
}

.buttonWhiteLarge {
  padding-top: 15px;
  padding-bottom: 13px;
}
.buttonWhiteLarge::before {
  top: 22px;
}

.more, .back {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 15px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #3f3f3f;
  text-decoration: none;
}
.more.moreRegular, .back.moreRegular {
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.more::before, .back::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  top: 8px;
  left: 0px;
  background: url(../Icons/arrow_red.svg) no-repeat;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

a:hover span.more, a.more:hover {
  color: #971b2f;
}
a:hover span.more::before, a.more:hover::before {
  left: 3px;
}

.back {
  padding-top: 35px;
}
@media screen and (min-width: 1110px) {
  .back {
    padding-top: 45px;
  }
}
.back::before {
  top: 43px;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (min-width: 1110px) {
  .back::before {
    top: 53px;
  }
}
.back::after {
  content: "";
  position: absolute;
  width: calc(100% + 30px + 30px);
  height: 1px;
  top: 0;
  left: -30px;
  background: #a6a6a6;
}
@media screen and (min-width: 1110px) {
  .back::after {
    width: calc(100% + 40px + 40px);
    left: -40px;
  }
}

a:hover span.back, a.back:hover {
  color: #971b2f;
}
a:hover span.back::before, a.back:hover::before {
  left: -3px;
}

a.phone, a.email, a.linkedin, a.xing {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding: 0px 0 0px 32px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  color: #3f3f3f;
}
a.phone::before, a.email::before, a.linkedin::before, a.xing::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  top: 4px;
  left: 0px;
  background: no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

a.phone::before {
  background-image: url(../Icons/phone_default.svg);
}

a.email::before {
  background-image: url(../Icons/email_default.svg);
}

a.linkedin::before {
  background-image: url(../Icons/social_linkedin_default.svg);
}

a.xing::before {
  background-image: url(../Icons/social_xing_default.svg);
}

.layoutGrid-1-1_square {
  gap: 0;
}
.layoutGrid-1-1_square picture {
  line-height: 0;
}
.layoutGrid-1-1_square a, .layoutGrid-1-1_square div {
  display: grid;
  align-content: end;
  padding: 30px;
  background: #ffffff;
}
@media screen and (min-width: 950px) {
  .layoutGrid-1-1_square a, .layoutGrid-1-1_square div {
    padding: 30px;
  }
}
.layoutGrid-1-1_square a > :first-child, .layoutGrid-1-1_square div > :first-child {
  margin-top: 0;
}
.layoutGrid-1-1_square a span.more, .layoutGrid-1-1_square div span.more {
  margin-bottom: 0;
}
.layoutGrid-1-1_square a:hover {
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 640px) {
  .layoutGrid-1-1_square.imageRight picture {
    order: 2;
  }
}
@media screen and (min-width: 640px) {
  .layoutGrid-1-1_square.imageRight a, .layoutGrid-1-1_square.imageRight div {
    order: 1;
  }
}

.cardContact img {
  float: right;
  width: 90px;
  margin: 0 0 5px 5px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.cardContact h3 {
  margin: 15px 0 5px 0;
  letter-spacing: 0;
  color: #971b2f;
}
.cardContact .cardContactImage {
  display: block;
}
.cardContact .cardContactImage figure {
  float: right;
  width: 90px;
  margin: 0 0 10px 15px;
}
.cardContact .cardContactImage figure img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.cardContact2 {
  display: grid;
  background: white;
}
@media screen and (min-width: 950px) {
  .cardContact2 {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}
.cardContact2 figure {
  align-self: center;
  line-height: 0;
  margin: 0;
  padding: 30px 30px 0 30px;
}
@media screen and (min-width: 950px) {
  .cardContact2 figure {
    padding: 0;
  }
}
.cardContact2 div {
  padding: 20px 30px;
  background: #ffffff;
}
.cardContact2 div h3 {
  margin: 0 0 6px 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: 0em;
  color: #971b2f;
}
.cardContact2 div p {
  margin-bottom: 20px;
}
.cardContact2 div a {
  margin: 5px 0 0 0;
  font-size: 17px;
}

.cardExample {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #ffffff;
  color: #221c35;
  text-decoration: none;
}
.cardExample .cardExampleImage {
  display: grid;
  place-items: center;
  background: #221c35;
}
.cardExample .cardExampleText {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 30px;
}
@media screen and (min-width: 950px) {
  .cardExample .cardExampleText {
    padding: 30px;
  }
}
.cardExample .cardExampleText h3 {
  margin: 0;
}
.cardExample .cardExampleText p {
  margin: 0;
}
.cardExample .cardExampleText .cardExampleDetail {
  margin: 0px;
}

.navList {
  margin-bottom: 30px;
}
.navList a {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  margin-bottom: 0;
}
.navList a .preheader {
  color: #a6a6a6;
}
.navList a h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #971b2f;
  text-transform: uppercase;
}
.navList a .more {
  margin: 0px;
}

.jobItem {
  margin-top: 0px;
  margin-bottom: 15px;
}
@media screen and (min-width: 790px) {
  .jobItem {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: center;
  }
}
.jobItem div:nth-child(2) {
  padding-top: 12px;
}
@media screen and (min-width: 790px) {
  .jobItem div:nth-child(2) {
    justify-self: end;
    padding-top: 0;
  }
}
.jobItem h3 {
  margin: 5px 0 12px 0;
  text-transform: uppercase;
}
.jobItem p {
  margin: 0;
}

.contentHeader {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) minmax(0, 1110px) minmax(30px, 1fr);
  margin-top: 100px;
}
@media screen and (min-width: 950px) {
  .contentHeader {
    grid-template-columns: minmax(30px, 1fr) minmax(0, 1110px) minmax(30px, 1fr);
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1110px) {
  .contentHeader {
    margin-top: 0;
  }
}
.contentHeader .contentHeaderImage {
  grid-column: 1/-1;
  grid-row: 1;
  max-height: 100vh;
  overflow: hidden;
}
.contentHeader .contentHeaderImage img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.contentHeader .contentHeaderText {
  grid-column: 1/-1;
  grid-row: 2;
  align-self: center;
  position: relative;
  background: #971b2f;
  color: #ffffff;
}
@media screen and (min-width: 950px) {
  .contentHeader .contentHeaderText {
    grid-column: 2;
    grid-row: 1;
    max-width: 58.33%;
  }
}
.contentHeader .contentHeaderText.contentHeaderTextCenter {
  align-self: center;
}
.contentHeader .contentHeaderText.contentHeaderTextEnd {
  align-self: end;
}
@media screen and (min-width: 950px) {
  .contentHeader .contentHeaderText.contentHeaderTextEnd {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .contentHeader .contentHeaderText.contentHeaderTextEnd {
    margin-bottom: 60px;
  }
}
.contentHeader .contentHeaderText > a, .contentHeader .contentHeaderText > div {
  display: block;
  padding: 35px 30px 40px 30px;
  text-decoration: none;
}
.contentHeader .contentHeaderText h1, .contentHeader .contentHeaderText h2, .contentHeader .contentHeaderText p, .contentHeader .contentHeaderText .preheader {
  color: #ffffff;
}
.contentHeader .contentHeaderText .buttonWhite {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 790px) {
  .contentHeader .contentHeaderText.hasButton p {
    width: 66.7%;
  }
}
.contentHeader .contentHeaderText.hasIcon {
  position: relative;
}
@media screen and (min-width: 790px) {
  .contentHeader .contentHeaderText.hasIcon h1, .contentHeader .contentHeaderText.hasIcon p {
    width: 66.7%;
  }
}
.contentHeader .contentHeaderText.hasIcon img {
  position: absolute;
  width: 60px;
  top: -30px;
  right: 20px;
  background: #221c35;
}
@media screen and (min-width: 480px) {
  .contentHeader .contentHeaderText.hasIcon img {
    width: 90px;
  }
}
@media screen and (min-width: 790px) {
  .contentHeader .contentHeaderText.hasIcon img {
    width: 147px;
  }
}
@media screen and (min-width: 950px) {
  .contentHeader .contentHeaderText.hasIcon img {
    right: -30px;
  }
}
@media screen and (min-width: 1110px) {
  .contentHeader .contentHeaderText.hasIcon img {
    top: auto;
    bottom: -45px;
  }
}
@media screen and (min-width: 1240px) {
  .contentHeader .contentHeaderText.hasIcon img {
    top: -30px;
    bottom: auto;
  }
}
@media screen and (min-width: 950px) {
  .contentHeader.marginBottomNegative {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1110px) {
  .contentHeader.marginBottomNegative {
    margin-bottom: -95px;
  }
}
@media screen and (min-width: 1110px) {
  .contentHeader.marginBottomNegative .contentHeaderText.contentHeaderTextEnd {
    margin-bottom: 105px;
  }
}

.categoryList {
  margin-top: 60px;
  margin-bottom: 30px;
}
.categoryList .categoryListItem {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #ffffff;
  color: #221c35;
  text-decoration: none;
}
.categoryList .categoryListItem .categoryListImage {
  display: grid;
  place-items: center;
  background: #221c35;
}
.categoryList .categoryListItem .categoryListImage img {
  width: 50%;
}
@media screen and (min-width: 950px) {
  .categoryList .categoryListItem .categoryListImage img {
    width: 100%;
  }
}
.categoryList .categoryListItem .categoryListText {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 30px;
}
@media screen and (min-width: 950px) {
  .categoryList .categoryListItem .categoryListText {
    padding: 30px;
  }
}
.categoryList .categoryListItem .categoryListText h3 {
  margin: 0;
  color: #971b2f;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.categoryList .categoryListItem .categoryListText p {
  margin: 0;
}
.categoryList .categoryListItem .categoryListText .more {
  margin: 0px;
}
.categoryList .categoryListItem.categoryListItemRed {
  color: #ffffff;
}
.categoryList .categoryListItem.categoryListItemRed .categoryListImage {
  background: #761525;
}
.categoryList .categoryListItem.categoryListItemRed .categoryListText {
  background: #971b2f;
}
.categoryList .categoryListItem.categoryListItemRed .categoryListText h3 {
  color: inherit;
}
.categoryList .categoryListItem.categoryListItemRed .categoryListText .more {
  color: #ffffff;
}
.categoryList .categoryListItem.categoryListItemRed .categoryListText .more::before {
  background-image: url(../Icons/arrow_white.svg);
}
.categoryList .categoryListItem:hover, .categoryList .categoryListItem:focus-visible {
  transform: translateY(-4px);
  -moz-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  -webkit-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
}

.banner {
  display: grid;
  margin-top: 60px;
  margin-bottom: 90px;
  width: calc(100% + 30px + 30px);
  margin-right: -30px;
  margin-left: -30px;
}
@media screen and (min-width: 1110px) {
  .banner {
    width: calc(100% + 40px + 40px);
    margin-right: -40px;
    margin-left: -40px;
  }
}
@media screen and (min-width: 790px) {
  .banner {
    grid-template-columns: 2fr 1fr;
  }
}
.banner .bannerImage {
  line-height: 0;
}
.banner .bannerImage img {
  width: 100%;
}
.banner .bannerText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding: 20px 45px;
  text-align: left;
}
.banner .bannerText h3 {
  margin-top: 0;
  color: #971b2f;
  text-transform: uppercase;
}
.banner .bannerText p:last-child {
  margin-bottom: 0;
}

.tecpolePlus {
  position: relative;
  color: #ffffff;
  margin-top: 64px;
}
@media screen and (min-width: 790px) {
  .tecpolePlus {
    margin-top: 90px;
  }
}
.tecpolePlus::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100vw;
  height: calc(100% - 100px);
  background: url(../Images/USP.jpg) top/cover no-repeat;
}
@media screen and (min-width: 790px) {
  .tecpolePlus::before {
    height: 600px;
  }
}
.tecpolePlus h2, .tecpolePlus .preheader {
  color: #ffffff;
}

.USPList {
  margin-top: 60px;
}
.USPList .USPListItem {
  display: grid;
  grid-template-columns: 50px 1fr;
  background: #ffffff;
  color: #221c35;
}
@media screen and (min-width: 950px) {
  .USPList .USPListItem {
    grid-template-columns: 140px 1fr;
  }
}
.USPList .USPListItem .USPImage {
  display: grid;
  place-items: center;
  background: #971b2f;
}
.USPList .USPListItem .USPImage img {
  width: 55%;
}
.USPList .USPListItem .USPText {
  padding: 25px 20px;
}
.USPList .USPListItem .USPText h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
}
.USPList .USPListItem .USPText p {
  margin: 0;
  font-size: 15px;
}

.swiper-pagination {
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0px;
  left: 40px;
  right: 40px;
  margin: auto;
  line-height: 1;
  gap: 0px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 100%;
  height: 4px;
  margin: 0px !important;
  background: #ffffff;
  border-radius: 0;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination .swiper-pagination-bullet:hover {
  background: #3f3f3f;
}

.swiperButtons {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  margin-top: 40px;
}
.swiperButtons .swiper-button-prev,
.swiperButtons .swiper-button-next {
  position: static;
  display: grid;
  justify-content: center;
  align-content: center;
  width: 24px;
  height: 24px;
  margin: 0;
  border: 0;
  padding: 5px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.swiperButtons .swiper-button-prev svg,
.swiperButtons .swiper-button-next svg {
  width: 9px;
  height: auto;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.swiperButtons .swiper-button-prev svg path,
.swiperButtons .swiper-button-next svg path {
  fill: #ffffff;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.swiperButtons .swiper-button-prev:hover,
.swiperButtons .swiper-button-next:hover {
  background: #ededed;
}
.swiperButtons .swiper-button-prev:hover svg path,
.swiperButtons .swiper-button-next:hover svg path {
  fill: #221c35;
}
.swiperButtons .swiper-button-prev:focus-visible,
.swiperButtons .swiper-button-next:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.25rem;
}
.swiperButtons .swiper-button-prev.swiper-button-disabled,
.swiperButtons .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}

.sliderHorizontal {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #221c35 0, #221c35 200px, transparent 200px, transparent 100%);
}
@media screen and (min-width: 790px) {
  .sliderHorizontal {
    margin-top: 90px;
    margin-bottom: 90px;
  }
}
.sliderHorizontal .valueSliderHeader {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.sliderHorizontal .valueSlider {
  grid-column: 3/-1;
  min-width: 0;
  overflow: hidden;
}
@media screen and (min-width: 790px) {
  .sliderHorizontal .valueSlider {
    grid-column: 2/-1;
    padding-right: 30px;
  }
}
.sliderHorizontal .valueSlider .swiper {
  width: 100%;
  overflow: visible;
}
.sliderHorizontal .valueSlider .swiper-wrapper {
  align-items: stretch;
}
.sliderHorizontal .valueSlider .swiper-slide {
  display: flex;
  height: auto;
}

/* Cards */
.valueCard {
  width: 100%;
  min-height: 100%;
  padding: 1.5rem 1.75rem;
  border-left: 6px solid #971b2f;
  background: #ffffff;
}
.valueCard h3 {
  margin: 0 0 0.75rem;
  color: #221c35;
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.valueCard p {
  margin: 0;
  color: #3f3f3f;
  line-height: 1.5;
}

.testimonialSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.testimonialSlider .swiper-wrapper {
  align-items: stretch;
}
.testimonialSlider .swiper-wrapper .swiper-slide {
  display: block;
  padding-bottom: 0;
}
@media screen and (min-width: 950px) {
  .testimonialSlider .swiper-wrapper .swiper-slide {
    display: grid;
    grid-template-rows: auto 90px;
  }
}
@media screen and (min-width: 950px) {
  .testimonialSlider .swiper-wrapper .swiper-slide .testimonialImage {
    display: grid;
    background: #971b2f;
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1030px) 95px 30px minmax(0, 1fr);
    grid-row: 1;
  }
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialImage picture {
  display: block;
}
@media screen and (min-width: 950px) {
  .testimonialSlider .swiper-wrapper .swiper-slide .testimonialImage picture {
    grid-column: 1/span 3;
    border-right: 30px solid #ededed;
    justify-self: end;
  }
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent {
  position: relative;
  pointer-events: auto;
}
@media screen and (max-width: 949px) {
  .testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent {
    width: calc(100% + 30px + 30px);
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 950px) {
  .testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin-top: 0;
    pointer-events: none;
  }
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote {
  grid-column: 3;
  position: relative;
  width: calc(100% - 0px);
  margin: 0 0 0 auto;
  padding: 20px 30px 90px 30px;
  background: #221c35;
  color: #ffffff;
}
@media screen and (min-width: 950px) {
  .testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote {
    grid-column: 3;
    align-self: end;
    justify-self: end;
    width: min(550px, 55%);
    min-width: 470px;
    margin: 0;
    padding: 40px 50px 100px 50px;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1110px) {
  .testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote {
    width: min(600px, 52%);
  }
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote p {
  margin: 0 0 15px 0;
  quotes: "“" "”" "‘" "’";
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote p::before {
  content: open-quote;
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote p::after {
  content: close-quote;
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote p:lang(de) {
  quotes: "„" "“" "‚" "‘";
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote p:lang(en) {
  quotes: "“" "”" "‘" "’";
}
@media screen and (min-width: 950px) {
  .testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote p {
    font-size: 20px;
  }
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote cite {
  display: block;
  font-size: 15px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}
.testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote .testimonialLogo {
  position: absolute;
  z-index: 10;
  right: 30px;
  bottom: 20px;
  width: 110px;
  height: 33px;
}
@media screen and (min-width: 950px) {
  .testimonialSlider .swiper-wrapper .swiper-slide .testimonialContent blockquote .testimonialLogo {
    right: 50px;
    bottom: 30px;
  }
}
.testimonialSlider .swiperButtons {
  position: absolute;
  left: 24px;
  bottom: 24px;
}
@media screen and (min-width: 950px) {
  .testimonialSlider .swiperButtons {
    left: 45px;
    bottom: 35px;
  }
}

html.gallery-is-open,
html.gallery-is-open body {
  overflow: hidden;
}

.galleryDialog {
  position: fixed;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: auto;
  padding: calc(env(safe-area-inset-top, 0px) + 70px) 15px calc(env(safe-area-inset-bottom, 0px) + 80px);
  overflow: hidden;
  background: #ededed;
  border: 0;
  color: #ffffff;
}
@media screen and (min-width: 790px) {
  .galleryDialog {
    padding: calc(env(safe-area-inset-top, 0px) + 70px) 70px calc(env(safe-area-inset-bottom, 0px) + 30px);
  }
}
@media screen and (min-width: 950px) {
  .galleryDialog {
    padding-right: 100px;
    padding-left: 100px;
  }
}
.galleryDialog:not([open]) {
  display: none !important;
}
.galleryDialog[open] {
  display: grid;
  place-items: center;
}
.galleryDialog::backdrop {
  background: rgba(34, 28, 53, 0.95);
  backdrop-filter: blur(8px);
}
.galleryDialog figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  text-align: center;
}
.galleryDialog figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 180px);
  margin: 0 auto;
  object-fit: contain;
}
@media screen and (min-width: 790px) {
  .galleryDialog figure img {
    max-width: calc(100vw - 200px);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 130px);
  }
}
.galleryDialog figure figcaption {
  flex: 0 0 auto;
  max-width: 800px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
.galleryDialog figure figcaption[hidden] {
  display: none;
}
.galleryDialog .galleryClose,
.galleryDialog .galleryPrev,
.galleryDialog .galleryNext {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  background: #3f3f3f;
  border: 0;
  color: #ffffff;
  font-family: inherit;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -moz-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  -webkit-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.galleryDialog .galleryClose:hover,
.galleryDialog .galleryPrev:hover,
.galleryDialog .galleryNext:hover {
  transform: scale(1.08);
}
.galleryDialog .galleryClose:focus-visible,
.galleryDialog .galleryPrev:focus-visible,
.galleryDialog .galleryNext:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}
.galleryDialog .galleryClose {
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  right: calc(env(safe-area-inset-right, 0px) + 12px);
  font-size: 32px;
}
@media screen and (min-width: 950px) {
  .galleryDialog .galleryClose {
    top: 20px;
    right: 30px;
  }
}
.galleryDialog .galleryPrev,
.galleryDialog .galleryNext {
  top: auto;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 15px);
}
@media screen and (min-width: 790px) {
  .galleryDialog .galleryPrev,
  .galleryDialog .galleryNext {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 790px) {
  .galleryDialog .galleryPrev:hover,
  .galleryDialog .galleryNext:hover {
    transform: translateY(-50%) scale(1.08);
  }
}
.galleryDialog .galleryPrev {
  left: calc(50% - 60px);
}
@media screen and (min-width: 790px) {
  .galleryDialog .galleryPrev {
    left: calc(env(safe-area-inset-left, 0px) + 12px);
  }
}
@media screen and (min-width: 950px) {
  .galleryDialog .galleryPrev {
    left: 30px;
  }
}
.galleryDialog .galleryNext {
  right: calc(50% - 60px);
}
@media screen and (min-width: 790px) {
  .galleryDialog .galleryNext {
    right: calc(env(safe-area-inset-right, 0px) + 12px);
  }
}
@media screen and (min-width: 950px) {
  .galleryDialog .galleryNext {
    right: 30px;
  }
}

.text-right, .ce-headline-right {
  text-align: right;
}

.text-center, .ce-headline-center, .center {
  text-align: center;
}

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

.text-left, .ce-headline-left {
  text-align: left;
}

figure.image {
  margin-bottom: 0px;
}

.ce-textpic, .ce-image {
  margin-bottom: 0;
}
.ce-textpic .ce-gallery, .ce-image .ce-gallery {
  width: 100%;
}
.ce-textpic .ce-gallery div, .ce-image .ce-gallery div {
  width: 100%;
}
.ce-textpic img[src$=".svg"], .ce-image img[src$=".svg"] {
  width: 100% !important;
  height: auto !important;
}

.ce-border figure.image img {
  border: 1px solid #3f3f3f;
}

.ce-below .ce-bodytext {
  margin-bottom: 20px;
}

.ce-center figure {
  text-align: center;
}
.ce-center figure img {
  margin-right: auto;
  margin-left: auto;
}
.ce-center figure figcaption {
  text-align: left;
}

.ce-right figure {
  text-align: right;
}
.ce-right figure img {
  margin-right: auto;
  margin-left: auto;
}
.ce-right .ce-bodytext > :first-child {
  margin-top: 0;
}

.ce-row + .ce-row {
  margin-top: 16px;
}

.ce-textpic.ce-left.ce-above .ce-bodytext {
  margin-top: 20px;
}
.ce-textpic.ce-left.ce-above figure {
  margin-top: 0px;
}

.ce-textpic.ce-right.ce-intext:not(.ce-nowrap) .ce-gallery {
  float: right;
  width: auto;
  max-width: 33.3%;
  margin-left: 20px;
  margin-bottom: 15px;
}

.ce-textpic.ce-left.ce-intext:not(.ce-nowrap) .ce-gallery {
  float: left;
  width: auto;
  max-width: 33.3%;
  margin-right: 20px;
  margin-bottom: 15px;
}

.ce-textpic.ce-right.ce-intext.ce-nowrap {
  display: grid;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  grid-gap: 20px;
}
@media screen and (min-width: 790px) {
  .ce-textpic.ce-right.ce-intext.ce-nowrap {
    grid-template-columns: 1fr 1fr;
  }
}
.ce-textpic.ce-right.ce-intext.ce-nowrap .ce-gallery {
  order: 2;
}
@media screen and (min-width: 790px) {
  .ce-textpic.ce-right.ce-intext.ce-nowrap .ce-gallery {
    order: 2;
  }
}
.ce-textpic.ce-right.ce-intext.ce-nowrap .ce-bodytext {
  order: 1;
}
@media screen and (min-width: 790px) {
  .ce-textpic.ce-right.ce-intext.ce-nowrap .ce-bodytext {
    order: 1;
  }
}

.ce-textpic.ce-left.ce-intext.ce-nowrap {
  display: grid;
  grid-gap: 30px;
}
@media screen and (min-width: 790px) {
  .ce-textpic.ce-left.ce-intext.ce-nowrap {
    grid-template-columns: 1fr 1fr;
    width: calc(100% + 30px + 30px);
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 790px) and (min-width: 1110px) {
  .ce-textpic.ce-left.ce-intext.ce-nowrap {
    width: calc(100% + 40px + 40px);
    margin-right: -40px;
    margin-left: -40px;
  }
}
.ce-textpic.ce-left.ce-intext.ce-nowrap .ce-gallery {
  order: 1;
}
@media screen and (min-width: 790px) {
  .ce-textpic.ce-left.ce-intext.ce-nowrap .ce-gallery {
    order: 1;
    padding: 0 0 0 20px;
  }
}
.ce-textpic.ce-left.ce-intext.ce-nowrap .ce-bodytext {
  order: 2;
}
@media screen and (min-width: 790px) {
  .ce-textpic.ce-left.ce-intext.ce-nowrap .ce-bodytext {
    order: 2;
    padding: 0 20px 0 20px;
  }
}

.ce-gallery[data-ce-columns="2"] .ce-row {
  display: grid;
  grid-gap: 20px;
}
@media screen and (min-width: 480px) {
  .ce-gallery[data-ce-columns="2"] .ce-row {
    grid-template-columns: 1fr 1fr;
  }
  .ce-gallery[data-ce-columns="2"] .ce-row .ce-column:nth-child(1) {
    text-align: right;
  }
  .ce-gallery[data-ce-columns="2"] .ce-row .ce-column:nth-child(2) {
    text-align: left;
  }
}
@media screen and (min-width: 790px) {
  .ce-gallery[data-ce-columns="2"] .ce-row {
    grid-gap: 20px;
  }
}

.ce-gallery[data-ce-columns="3"] .ce-row {
  display: grid;
  grid-gap: 20px;
}
@media screen and (min-width: 480px) {
  .ce-gallery[data-ce-columns="3"] .ce-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 790px) {
  .ce-gallery[data-ce-columns="3"] .ce-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ce-gallery[data-ce-columns="4"] .ce-row {
  display: grid;
  grid-gap: 20px;
}
@media screen and (min-width: 790px) {
  .ce-gallery[data-ce-columns="4"] .ce-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.ce-uploads, .ce-menu, .frame-type-menu_pages ul {
  margin: 0px 0 30px 0 !important;
}
.ce-uploads li, .ce-menu li, .frame-type-menu_pages ul li {
  padding-left: 0 !important;
  margin-bottom: 5px !important;
}
.ce-uploads li:before, .ce-menu li:before, .frame-type-menu_pages ul li:before {
  display: none;
}
.ce-uploads li a, .ce-menu li a, .frame-type-menu_pages ul li a {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.ce-uploads li .ce-uploads-fileName, .ce-menu li .ce-uploads-fileName, .frame-type-menu_pages ul li .ce-uploads-fileName {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.ce-uploads li .ce-uploads-description, .ce-menu li .ce-uploads-description, .frame-type-menu_pages ul li .ce-uploads-description {
  display: block;
  margin-top: 5px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.ce-uploads {
  margin-bottom: 60px !important;
}

.frame-space-before-extra-small {
  padding-top: 16px !important;
}

.frame-space-before-small {
  padding-top: 24px !important;
}
@media screen and (min-width: 790px) {
  .frame-space-before-small {
    padding-top: 32px !important;
  }
}

.frame-space-before-medium {
  padding-top: 32px !important;
}
@media screen and (min-width: 790px) {
  .frame-space-before-medium {
    padding-top: 48px !important;
  }
}

.frame-space-before-large {
  padding-top: 48px !important;
}
@media screen and (min-width: 790px) {
  .frame-space-before-large {
    padding-top: 64px !important;
  }
}

.frame-space-before-extra-large {
  padding-top: 64px !important;
}
@media screen and (min-width: 790px) {
  .frame-space-before-extra-large {
    padding-top: 110px !important;
  }
}

.frame-space-after-extra-small {
  padding-bottom: 16px !important;
}

.frame-space-after-small {
  padding-bottom: 24px !important;
}
@media screen and (min-width: 790px) {
  .frame-space-after-small {
    padding-bottom: 32px !important;
  }
}

.frame-space-after-medium {
  padding-bottom: 32px !important;
}
@media screen and (min-width: 790px) {
  .frame-space-after-medium {
    padding-bottom: 48px !important;
  }
}

.frame-space-after-large {
  padding-bottom: 48px !important;
}
@media screen and (min-width: 790px) {
  .frame-space-after-large {
    padding-bottom: 64px !important;
  }
}

.frame-space-after-extra-large {
  padding-bottom: 64px !important;
}
@media screen and (min-width: 790px) {
  .frame-space-after-extra-large {
    padding-bottom: 110px !important;
  }
}

.news-single .article .news-img-wrap {
  float: none;
  width: 100%;
}

.imageGallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.imageGallery button {
  display: block;
  padding: 0;
  border: 0;
  background: #ffffff;
  cursor: pointer;
}
.imageGallery button:hover img, .imageGallery button:focus-visible img {
  transform: scale(1.03);
}
.imageGallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.galleryDialog {
  width: min(1200px, 100vw - 40px);
  height: auto;
  max-width: calc(100vw - 40px);
  max-height: calc(100dvh - 40px);
  padding: 50px 45px 30px 45px;
  overflow: visible;
  border: 0;
  background: #ffffff;
}
@media screen and (min-width: 790px) {
  .galleryDialog {
    padding: 40px 70px;
  }
}
.galleryDialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
}
.galleryDialog figure {
  margin: 0;
  text-align: center;
}
.galleryDialog img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
}
.galleryDialog figcaption {
  margin-top: 15px;
  font-size: 14px;
  color: #3f3f3f;
}
.galleryDialog button {
  border: 0;
  background: none;
  cursor: pointer;
  color: #221c35;
}

.galleryClose {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
}

.galleryPrev,
.galleryNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  line-height: 1;
}

.galleryPrev {
  left: 20px;
}

.galleryNext {
  right: 20px;
}

.productFilter {
  display: grid;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 640px) {
  .productFilter {
    grid-template-columns: minmax(0, 5fr) minmax(0, 1fr);
    gap: 30px;
  }
}
.productFilter > div {
  display: none;
}
.productFilter .filterTags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}
.productFilter .filterTags ul li {
  padding: 0;
}
.productFilter .filterTags ul li:before {
  display: none;
}
.productFilter .filterTags .filterTag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 0;
  background: #ffffff;
  color: #3f3f3f;
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.productFilter .filterTags .filterTag:focus {
  outline: 1px solid #221c35;
  outline-offset: 4px;
}
.productFilter .filterTags .filterTag:hover {
  -moz-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  -webkit-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  transform: translateY(-1px);
}
.productFilter .filterTags .filterTag.isActive {
  background: #971b2f;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.productFilter .filterTags .filterTag span {
  font-size: 1.5em;
  line-height: 1;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.productFilter .filterTags .filterTag.delall {
  border: 1px solid #971b2f;
}
.productFilter .filterTags .filterTag.delall:after {
  content: "×";
  font-size: 1.5em;
  line-height: 1;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #971b2f;
}
.productFilter .productSearch {
  position: relative;
  display: block;
}
.productFilter .productSearch input {
  width: 100%;
  padding: 5px 40px 5px 10px;
  border: 0;
  background: #221c35;
  color: #ffffff;
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.productFilter .productSearch input::placeholder {
  color: #fff;
  opacity: 1;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.productFilter .productSearch input:focus {
  outline: 1px solid #221c35;
  outline-offset: 4px;
}
.productFilter .productSearch input:hover {
  -moz-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  -webkit-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  background: #971b2f;
}
.productFilter .productSearch button {
  position: absolute;
  width: 29px;
  height: 29px;
  top: 2px;
  right: 5px;
  padding: 6px;
  cursor: pointer;
  background: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.productFilter .productSearch button svg {
  width: 100%;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.productFilter .productSearch button svg path, .productFilter .productSearch button svg line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.5;
  stroke-linejoin: bevel;
  stroke-miterlimit: 10;
}
.productFilter .productSearch button:hover {
  background: #971b2f;
}

.productListItem {
  display: grid;
  grid-template-rows: 300px auto;
  height: 100%;
  background: #221c35;
  text-decoration: none;
}
.productListItem:hover, .productListItem:focus-visible {
  transform: translateY(-4px);
  -moz-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  -webkit-box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
  box-shadow: 5px 5px 7px 0px rgba(68, 68, 68, 0.25);
}
.productListItem .productListImage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, auto) minmax(0, 1fr);
  gap: 30px;
  background: #ffffff;
}
.productListItem .productListImage p {
  margin: 0;
  padding: 30px 0 0 30px;
  font-size: 15px;
}
.productListItem .productListImage ul {
  align-self: end;
  margin: 0;
  padding: 0 0 30px 30px !important;
}
.productListItem .productListImage ul li {
  display: inline-block;
  margin: 5px 0 0 0;
  padding: 0px 8px;
  background: #a6a6a6;
  color: #ffffff;
  font-size: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.productListItem .productListImage ul li::before {
  display: none;
}
.productListItem .productListImage figure {
  grid-row: 1/span 2;
  grid-column: 2/span 1;
  display: grid;
  align-content: center;
  align-content: center;
}
.productListItem .productListImage figure img {
  width: auto;
  height: 300px;
  max-height: 22rem;
  object-fit: contain;
}
.productListItem .productListText {
  padding: 30px;
  background: #221c35;
  color: #ffffff;
}
.productListItem .productListText h3 {
  margin: 0 0 10px 0;
  color: #ffffff;
  font-size: 20px;
}
.productListItem .productListText p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}
.productListItem .productListText .more {
  margin: 0px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
}
.productListItem .productListText .more::before {
  background: url(../Icons/arrow_white.svg) no-repeat;
}

.tx-powermail .powermail_form {
  margin-top: 30px;
}
@media screen and (min-width: 790px) {
  .tx-powermail .powermail_form {
    margin-top: 50px;
  }
}
.tx-powermail .powermail_fieldwrap {
  position: relative;
  clear: both;
  text-align: left;
}
.tx-powermail label.control-label {
  margin-bottom: 20px;
  color: #3f3f3f;
  font-size: 24px;
  line-height: 1.4;
}
.tx-powermail .powermail_fieldwrap_type_check, .tx-powermail .powermail_fieldwrap_type_radio {
  margin: 10px 0 30px 0;
  clear: both;
}
.tx-powermail .powermail_fieldwrap_type_check .powermail_field, .tx-powermail .powermail_fieldwrap_type_radio .powermail_field {
  margin-top: 15px;
}
.tx-powermail .powermail_fieldwrap_type_text {
  margin: 20px 0 30px 0;
  font-size: 18px;
}
@media screen and (min-width: 640px) {
  .tx-powermail .powermail_fieldwrap_type_text {
    padding-left: 140px;
  }
}
.tx-powermail .powermail_fieldwrap_type_text h3 {
  margin: 0;
  color: #3f3f3f;
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (min-width: 790px) {
  .tx-powermail .powermail_fieldwrap_type_text h3 {
    font-size: 28px;
  }
}
.tx-powermail .powermail_fieldwrap_type_text a {
  text-decoration: underline;
  color: #3f3f3f;
}
.tx-powermail .powermail_fieldwrap_type_text a:hover {
  color: #971b2f;
}
@media screen and (min-width: 640px) {
  .tx-powermail .powermail_fieldwrap_type_input .powermail_field, .tx-powermail .powermail_fieldwrap_type_textarea .powermail_field, .tx-powermail .powermail_fieldwrap_type_select .powermail_field, .tx-powermail .powermail_fieldwrap_type_file .powermail_field {
    display: grid;
    grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
    grid-gap: 5px;
  }
}
@media screen and (min-width: 640px) {
  .tx-powermail .powermail_fieldwrap_type_input .powermail_field label, .tx-powermail .powermail_fieldwrap_type_textarea .powermail_field label, .tx-powermail .powermail_fieldwrap_type_select .powermail_field label, .tx-powermail .powermail_fieldwrap_type_file .powermail_field label {
    padding-top: 8px;
  }
}
.tx-powermail .powermail_fieldwrap_type_input .powermail_field .powermail_field_description, .tx-powermail .powermail_fieldwrap_type_textarea .powermail_field .powermail_field_description, .tx-powermail .powermail_fieldwrap_type_select .powermail_field .powermail_field_description, .tx-powermail .powermail_fieldwrap_type_file .powermail_field .powermail_field_description {
  margin-top: -15px;
  font-size: 14px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 640px) {
  .tx-powermail .powermail_fieldwrap_type_input .powermail_field .powermail_field_description, .tx-powermail .powermail_fieldwrap_type_textarea .powermail_field .powermail_field_description, .tx-powermail .powermail_fieldwrap_type_select .powermail_field .powermail_field_description, .tx-powermail .powermail_fieldwrap_type_file .powermail_field .powermail_field_description {
    grid-column: 2/-1;
  }
}
@media screen and (min-width: 640px) {
  .tx-powermail .powermail_fieldwrap_type_input .powermail_field .powermail-errors-list, .tx-powermail .powermail_fieldwrap_type_textarea .powermail_field .powermail-errors-list, .tx-powermail .powermail_fieldwrap_type_select .powermail_field .powermail-errors-list, .tx-powermail .powermail_fieldwrap_type_file .powermail_field .powermail-errors-list {
    grid-column: 2/span 2;
  }
}
@media screen and (min-width: 640px) {
  .tx-powermail .powermail_fieldwrap_type_check, .tx-powermail .powermail_fieldwrap_type_radio {
    display: grid;
    grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
    grid-gap: 5px;
    align-items: start;
  }
}
@media screen and (min-width: 640px) {
  .tx-powermail .powermail_fieldwrap_type_check .powermail_field, .tx-powermail .powermail_fieldwrap_type_radio .powermail_field {
    margin-top: 0;
  }
}
.tx-powermail .powermail_fieldwrap_type_check .form-label, .tx-powermail .powermail_fieldwrap_type_radio .form-label {
  margin-top: 1px;
}
@media screen and (min-width: 790px) {
  .tx-powermail .powermail_fieldwrap_type_submit .powermail_field {
    text-align: right;
  }
}
@media screen and (min-width: 790px) {
  .tx-powermail .powermail_fieldwrap_type_submit .powermail_field button {
    margin-top: 70px;
  }
}

@media screen and (min-width: 790px) {
  .powermail_fieldwrap.layout1, fieldset.layout1 {
    float: left;
    width: calc(50% - 15px);
  }
}
@media screen and (min-width: 790px) {
  .powermail_fieldwrap.layout2, fieldset.layout2 {
    clear: none;
    float: right;
    width: calc(50% - 15px);
  }
}
.powermail_fieldwrap.layout2.powermail_fieldwrap_type_radio, .powermail_fieldwrap.layout2.powermail_fieldwrap_type_check, fieldset.layout2.powermail_fieldwrap_type_radio, fieldset.layout2.powermail_fieldwrap_type_check {
  clear: right;
}
@media screen and (min-width: 790px) {
  .powermail_fieldwrap.layout3, fieldset.layout3 {
    float: left;
    width: calc(33.3% - 15px);
  }
}
@media screen and (min-width: 790px) {
  .powermail_fieldwrap.layout4, fieldset.layout4 {
    clear: none;
    float: right;
    width: calc(67.7% - 15px);
  }
}
.powermail_fieldwrap.layout4.powermail_fieldwrap_type_radio, .powermail_fieldwrap.layout4.powermail_fieldwrap_type_check, fieldset.layout4.powermail_fieldwrap_type_radio, fieldset.layout4.powermail_fieldwrap_type_check {
  clear: right;
}

@media screen and (min-width: 640px) {
  .powermail_fieldwrap_plz {
    float: left;
    width: calc(33.3% - 15px);
  }
}

@media screen and (min-width: 640px) {
  .powermail_fieldwrap_ort {
    float: right;
    clear: none !important;
    width: calc(67.7% - 15px);
  }
  .powermail_fieldwrap_ort .powermail_field {
    grid-template-columns: minmax(0, 60px) minmax(0, 1fr) !important;
  }
  .powermail_fieldwrap_ort .powermail_field .form-label {
    justify-self: end;
    padding-right: 15px;
  }
}

@media screen and (min-width: 790px) {
  .powermail_fieldwrap_anrede.powermail_fieldwrap_type_radio .powermail_field, .powermail_fieldwrap_anrede.powermail_fieldwrap_type_check .powermail_field {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
  }
}
.powermail_fieldwrap_anrede.powermail_fieldwrap_type_radio .powermail_field > .powermail_field_error_container, .powermail_fieldwrap_anrede.powermail_fieldwrap_type_check .powermail_field > .powermail_field_error_container {
  margin-top: 15px;
}
@media screen and (min-width: 790px) {
  .powermail_fieldwrap_anrede.powermail_fieldwrap_type_radio .powermail_field > .powermail_field_error_container, .powermail_fieldwrap_anrede.powermail_fieldwrap_type_check .powermail_field > .powermail_field_error_container {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0;
  }
}

.parsley-errors-list,
.powermail-errors-list {
  display: none;
  margin: -15px 0 20px 0 !important;
  padding: 0;
  list-style-type: none;
  width: 100%;
  font-size: 18px;
}
.parsley-errors-list.filled,
.powermail-errors-list.filled {
  display: block;
}
.parsley-errors-list > li,
.powermail-errors-list > li {
  color: #971b2f;
  padding: 0 0 0 0px !important;
}
.parsley-errors-list > li:before,
.powermail-errors-list > li:before {
  display: none;
}

.powermail-errors-list,
.parsley-errors-list {
  width: 100%;
  margin: -15px 0 15px 0 !important;
  padding: 10px !important;
  border: none;
  background-color: #ecd6d9;
  color: #971b2f;
}
.powermail-errors-list > li:before,
.parsley-errors-list > li:before {
  display: none;
}

.solutionContacts .frame-bgWhite {
  padding-top: 20px;
  background: rgba(237, 237, 237, 0.5);
}
.solutionContacts .frame-bgWhite h3, .solutionContacts .frame-bgWhite p.hyphens {
  margin-bottom: 30px;
}

.tx-indexedsearch-searchbox {
  margin-top: 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 790px) {
  .tx-indexedsearch-searchbox {
    margin-top: 50px;
  }
}
@media screen and (min-width: 790px) {
  .tx-indexedsearch-searchbox .tx-indexedsearch-form {
    display: grid;
    grid-template-columns: 180px 1fr;
  }
}
@media screen and (min-width: 790px) {
  .tx-indexedsearch-searchbox .tx-indexedsearch-search-submit {
    padding-left: 180px;
  }
}
.tx-indexedsearch-searchbox .tx-indexedsearch-search-submit input[type=submit] {
  margin-top: 0;
}

.tx-indexedsearch-info-noresult {
  padding-bottom: 30px;
}

.tx-indexedsearch-res a:after {
  background: #ededed;
  box-shadow: inset 0 0 0 0 #221c35;
}
.tx-indexedsearch-res a:hover {
  background: #221c35;
}
.tx-indexedsearch-res a:hover {
  background: #ededed;
}
.tx-indexedsearch-res a:hover:after {
  background: #221c35;
  box-shadow: inset 400px 0 0 0 #221c35;
}
