div.address p {
  margin: 0.2em;
  margin-bottom: 0.2em;
}
div.address img {
  margin-left: -0.4em;
}

div.customer-logotype {
  height: 4em;
}
div.customer-logotype p {
  display: flex;
  justify-content: center;
  align-items: center;
}
div.customer-logotype p img {
  height: 3.6em;
  max-width: 100%;
}

div.quotation-box {
  max-width: 478px;
  margin-left: auto;
  margin-right: auto;
}

div.quotation {
  font-weight: bold;
  width: 100%;
  color: #004076;
  padding-bottom: 0.6em;
}
div.quotation div.quotation-body {
  font-style: italic;
  margin-bottom: 0.6em;
}
div.quotation div.quotation-body p {
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}
div.quotation div.quotation-source {
  text-align: right;
  color: #0071B6;
}

div.cycle5 {
  position: relative;
  height: 9em;
}
div.cycle5 > div {
  position: absolute;
  opacity: 0;
  animation-name: cycle5;
  animation-duration: 25s;
  animation-iteration-count: infinite;
}

div.cycle5 > div:nth-child(1n) {
  animation-delay: 0s;
}

div.cycle5 > div:nth-child(2n) {
  animation-delay: 5s;
}

div.cycle5 > div:nth-child(3n) {
  animation-delay: 10s;
}

div.cycle5 > div:nth-child(4n) {
  animation-delay: 15s;
}

div.cycle5 > div:nth-child(5n) {
  animation-delay: 20s;
}

@keyframes cycle5 {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
input.expansion-toggle[type=checkbox] {
  display: none;
}

.expansion-toggle-label {
  display: block;
  color: #004076;
  cursor: pointer;
}
.expansion-toggle-label p {
  margin-top: 0;
  margin-bottom: 0;
}
.expansion-toggle-label::before {
  content: " ";
  display: inline-block;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-left: 0.5em solid currentColor;
  width: 1em;
  height: 1em;
  transform: translateY(0.2em);
  transition: transform 0.2s ease-out;
}

.expansion-toggle:checked + .expansion-toggle-label::before {
  transform: rotate(90deg) translateX(0.4em) translateY(0.2em);
}

.expansion-content {
  display: none;
}

.expansion-toggle:checked + .expansion-toggle-label + .expansion-content {
  display: block;
  border: 1px solid #004076;
  border-radius: 0.4em;
  padding-left: 0.4em;
  padding-right: 0.4em;
}

div.form {
  background-color: #F3F3F3;
  padding: 2em;
}
div.form p.form-title {
  font-size: 1.5em;
  font-weight: normal;
  margin-top: 0;
}
div.form div.button-row {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}
div.form div.button-row > div {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
}
div.form button {
  background-color: #FBBF00;
  color: #004076;
  font-size: 1.4em;
}
div.form button:hover {
  background-color: #e59306;
  color: #004076;
}
div.form button:disabled {
  background-color: #F3F3F3;
  color: #004076;
}
div.form label {
  display: flex;
  margin-top: 1em;
}
div.form label span {
  display: inline-block;
  width: 25%;
  font-weight: bold;
  margin-right: 1em;
}
div.form label .MuiInput-root {
  width: 100%;
  margin-left: 1em;
}
div.form label .MuiInput-root[required]::before {
  content: "*";
  left: -1em;
  color: red;
}
div.form label .MuiInput-root::before {
  content: " ";
  left: -1em;
}

div.cookie-accept {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  height: 100%;
  width: 75%;
  overflow-y: scroll;
}
div.cookie-accept div.cookie-settings-button {
  display: inline-block;
}
div.cookie-accept div.cookie-settings-button button {
  background: inherit !important;
  border: none;
  padding: 0 !important;
  font-family: arial, sans-serif;
  color: #004076;
  text-decoration: underline;
  cursor: pointer;
}
div.cookie-accept div.accept-all-cookies-button {
  display: inline-block;
  margin-left: 4em;
}
@media (min-width: 481px) {
  div.cookie-accept {
    width: 400px;
  }
}
@media (min-width: 769px) {
  div.cookie-accept {
    width: 500px;
  }
}

div.cookie-settings div.button-row {
  display: flex;
  justify-content: center;
}
div.cookie-settings div.button-row > div {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
}

div.setting {
  border-top: 1px solid #004076;
  padding: 0.4em;
}
div.setting div.setting-label {
  display: inline-block;
}
div.setting div.setting-value {
  display: inline-block;
  float: right;
  margin-right: 2em;
}
div.setting div.setting-value p {
  font-weight: 700;
  color: #004076;
}
div.setting p {
  font-size: 0.8em;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

div.card {
  width: 100%;
  padding-top: 1em;
}
div.card + div.card {
  border-top: 1px solid #F3F3F3;
}
@media print {
  div.card {
    page-break-inside: avoid;
  }
}
div.card h3 {
  margin-top: 0;
}
div.card p {
  margin-top: 0;
}

div.light div.card + div.card {
  border-top: 1px solid white;
}

div.heavy div.card + div.card {
  border-top: 1px solid #0071B6;
}

div.center {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 769px) {
  div.card {
    padding: 2%;
  }
  div.card + div.card {
    border-top: none;
  }
  div.light div.card + div.card, div.heavy div.card + div.card {
    border-top: none;
  }
}
div.cta {
  text-align: center;
  padding-top: 3.2em;
  padding-bottom: 2em;
}
@media print {
  div.cta {
    display: none;
  }
}
div.cta button {
  border: none;
  background-color: inherit;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: bold;
}
div.cta > * {
  display: inline-block;
  background-color: #FBBF00;
  border-radius: 0.2em;
  padding: 0.4em;
  font-size: 1.4em;
  color: #004076;
  text-decoration: none;
}
div.cta > *:hover {
  background-color: #e59306;
  color: #004076;
  text-decoration: none;
}

div.document {
  margin: auto;
  max-width: 1000px;
}
div.document img {
  max-width: 100%;
}
div.document h2 {
  text-align: left;
}
@media (min-width: 769px) {
  div.document img {
    max-width: 80%;
  }
}

div.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 0 3em;
}
@media print {
  div.grid {
    display: block;
  }
}

div.part {
  padding-left: max(12px, (100% - 1600px) / 2);
  padding-right: max(12px, (100% - 1600px) / 2);
  padding-top: 1.6em;
}
@media print {
  div.part ~ div.part {
    page-break-before: always;
  }
}

div.light {
  background-color: #F3F3F3;
  color: black;
}

div.heavy {
  background-color: #004076;
  padding-top: 0;
  color: black;
}

a {
  color: #0071B6;
  text-decoration-color: #0071B6;
}
a:visited {
  color: #004076;
  text-decoration-color: #004076;
}
@media print {
  a {
    display: none;
  }
}

div.body {
  padding-top: 3em;
}

div.heading {
  position: fixed;
  width: 100%;
  z-index: 1;
  background-color: white;
  padding-left: calc((100% - 1600px) / 2);
  padding-right: calc((100% - 1600px) / 2);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
}
@media print {
  div.heading {
    display: none;
  }
}

div.logotype {
  position: absolute;
  z-index: 3;
  top: 0.6em;
  left: 3.8em;
}
div.logotype p {
  margin: 0;
}
div.logotype p img {
  height: 2.2em;
}
@media print {
  div.logotype p img {
    height: 4em;
  }
}

div.menu p {
  margin: 0;
}

div.openmenu div.dropdown-button p {
  margin: 0;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
div.openmenu > div.dropdown-button p {
  font-size: 2em;
  padding-top: 0;
  padding-bottom: 0;
}

div.dropdown-button {
  border: none;
  background-color: inherit;
  color: #004076;
  font-size: 1.2em;
  font-weight: 700;
}
div.dropdown-button p {
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}

div.openmenu {
  width: 100%;
}
div.openmenu div.dropdown {
  border-bottom: 1px solid #004076;
}

.dropdown-content {
  height: 0;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
.dropdown-content p {
  padding: 0.4em;
}
.dropdown-content p:hover {
  background-color: #FBBF00;
}
.dropdown-content p a {
  color: #004076;
  text-decoration: none;
  white-space: nowrap;
  padding-left: 0.4em;
}

div.dropdown:hover > .dropdown-content {
  height: auto;
}
div.dropdown:hover:not(div.openmenu) > .dropdown-button {
  background-color: #FBBF00;
}

@media (min-width: 769px) {
  div.heading {
    height: 3.4em;
  }
  div.menu {
    position: relative;
    top: 0.6em;
  }
  div.logotype {
    left: max(0.4em, (100% - 1600px) / 2);
  }
  div.dropdown-button {
    font-size: 1.1em;
    font-weight: normal;
  }
  div.openmenu > div.dropdown-button {
    height: 0;
    overflow: hidden;
  }
  div.openmenu > div.dropdown-content {
    top: 0.8em;
    height: auto;
    display: flex;
    justify-content: right;
  }
  div.openmenu:hover > div.dropdown-button {
    background-color: inherit;
  }
  div.openmenu:hover > div.dropdown-content {
    display: flex;
  }
  div.openmenu div.dropdown {
    display: inline-block;
    border-bottom: none;
    width: auto;
  }
  div.openmenu div.dropdown div.dropdown-content {
    position: absolute;
    width: auto;
    background-color: white;
  }
  div.openmenu div.dropdown:hover div.dropdown-content {
    border-top: 1px solid #004076;
  }
  div.openmenu div.dropdown:hover div.dropdown-content p {
    border-left: 1px solid #004076;
    border-right: 1px solid #004076;
    border-bottom: 1px solid #004076;
  }
}
@media (min-width: 1025px) {
  div.openmenu > div.dropdown-content {
    justify-content: center;
  }
  div.dropdown-button {
    padding-left: 0.4em;
  }
}
div.page-footer {
  font-size: 0.6em;
  line-height: 1.5em;
  color: #004076;
  margin-top: 4rem;
}
@media print {
  div.page-footer {
    display: none;
  }
}
div.page-footer > p {
  text-align: center;
}
div.page-footer div.grid {
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(120px, 120px));
  grid-gap: 0px;
}
div.page-footer div.grid address {
  font-size: 12px;
}
div.page-footer div.grid address h3 {
  margin-bottom: 0.5em;
}
div.page-footer img {
  margin-left: -0.4em;
}
@media (min-width: 481px) {
  div.page-footer div.grid {
    grid-gap: 8px;
  }
}
@media (min-width: 769px) {
  div.page-footer div.grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 160px));
    grid-gap: 30px;
  }
}

div.page-title h1 {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  div.page-title {
    display: flex;
    margin-top: -1.6em;
  }
  div.page-title.narrow {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
  }
  div.page-title.no-image div.textbox {
    width: 100%;
  }
  div.page-title p {
    margin-top: 1.6em;
  }
  div.textbox {
    margin-top: 1.6em;
    position: relative;
    width: 50%;
  }
  div.textbox p {
    font-size: 1.6em;
    color: #004076;
  }
  div.imagebox {
    display: inline-block;
    line-height: 0;
    width: 50%;
    height: 400px;
    text-align: right;
  }
  div.imagebox img {
    clip-path: polygon(107.2px 0px, 100% 0px, 100% 100%, 0px 100%);
    height: 100%;
  }
  .no-image div.imagebox {
    height: 0;
  }
}
div.search-item {
  font-size: 0.8em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #004076;
}
div.search-item a.search-link-inclusive {
  text-decoration: none;
  color: black;
}
div.search-item a.search-link-exclusive {
  font-size: 1.2em;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
div.search-item a.search-link-exclusive p {
  margin: 0;
}
div.search-item div.search-details .search-title {
  font-weight: bold;
  font-size: 1.6em;
  text-align: left;
  margin-top: 0em;
  margin-bottom: 0.4em;
}
div.search-item div.search-details .update-title {
  font-size: 1.2em;
}
div.search-item div.search-details p {
  font-size: 1.2em;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
div.search-item .search-microcontent p {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}
div.search-item .search-microcontent p.search-microcontent-heading {
  font-weight: bold;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
div.search-item .search-microcontent p.search-microcontent-heading:first-child {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.4em;
}

@media (hover: hover) {
  div.search-item:hover {
    background-color: #F3F3F3;
  }
  div.search-item a.search-link-exclusive {
    display: none;
  }
}
@media (min-width: 1025px) {
  div.search-item a.search-link-inclusive {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
body {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
}

h1 {
  font-size: 2.2em;
  color: #004076;
  font-weight: bold;
}
@media print {
  h1 {
    page-break-after: avoid;
  }
}

h2 {
  color: #0071B6;
  font-size: 1.6em;
  margin-bottom: 1.6em;
  font-weight: bold;
}
@media print {
  h2 {
    page-break-after: avoid;
  }
}
@media (min-width: 769px) {
  h2 {
    text-align: center;
  }
}

h3 {
  color: #004076;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 1.6em;
  margin-bottom: 0.4em;
}
@media print {
  h3 {
    page-break-after: avoid;
  }
}

div.tablet, div.small, div.medium, div.large {
  display: none;
}

div.mobile {
  display: block;
}

@media (min-width: 481px) {
  div.mobile {
    display: none;
  }
  div.tablet {
    display: block;
  }
}
@media (min-width: 769px) {
  div.tablet {
    display: none;
  }
  div.small {
    display: block;
  }
}
@media (min-width: 1025px) {
  div.small {
    display: none;
  }
  div.medium {
    display: block;
  }
}
@media (min-width: 1201px) {
  div.medium {
    display: none;
  }
  div.large {
    display: block;
  }
}
@media print {
  div.tablet, div.small, div.medium, div.large {
    display: none;
  }
  div.mobile {
    display: block;
  }
}
video {
  max-width: 100%;
  height: auto;
}

html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

img.logotype {
  height: 2em;
}

img.news {
  height: 36em;
}

img.icon {
  height: 1em;
}

/*# sourceMappingURL=styles.css.map */
