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

* {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}
p p,
h1 p,
h2 p,
h3 p,
h4 p,
h5 p,
h6 p {
  line-height: 1.2;
}

h1,
h2 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
}

p {
  line-height: 1.5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

#root,
#__next {
  isolation: isolate;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  font-size: 20px;
}

html.html {
  margin-top: 0 !important;
}

#wpadminbar {
  display: none;
}

.cta,
.cta-button {
  display: flex;
  align-items: center;
  width: fit-content;
  min-width: 220px;
  text-align: center;
  justify-content: center;
  padding: 10px 35px;
  border-radius: 0px;
  gap: 10px;
  text-decoration: none;
  color: var(--cta-text) !important;
  background: var(--cta-background);
  font-size: 20px;
  transition: background 0.3s, color 0.3s;
  transition-property: opacity, transform, -webkit-transform, background, color !important;
}
@media (prefers-reduced-motion: reduce) {
  .cta,
  .cta-button {
    transition: none;
  }
}
.cta svg,
.cta-button svg {
  transition: transform 0.3s, fill 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .cta svg,
  .cta-button svg {
    transition: none;
  }
}
.cta svg path:nth-child(1),
.cta-button svg path:nth-child(1) {
  transition: fill 0.3s;
}
.cta.outlined, .cta.outline,
.cta-button.outlined,
.cta-button.outline {
  background: transparent;
  border: 2px solid var(--cta-background) !important;
  color: var(--cta-background) !important;
}
.cta.outlined svg, .cta.outline svg,
.cta-button.outlined svg,
.cta-button.outline svg {
  fill: var(--cta-text) !important;
}
.cta.outlined svg path:nth-child(1), .cta.outline svg path:nth-child(1),
.cta-button.outlined svg path:nth-child(1),
.cta-button.outline svg path:nth-child(1) {
  fill: var(--cta-background) !important;
}
.cta.outlined:hover, .cta.outline:hover,
.cta-button.outlined:hover,
.cta-button.outline:hover {
  background: var(--cta-background) !important;
  color: var(--cta-text) !important;
}
.cta.outlined:hover svg, .cta.outline:hover svg,
.cta-button.outlined:hover svg,
.cta-button.outline:hover svg {
  fill: var(--cta-background) !important;
}
.cta.outlined:hover svg path:nth-child(1), .cta.outline:hover svg path:nth-child(1),
.cta-button.outlined:hover svg path:nth-child(1),
.cta-button.outline:hover svg path:nth-child(1) {
  fill: var(--cta-text) !important;
}
.cta.plain,
.cta-button.plain {
  position: relative;
  background: transparent;
  padding: 0;
}
.cta.plain svg path:nth-child(2),
.cta-button.plain svg path:nth-child(2) {
  fill: var(--background-color);
}
.cta.plain:after,
.cta-button.plain:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--cta-text);
  transition: width 0.5s ease-in-out;
}
.cta.plain:hover,
.cta-button.plain:hover {
  background: transparent;
  color: var(--cta-text);
}
.cta.plain:hover:after,
.cta-button.plain:hover:after {
  width: 100%;
}
.cta.solid-dark,
.cta-button.solid-dark {
  --cta-background: var(--green1);
  --cta-text: var(--sand);
}
.cta.solid-dark svg,
.cta-button.solid-dark svg {
  fill: var(--cta-background);
}
.cta.solid-dark svg path:nth-child(1),
.cta-button.solid-dark svg path:nth-child(1) {
  fill: var(--cta-text);
}
.cta:disabled,
.cta-button:disabled {
  background: var(--cta-disabled);
  color: var(--cta-disabled-text);
}
.cta:hover,
.cta-button:hover {
  background: var(--cta-text) !important;
  color: var(--cta-background) !important;
  cursor: pointer;
}
.cta:hover svg,
.cta-button:hover svg {
  transform: translateX(5px);
  fill: var(--cta-text) !important;
}
.cta:hover svg path:nth-child(1),
.cta-button:hover svg path:nth-child(1) {
  fill: var(--cta-background) !important;
}

h1.heading {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  h1.heading {
    font-size: 40px;
  }
}

h2.heading {
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  h2.heading {
    font-size: 40px;
  }
}

.field-dump {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  width: 100%;
  max-width: 100%;
}
.field-dump .field-dump--title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
}
.field-dump .field-dump--list {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
}
.field-dump .field-dump--list .field-dump--item {
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #dfdfdf;
  color: #000;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
}
.field-dump .field-dump--list .field-dump--item .field--title {
  font-size: 22px;
  font-weight: bold;
}
.field-dump .field-dump--list .field-dump--item code.field--value {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  white-space: pre-wrap;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  max-width: 100%;
}
.field-dump .field-dump--list .field-dump--item code.field--value pre {
  white-space: pre-wrap;
}
@media screen and (max-width: 1920px) {
  .field-dump .field-dump--list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .field-dump .field-dump--list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .field-dump .field-dump--list {
    grid-template-columns: 1fr;
  }
}

.section--wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1500px) {
  .section--wrapper {
    padding: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .section--wrapper {
    padding: 0 25px;
  }
}

.skip--content {
  position: absolute;
  top: -100px;
  left: 25px;
  background: var(--green1);
  color: var(--sand);
  padding: 10px;
  border-radius: 5px;
  z-index: 1000;
  transition: top 0.3s;
}
.skip--content a {
  color: var(--sand);
  text-decoration: underline;
}
.skip--content:focus {
  top: 25px;
}

#main {
  overflow: hidden;
  min-height: 80vh;
}

[data-aos=hard-right] {
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=hard-right].aos-animate {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  [data-aos=hard-right] {
    transform: translateX(100px);
  }
  [data-aos=hard-right].aos-animate {
    transform: translateX(0);
  }
}

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