.breadcrumb {
  white-space: nowrap;
  flex-direction: row;
  margin: 0;
  padding: 0;
  font-size: 14px;
  list-style-type: none;
  display: flex;
  overflow-y: hidden;

  @media (width >= 560px) {
    & {
      font-size: inherit;
    }
  }
}

.breadcrumb li {
  margin: 0;
}

.breadcrumb__item {
  padding-left: 1.5em;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.breadcrumb__item:before {
  opacity: .7;
  content: "";
  border-right: 1.5px solid var(--text-color);
  border-bottom: 1.5px solid var(--text-color);
  width: .5em;
  height: .5em;
  margin-top: -.25em;
  display: block;
  position: absolute;
  top: 50%;
  left: .4em;
  transform: rotate(-45deg);
}

.breadcrumb__itemHome {
  padding: 0;
  transform: translateY(1px);
}

.breadcrumb__itemHome:before {
  display: none;
}

.breadcrumb__itemLast {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 320px;
  overflow: hidden;
}

.button {
  --border-color: var(--primary);
  --btn-text-color: #fff;
  --background: var(--primary);
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  min-width: 185px;
  height: 42px;
  color: var(--btn-text-color);
  background: var(--background);
  border: 0;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 35px 16px;
  font-size: 17px;
  font-weight: 500;
  line-height: 0;
  text-decoration: none;
  transition: filter .3s ease-in-out;
  display: inline-flex;
  position: relative;
}

.button:hover {
  filter: saturate(1.3);
}

.button:disabled, .button--loading {
  opacity: .8;
  cursor: default;
}

.button--loading:after {
  content: "";
  border: 2px solid;
  border-bottom-color: #0000;
  border-radius: 50%;
  width: .8em;
  height: .8em;
  margin-left: 5px;
  animation: 1s linear infinite fa-spin;
  display: inline-block;
}

.button--inversed {
  color: var(--btn-color, var(--primary));
  border: 1px solid var(--btn-color, var(--primary));
  background: none;
}

.button--fill {
  width: 100%;
}

.button--plain {
  color: var(--text-color);
  min-width: unset;
  background-color: #0000;
  border: 0;
  padding: 0;
  text-shadow: none !important;
}

.button--small {
  min-width: auto;
  height: 38px;
  padding: 3px 10px;
  font-size: 13px;
}

.button--iconGrid {
  align-items: center;
  gap: 10px;
  width: 100%;
  display: flex;
}

.button--iconGrid > div {
  place-self: center;
}

.button--iconGridSmall {
  gap: 3px;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(359deg);
  }
}

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

@media (width >= 520px) {
  .container {
    padding: 0 15px;
  }
}

@media (width <= 767px) {
  .container--mobile-no-padding {
    padding: 0 !important;
  }
}

@media (width >= 1600px) {
  .container--ad-Space {
    padding-right: 165px;
  }
}

.container--small {
  max-width: 668px;
}

.container--medium {
  max-width: 990px;
}

.container--large {
  max-width: 1230px;
}

.container--xlarge {
  max-width: 1200px;
}

.grid {
  grid-gap: 25px;
  display: grid;
}

.grid > div > h2, .grid > div > h3 {
  margin-top: 0;
}

@media (width >= 520px) {
  .grid {
    grid-gap: 65px;
  }

  .grid--small {
    grid-gap: 10px;
  }

  .grid--medium {
    grid-gap: 48px 36px;
  }

  .grid--text {
    grid-gap: 3px 20px;
  }

  .grid--columns_2, .grid--columns_3, .grid--columns_4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid--columns_2_3 {
    grid-template-columns: 2fr 1fr;
  }
}

@media (width >= 768px) {
  .grid--columns_3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid--columns_4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.image {
  block-size: auto;
  max-inline-size: 100%;
  margin-bottom: 20px;
}

.image--fill {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
}

.keyvalue {
  grid-gap: 5px;
  grid-template-columns: 1fr 1fr;
  line-height: 1.1;
  display: grid;
}

.keyvalue + .keyvalue {
  border-top: 1px solid var(--grey-light);
  padding-top: 16px;
}

.keyvalue__key {
  font-weight: 300;
}

.keyvalue__value {
  color: #000;
  text-align: end;
  justify-self: end;
  font-weight: 400;
}

.keyvalue__value svg {
  fill: #000;
  stroke: #000;
}

@media (width >= 350px) {
  .keyvalue {
    grid-template-columns: 170px 1fr;
  }
}

@media (width >= 520px) {
  .keyvalue {
    grid-gap: 20px;
    grid-template-columns: 300px 1fr;
  }

  .keyvalue__value {
    justify-self: unset;
    text-align: start;
  }
}

.loader {
  aspect-ratio: 1;
  background: var(--primary);
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  width: 50px;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  border-radius: 50%;
  margin: 60px auto;
  padding: 8px;
  animation: 1s linear infinite l3;
  mask-composite: subtract;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

.message {
  background-color: var(--bg);
  color: var(--color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px;
  font-size: clamp(12px, 3vw, 15px);
  line-height: 1.2;
}

.message--with-icon {
  grid-gap: 12px;
  grid-template-columns: 32px 1fr;
  display: grid;
}

.message--warning {
  --color: #333;
  --bg: #ffe8c9;
  --border-color: #f9c684;
}

.message--info {
  --color: #666;
  --bg: #e0edff;
  --border-color: #adcfff;
}

.message--alert {
  --color: #e60005;
  --bg: #ffe5e6;
  --border-color: #ffe5e6;
}

.message__icon {
  align-self: center;
}

.message__title {
  margin-bottom: .1em;
  font-weight: 500;
}

.pageHeader {
  width: 100%;
  margin: 60px 0 20px;
}

.pageHeader__heading {
  line-height: 1.2;
}

.pageHeader__title {
  margin: 0;
}

.pageHeader__suptitle {
  font-size: 16px;
  font-weight: 600;
}

.pageHeader__subtitle {
  max-width: 500px;
  font-size: 14px;
  line-height: 1.7;
}

@media (width >= 520px) {
  .pageHeader {
    margin: 60px 0;
  }

  .pageHeader__heading {
    padding-right: 65px;
  }

  .pageHeader__suptitle {
    font-size: 18px;
  }
}

@media (width >= 768px) {
  .pageHeader__suptitle {
    font-size: 22px;
    line-height: 26px;
  }
}

.panel {
  width: fit-content;
  box-shadow: var(--shadow);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  display: flex;
}

.panel + .panel {
  margin-top: 10px;
}

.panel__title {
  text-align: center;
  border-bottom: 1px solid #ddd;
  width: 100%;
  margin-bottom: 12px;
  padding-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.section {
  --offset: 40px;
}

@media (width >= 520px) {
  .section {
    --offset: 45px;
  }
}

@media (width >= 768px) {
  .section {
    --offset: 60px;
  }
}

.section .titlebox {
  margin-bottom: 30px;
}

@media (width >= 1600px) {
  .section--with-minimal-height-for-ads {
    min-height: 400px;
  }
}

.section--with-margin {
  margin: var(--offset) 0;
}

.spacerVertical {
  display: grid;
}

.spacerVertical.align_center > * {
  justify-self: center;
}

.spacerHorizontal {
  flex-flow: wrap;
  display: flex;
}

.spacerHorizontal.align_center {
  align-items: center;
}

.spacerHorizontal.justify_center {
  justify-content: center;
}

.spacerHorizontal.justify_space_between {
  justify-content: space-between;
}

.spacerNoWrap {
  flex-wrap: nowrap;
}

.spacer--gap-none {
  gap: 0;
}

.spacer--gap-xsmall {
  gap: 10px;
}

.spacer--gap-small, .spacer--gap-medium, .spacer--gap-large {
  gap: 15px;
}

@media (width >= 768px) {
  .spacer--gap-medium {
    gap: 25px;
  }

  .spacer--gap-large {
    gap: 45px;
  }
}

.title {
  font-size: clamp(16px, 4vw, 24px);
  position: relative;
}

.title .title__title {
  margin: 0;
  font-size: 1em;
  font-weight: 700;
}

.title .button {
  white-space: nowrap;
}

.title__suptitle {
  margin-bottom: 5px;
  font-size: .7em;
  line-height: 126.3%;
}

.title__subtitle {
  margin-top: 10px;
  font-size: .7em;
  font-style: italic;
}

.hero {
  background-color: #f3f3f3;
  align-items: flex-end;
  width: 100%;
  height: 536px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero--small {
  height: 300px;
  padding-bottom: 70px;
}

.hero .button {
  margin-top: 30px;
}

@media (width <= 400px) {
  .hero .button {
    font-size: 12px;
  }
}

@media (width >= 1600px) {
  .hero {
    width: calc(100% - 120px);
    margin: 0 auto;
  }
}

.hero .suptitle, .hero .subtitle {
  text-shadow: 0 0 2px #000, 0 0 8px #000, 0 0 15px #000;
}

.hero__heading {
  --btn-color: #fff;
  color: #fff;
  max-width: 780px;
  line-height: 1.2;
  position: relative;
}

.hero .title {
  text-shadow: 0 0 2px #000, 0 0 10px #000, 0 0 1em #000;
  font-size: 1.4em;
  line-height: 1;
}

.hero .suptitle {
  margin-bottom: 2em;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
}

.hero__heading a {
  color: var(--hero-color);
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image .gatsby-image-wrapper {
  height: 100%;
}

.hero__info {
  margin-top: 8px;
}

@media (width >= 500px) {
  .hero--small {
    height: 380px;
  }
}

@media (width >= 1024px) {
  .hero {
    height: 736px;
  }

  .hero--small {
    height: 420px;
  }
}

