@charset "UTF-8";

/* assets/scss/style.scss */
:root {
  --font-primary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-secondary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    "Source Code Pro",
    monaco,
    consolas,
    "Courier New",
    monospace;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --font-size-3xl: clamp(2rem, 1.625rem + 1.875vw, 3rem);
  --font-size-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
  --font-size-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
  --font-size-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  --letter-spacing-tight: -0.05em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;
  --header-nav-font-weight: var(--font-weight-regular);
  --header-nav-font-size: 0.9375rem;
  --header-nav-line-height: 1.5;
  --header-nav-letter-spacing: 0.01em;
  --header-account-font-weight: var(--font-weight-medium);
  --header-account-font-size: 0.875rem;
  --header-account-line-height: 1.5;
  --header-account-letter-spacing: 0.01em;
  --mobile-nav-font-weight: var(--font-weight-regular);
  --mobile-nav-font-size: 1rem;
  --mobile-nav-line-height: 1.5;
  --mobile-nav-letter-spacing: 0.01em;
}
:root {
  --h1-size: var(--font-size-4xl);
  --h1-weight: var(--font-weight-bold);
  --h1-line-height: var(--line-height-tight);
  --h1-letter-spacing: var(--letter-spacing-tight);
  --h2-size: var(--font-size-3xl);
  --h2-weight: var(--font-weight-semibold);
  --h2-line-height: var(--line-height-snug);
  --h2-letter-spacing: var(--letter-spacing-tight);
  --h3-size: var(--font-size-2xl);
  --h3-weight: var(--font-weight-semibold);
  --h3-line-height: var(--line-height-snug);
  --h3-letter-spacing: var(--letter-spacing-normal);
  --h4-size: var(--font-size-xl);
  --h4-weight: var(--font-weight-medium);
  --h4-line-height: var(--line-height-normal);
  --h4-letter-spacing: var(--letter-spacing-normal);
  --h5-size: var(--font-size-lg);
  --h5-weight: var(--font-weight-medium);
  --h5-line-height: var(--line-height-normal);
  --h5-letter-spacing: var(--letter-spacing-normal);
  --h6-size: var(--font-size-base);
  --h6-weight: var(--font-weight-semibold);
  --h6-line-height: var(--line-height-normal);
  --h6-letter-spacing: var(--letter-spacing-wide);
}
.font-light {
  font-weight: var(--font-weight-light);
}
.font-regular {
  font-weight: var(--font-weight-regular);
}
.font-medium {
  font-weight: var(--font-weight-medium);
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}
.font-extrabold {
  font-weight: var(--font-weight-extrabold);
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bold;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: #00B2FF;
  background-color: #FFF;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.is-style-header1,
.is-style-header2,
.is-style-header3,
.is-style-header4,
.is-style-header5,
.is-style-header6 {
  color: #203E5A;
  clear: both;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
}
h1,
.is-style-header1 {
  font-size: calc(1.43125rem + 1.6730769231vw);
}
@media (min-width: 1560px) {
  h1,
  .is-style-header1 {
    font-size: 3.0625rem;
  }
}
h2,
.is-style-header2 {
  font-size: calc(1.36875rem + 1.0961538462vw);
}
@media (min-width: 1560px) {
  h2,
  .is-style-header2 {
    font-size: 2.4375rem;
  }
}
h3,
.is-style-header3 {
  font-size: calc(1.31875rem + 0.6346153846vw);
}
@media (min-width: 1560px) {
  h3,
  .is-style-header3 {
    font-size: 1.9375rem;
  }
}
h4,
.is-style-header4 {
  font-size: calc(1.275rem + 0.2307692308vw);
}
@media (min-width: 1560px) {
  h4,
  .is-style-header4 {
    font-size: 1.5rem;
  }
}
h5,
.is-style-header5 {
  font-size: calc(1.2625rem + 0.1153846154vw);
}
@media (min-width: 1560px) {
  h5,
  .is-style-header5 {
    font-size: 1.375rem;
  }
}
h6,
.is-style-header6 {
  font-size: 1.25rem;
}
:root {
  --font-primary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-secondary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    "Source Code Pro",
    monaco,
    consolas,
    "Courier New",
    monospace;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --font-size-3xl: clamp(2rem, 1.625rem + 1.875vw, 3rem);
  --font-size-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
  --font-size-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
  --font-size-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  --letter-spacing-tight: -0.05em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;
  --header-nav-font-weight: var(--font-weight-regular);
  --header-nav-font-size: 0.9375rem;
  --header-nav-line-height: 1.5;
  --header-nav-letter-spacing: 0.01em;
  --header-account-font-weight: var(--font-weight-medium);
  --header-account-font-size: 0.875rem;
  --header-account-line-height: 1.5;
  --header-account-letter-spacing: 0.01em;
  --mobile-nav-font-weight: var(--font-weight-regular);
  --mobile-nav-font-size: 1rem;
  --mobile-nav-line-height: 1.5;
  --mobile-nav-letter-spacing: 0.01em;
}
:root {
  --h1-size: var(--font-size-4xl);
  --h1-weight: var(--font-weight-bold);
  --h1-line-height: var(--line-height-tight);
  --h1-letter-spacing: var(--letter-spacing-tight);
  --h2-size: var(--font-size-3xl);
  --h2-weight: var(--font-weight-semibold);
  --h2-line-height: var(--line-height-snug);
  --h2-letter-spacing: var(--letter-spacing-tight);
  --h3-size: var(--font-size-2xl);
  --h3-weight: var(--font-weight-semibold);
  --h3-line-height: var(--line-height-snug);
  --h3-letter-spacing: var(--letter-spacing-normal);
  --h4-size: var(--font-size-xl);
  --h4-weight: var(--font-weight-medium);
  --h4-line-height: var(--line-height-normal);
  --h4-letter-spacing: var(--letter-spacing-normal);
  --h5-size: var(--font-size-lg);
  --h5-weight: var(--font-weight-medium);
  --h5-line-height: var(--line-height-normal);
  --h5-letter-spacing: var(--letter-spacing-normal);
  --h6-size: var(--font-size-base);
  --h6-weight: var(--font-weight-semibold);
  --h6-line-height: var(--line-height-normal);
  --h6-letter-spacing: var(--letter-spacing-wide);
}
.font-light {
  font-weight: var(--font-weight-light);
}
.font-regular {
  font-weight: var(--font-weight-regular);
}
.font-medium {
  font-weight: var(--font-weight-medium);
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}
.font-extrabold {
  font-weight: var(--font-weight-extrabold);
}
p {
  font-weight: 300;
  line-height: 1.44;
  margin-top: 0;
  font-size: 1.125rem;
  margin-bottom: calc(1.325rem + 0.6923076923vw);
}
@media (min-width: 1560px) {
  p {
    margin-bottom: 2rem;
  }
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #f8f9fa;
  font-family: var(--font-mono);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: var(--font-mono);
}
abbr,
acronym {
  border-bottom: 1px dotted #1D2939;
  cursor: help;
}
mark,
ins {
  background: #CFD1FF;
  text-decoration: none;
}
big {
  font-size: 125%;
}
body,
button,
input,
select,
optgroup,
textarea {
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  color: #494D50;
  line-height: var(--line-height-normal);
}
.label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-label);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 100%;
}
ul,
ol {
  margin: 0 0 1.5em 3em;
}
ul {
  list-style: none;
}
ol {
  list-style: none;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: 700;
}
dd {
  margin: 0 1.5em 1.5em;
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content ol {
  list-style-type: decimal;
}
.entry-content ul,
.entry-content ol {
  margin: 0;
  padding: 0 30px;
}
.entry-content ul li,
.entry-content ol li {
  font-weight: 300;
  line-height: 1.44;
  font-size: 1.125rem;
}
embed,
iframe,
object {
  max-width: 100%;
}
img {
  height: auto;
  max-width: 100%;
}
figure {
  margin: 1em 0;
}
:root {
  --font-primary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-secondary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    "Source Code Pro",
    monaco,
    consolas,
    "Courier New",
    monospace;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --font-size-3xl: clamp(2rem, 1.625rem + 1.875vw, 3rem);
  --font-size-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
  --font-size-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
  --font-size-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  --letter-spacing-tight: -0.05em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;
  --header-nav-font-weight: var(--font-weight-regular);
  --header-nav-font-size: 0.9375rem;
  --header-nav-line-height: 1.5;
  --header-nav-letter-spacing: 0.01em;
  --header-account-font-weight: var(--font-weight-medium);
  --header-account-font-size: 0.875rem;
  --header-account-line-height: 1.5;
  --header-account-letter-spacing: 0.01em;
  --mobile-nav-font-weight: var(--font-weight-regular);
  --mobile-nav-font-size: 1rem;
  --mobile-nav-line-height: 1.5;
  --mobile-nav-letter-spacing: 0.01em;
}
:root {
  --h1-size: var(--font-size-4xl);
  --h1-weight: var(--font-weight-bold);
  --h1-line-height: var(--line-height-tight);
  --h1-letter-spacing: var(--letter-spacing-tight);
  --h2-size: var(--font-size-3xl);
  --h2-weight: var(--font-weight-semibold);
  --h2-line-height: var(--line-height-snug);
  --h2-letter-spacing: var(--letter-spacing-tight);
  --h3-size: var(--font-size-2xl);
  --h3-weight: var(--font-weight-semibold);
  --h3-line-height: var(--line-height-snug);
  --h3-letter-spacing: var(--letter-spacing-normal);
  --h4-size: var(--font-size-xl);
  --h4-weight: var(--font-weight-medium);
  --h4-line-height: var(--line-height-normal);
  --h4-letter-spacing: var(--letter-spacing-normal);
  --h5-size: var(--font-size-lg);
  --h5-weight: var(--font-weight-medium);
  --h5-line-height: var(--line-height-normal);
  --h5-letter-spacing: var(--letter-spacing-normal);
  --h6-size: var(--font-size-base);
  --h6-weight: var(--font-weight-semibold);
  --h6-line-height: var(--line-height-normal);
  --h6-letter-spacing: var(--letter-spacing-wide);
}
.font-light {
  font-weight: var(--font-weight-light);
}
.font-regular {
  font-weight: var(--font-weight-regular);
}
.font-medium {
  font-weight: var(--font-weight-medium);
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}
.font-extrabold {
  font-weight: var(--font-weight-extrabold);
}
a {
  color: #00B2FF;
}
a:hover,
a:focus,
a:active {
  color: #bd5e37;
}
a:hover,
a:focus,
a:active {
  outline: 0;
}
:root {
  --font-primary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-secondary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    "Source Code Pro",
    monaco,
    consolas,
    "Courier New",
    monospace;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --font-size-3xl: clamp(2rem, 1.625rem + 1.875vw, 3rem);
  --font-size-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
  --font-size-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
  --font-size-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  --letter-spacing-tight: -0.05em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;
  --header-nav-font-weight: var(--font-weight-regular);
  --header-nav-font-size: 0.9375rem;
  --header-nav-line-height: 1.5;
  --header-nav-letter-spacing: 0.01em;
  --header-account-font-weight: var(--font-weight-medium);
  --header-account-font-size: 0.875rem;
  --header-account-line-height: 1.5;
  --header-account-letter-spacing: 0.01em;
  --mobile-nav-font-weight: var(--font-weight-regular);
  --mobile-nav-font-size: 1rem;
  --mobile-nav-line-height: 1.5;
  --mobile-nav-letter-spacing: 0.01em;
}
:root {
  --h1-size: var(--font-size-4xl);
  --h1-weight: var(--font-weight-bold);
  --h1-line-height: var(--line-height-tight);
  --h1-letter-spacing: var(--letter-spacing-tight);
  --h2-size: var(--font-size-3xl);
  --h2-weight: var(--font-weight-semibold);
  --h2-line-height: var(--line-height-snug);
  --h2-letter-spacing: var(--letter-spacing-tight);
  --h3-size: var(--font-size-2xl);
  --h3-weight: var(--font-weight-semibold);
  --h3-line-height: var(--line-height-snug);
  --h3-letter-spacing: var(--letter-spacing-normal);
  --h4-size: var(--font-size-xl);
  --h4-weight: var(--font-weight-medium);
  --h4-line-height: var(--line-height-normal);
  --h4-letter-spacing: var(--letter-spacing-normal);
  --h5-size: var(--font-size-lg);
  --h5-weight: var(--font-weight-medium);
  --h5-line-height: var(--line-height-normal);
  --h5-letter-spacing: var(--letter-spacing-normal);
  --h6-size: var(--font-size-base);
  --h6-weight: var(--font-weight-semibold);
  --h6-line-height: var(--line-height-normal);
  --h6-letter-spacing: var(--letter-spacing-wide);
}
.font-light {
  font-weight: var(--font-weight-light);
}
.font-regular {
  font-weight: var(--font-weight-regular);
}
.font-medium {
  font-weight: var(--font-weight-medium);
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}
.font-extrabold {
  font-weight: var(--font-weight-extrabold);
}
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #00B2FF;
  border-radius: 3px;
  background: #00B2FF;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #bd5e37;
}
button:active,
button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #3CE6CA;
}
:root {
  --font-primary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-secondary:
    "Poppins",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    "Source Code Pro",
    monaco,
    consolas,
    "Courier New",
    monospace;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --font-size-3xl: clamp(2rem, 1.625rem + 1.875vw, 3rem);
  --font-size-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
  --font-size-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
  --font-size-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  --letter-spacing-tight: -0.05em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;
  --header-nav-font-weight: var(--font-weight-regular);
  --header-nav-font-size: 0.9375rem;
  --header-nav-line-height: 1.5;
  --header-nav-letter-spacing: 0.01em;
  --header-account-font-weight: var(--font-weight-medium);
  --header-account-font-size: 0.875rem;
  --header-account-line-height: 1.5;
  --header-account-letter-spacing: 0.01em;
  --mobile-nav-font-weight: var(--font-weight-regular);
  --mobile-nav-font-size: 1rem;
  --mobile-nav-line-height: 1.5;
  --mobile-nav-letter-spacing: 0.01em;
}
:root {
  --h1-size: var(--font-size-4xl);
  --h1-weight: var(--font-weight-bold);
  --h1-line-height: var(--line-height-tight);
  --h1-letter-spacing: var(--letter-spacing-tight);
  --h2-size: var(--font-size-3xl);
  --h2-weight: var(--font-weight-semibold);
  --h2-line-height: var(--line-height-snug);
  --h2-letter-spacing: var(--letter-spacing-tight);
  --h3-size: var(--font-size-2xl);
  --h3-weight: var(--font-weight-semibold);
  --h3-line-height: var(--line-height-snug);
  --h3-letter-spacing: var(--letter-spacing-normal);
  --h4-size: var(--font-size-xl);
  --h4-weight: var(--font-weight-medium);
  --h4-line-height: var(--line-height-normal);
  --h4-letter-spacing: var(--letter-spacing-normal);
  --h5-size: var(--font-size-lg);
  --h5-weight: var(--font-weight-medium);
  --h5-line-height: var(--line-height-normal);
  --h5-letter-spacing: var(--letter-spacing-normal);
  --h6-size: var(--font-size-base);
  --h6-weight: var(--font-weight-semibold);
  --h6-line-height: var(--line-height-normal);
  --h6-letter-spacing: var(--letter-spacing-wide);
}
.font-light {
  font-weight: var(--font-weight-light);
}
.font-regular {
  font-weight: var(--font-weight-regular);
}
.font-medium {
  font-weight: var(--font-weight-medium);
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}
.font-extrabold {
  font-weight: var(--font-weight-extrabold);
}
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #1D2939;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #000;
}
select {
  border: 1px solid #D9D9D9;
}
textarea {
  width: 100%;
}
.updated:not(.published) {
  display: none;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
html {
  scroll-behavior: smooth;
}
.container {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}
.updated:not(.published) {
  display: none;
}
body.cc-landing-body {
  margin: 0;
  background: #faf7f2;
  color: #45413d;
  font-family:
    arial,
    helvetica,
    sans-serif;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0.004em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.cc-landing-body .site,
body.cc-landing-body #page {
  display: contents;
}
body.cc-landing-body ::-moz-selection {
  background: #211f1d;
  color: #faf7f2;
}
body.cc-landing-body ::selection {
  background: #211f1d;
  color: #faf7f2;
}
.cc-landing {
  background: #faf7f2;
  color: #45413d;
}
.cc-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.cc-btn {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 4px;
  line-height: normal;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.cc-btn--primary {
  background: #bd5e37;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
}
.cc-btn--primary:hover,
.cc-btn--primary:focus-visible {
  background: #a44e2c;
  color: #fff;
}
.cc-btn--sm {
  font-size: 14.5px;
  padding: 11px 22px;
}
.cc-btn--text {
  background: none;
  color: #211f1d;
  font-weight: 700;
  font-size: 16px;
  border-radius: 0;
  border-bottom: 2px solid #de8159;
  padding: 0 0 3px;
}
.cc-btn--text span {
  color: #c96a41;
}
.cc-btn--text:hover,
.cc-btn--text:focus-visible {
  color: #211f1d;
}
.cc-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cc-eyebrow__text {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c96a41;
}
.cc-eyebrow--on-dark {
  margin-bottom: 24px;
}
.cc-eyebrow--on-dark .cc-eyebrow__text {
  color: #e0926b;
}
.cc-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.cc-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #de8159;
}
.cc-h1,
.cc-h2 {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #211f1d;
  margin: 0 0 26px;
}
.cc-h1 {
  font-size: 56px;
  line-height: 1.04;
}
.cc-h2 {
  font-size: 40px;
  line-height: 1.08;
  max-width: 680px;
}
.cc-lead {
  font-size: 21px;
  line-height: 1.5;
  color: #37332f;
  margin: 0 0 20px;
  max-width: 560px;
  font-weight: 400;
}
.cc-copy,
.cc-intro {
  font-size: 16.5px;
  line-height: 1.64;
  color: #5a554f;
  margin: 0 0 34px;
  max-width: 560px;
}
.cc-intro {
  margin-bottom: 46px;
  max-width: 700px;
}
.cc-intro--wide {
  max-width: 760px;
}
.cc-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.cc-corner--tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid #de8159;
  border-left: 2px solid #de8159;
}
.cc-corner--tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid #de8159;
  border-right: 2px solid #de8159;
}
.cc-corner--bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid #de8159;
  border-left: 2px solid #de8159;
}
.cc-corner--br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid #de8159;
  border-right: 2px solid #de8159;
}
.cc-corner--lg {
  top: 34px;
  width: 20px;
  height: 20px;
}
.cc-corner--lg.cc-corner--tl {
  left: 32px;
}
.cc-corner--lg.cc-corner--tr {
  right: 32px;
}
.cc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(33, 31, 29, 0.1);
}
.cc-header__inner {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
.cc-header__logo {
  height: 44px;
  width: auto;
  display: block;
}
.cc-header__wordmark {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 800;
  color: #211f1d;
  text-decoration: none;
}
.cc-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 26px;
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-size: 14.5px;
  font-weight: 600;
}
.cc-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8e8e8e;
  font-weight: 700;
}
.cc-lang__sep {
  opacity: 0.5;
}
.cc-lang__link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.cc-lang__link:hover,
.cc-lang__link:focus-visible {
  color: #211f1d;
}
.cc-lang__link.is-active {
  color: #211f1d;
}
.cc-hero {
  padding: 84px 32px 70px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cc-hero .cc-eyebrow {
  margin-bottom: 24px;
}
.cc-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 26px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cc-hero-img {
  position: relative;
  width: 100%;
  height: 480px;
  border: 1px solid rgba(33, 31, 29, 0.12);
  background:
    repeating-linear-gradient(
      135deg,
      #ece4d9 0 13px,
      #f2ece2 13px 26px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}
.cc-hero-img.has-image {
  background: #ece4d9;
}
.cc-hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.cc-hero-img__placeholder {
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a39a8c;
  background: rgba(250, 247, 242, 0.85);
  padding: 7px 12px;
  text-align: center;
}
.cc-stats-bar {
  border-top: 1px solid rgba(33, 31, 29, 0.1);
  border-bottom: 1px solid rgba(33, 31, 29, 0.1);
}
.cc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
  padding-bottom: 0;
}
.cc-stat {
  padding: 36px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 16px;
  border-right: 1px solid rgba(33, 31, 29, 0.1);
}
.cc-stat:first-child {
  padding-left: 0;
}
.cc-stat:last-child {
  border-right: none;
  padding-right: 0;
}
.cc-stat__value {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.02em;
  color: #c96a41;
  line-height: 1;
}
.cc-stat__label {
  font-size: 15.5px;
  color: #5a554f;
  line-height: 1.35;
}
.cc-sec {
  padding: 96px 32px 30px;
}
.cc-experience {
  padding-top: 70px;
}
.cc-experience__card {
  background: #fff;
  border: 1px solid rgba(33, 31, 29, 0.1);
  border-left: 3px solid #de8159;
  border-radius: 6px;
  padding: 44px;
}
.cc-h2--sm {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.cc-intro--flush {
  margin-bottom: 0;
}
.cc-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}
.cc-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(33, 31, 29, 0.1);
}
.cc-service__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #de8159;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.cc-service__text {
  font-size: 16px;
  color: #37332f;
}
.cc-service--full {
  grid-column: 1/-1;
}
.cc-testimonials-section {
  padding-top: 80px;
}
.cc-testimonials-section .cc-h2 {
  margin-bottom: 50px;
  max-width: 620px;
}
.cc-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.cc-testimonial {
  background: #fff;
  border: 1px solid rgba(33, 31, 29, 0.1);
  border-radius: 6px;
  padding: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 26px;
}
.cc-testimonial--featured {
  grid-column: 1/-1;
}
.cc-testimonial--featured .cc-testimonial__quote {
  font-size: 19px;
  line-height: 1.55;
}
.cc-testimonial__quote {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.5;
  color: #211f1d;
  margin: 0;
}
.cc-testimonial__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.cc-testimonial__photo {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid rgba(33, 31, 29, 0.14);
}
.cc-testimonial__photo--placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      #ece4d9 0 7px,
      #f2ece2 7px 14px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: monospace;
  font-size: 9px;
  color: #a39a8c;
  text-align: center;
  line-height: 1.2;
}
.cc-testimonial__name {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: #211f1d;
}
.cc-testimonial__role {
  font-size: 14px;
  color: #8e8e8e;
}
.cc-sustain-section {
  background: #211f1d;
  color: #e8e3dd;
  margin-top: 80px;
}
.cc-darkwrap {
  position: relative;
  padding: 96px 32px;
}
.cc-sustain {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 400;
  font-size: 29px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 44px;
  max-width: 880px;
  color: #f3efe9;
}
.cc-sustain__highlight {
  color: #e89368;
  font-weight: 700;
}
.cc-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
.cc-badge {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  border: 1px solid rgba(232, 227, 221, 0.26);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #d8d2cb;
}
.cc-badge--accent {
  border-color: rgba(222, 129, 89, 0.65);
  font-weight: 700;
  color: #e89368;
}
#kontakt {
  padding-bottom: 96px;
}
#kontakt .cc-h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
#kontakt .cc-contact__info .cc-intro {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.cc-contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.cc-contact__person {
  margin-bottom: 30px;
}
.cc-contact__name {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #211f1d;
}
.cc-contact__role {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-size: 15px;
  color: #c96a41;
  font-weight: 700;
  margin-bottom: 12px;
}
.cc-contact__links {
  font-size: 16px;
  color: #45413d;
  line-height: 1.7;
}
.cc-contact__links a {
  color: #45413d;
  text-decoration: none;
}
.cc-contact__links a:hover,
.cc-contact__links a:focus-visible {
  color: #211f1d;
}
.cc-contact__mail {
  border-bottom: 1px solid rgba(222, 129, 89, 0.55);
}
.cc-contact__company {
  border-top: 1px solid rgba(33, 31, 29, 0.1);
  padding-top: 24px;
  font-size: 15.5px;
  color: #5a554f;
  line-height: 1.7;
}
.cc-contact__company-name {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 700;
  color: #211f1d;
  font-size: 16px;
  margin-bottom: 4px;
}
.cc-contact__cvr {
  color: #8e8e8e;
  font-size: 14px;
}
.cc-contact__form-wrap {
  background: #fff;
  border: 1px solid rgba(33, 31, 29, 0.1);
  border-radius: 8px;
  padding: 38px;
}
.cc-form__title {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #211f1d;
  margin: 0 0 22px;
}
.cc-form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.cc-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8e8e8e;
}
.cc-form__field input,
.cc-form__field textarea {
  font-family:
    arial,
    helvetica,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: #211f1d;
  border: 1px solid rgba(33, 31, 29, 0.18);
  border-radius: 5px;
  padding: 13px 14px;
  background: #faf7f2;
  width: 100%;
  resize: vertical;
}
.cc-form__field input:focus,
.cc-form__field textarea:focus {
  outline: none;
  border-color: #bd5e37;
}
.cc-form__hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}
.cc-form__error {
  margin: 0;
  color: #b42318;
  font-size: 14px;
}
.cc-form__submit {
  width: 100%;
  padding: 15px;
  margin-top: 4px;
  border-radius: 5px;
}
.cc-form-success {
  padding: 40px 8px;
  text-align: center;
}
.cc-form-success__title {
  font-family:
    "Libre Franklin",
    arial,
    helvetica,
    sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #211f1d;
  margin-bottom: 8px;
}
.cc-form-success__text {
  font-size: 16px;
  color: #5a554f;
}
.cc-site-footer {
  background: #211f1d;
  color: #a8a29b;
}
.cc-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 28px;
  padding: 46px 32px;
}
.cc-footer__logo {
  height: 32px;
  width: auto;
  display: block;
}
.cc-footer__text {
  margin: 0;
  font-size: 13.5px;
  color: #8e8e8e;
}
@media (max-width: 980px) {
  .cc-hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .cc-hero-img {
    height: 320px;
  }
  .cc-h1 {
    font-size: 46px;
  }
  .cc-h2 {
    font-size: 32px;
  }
  .cc-grid2,
  .cc-contact,
  .cc-testimonials {
    grid-template-columns: 1fr;
  }
  .cc-sustain {
    font-size: 25px;
  }
}
@media (max-width: 680px) {
  .cc-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cc-hero {
    padding-top: 52px;
    padding-bottom: 44px;
  }
  .cc-sec {
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .cc-darkwrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cc-h1 {
    font-size: 37px;
  }
  .cc-lead {
    font-size: 18.5px;
  }
  .cc-h2 {
    font-size: 27px;
  }
  .cc-hero-img {
    height: 240px;
  }
  .cc-stats {
    grid-template-columns: 1fr;
  }
  .cc-stat {
    border-right: none;
    border-bottom: 1px solid rgba(33, 31, 29, 0.1);
    padding: 22px 0;
  }
  .cc-stat:last-child {
    border-bottom: none;
  }
  .cc-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
  }
  .cc-header__nav {
    gap: 14px;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
