@charset "UTF-8";
/* Varibles */
:root {
  --color-secondary: #020B0E;
  --color-extra-1: #142125;
  --color-extra-2: #02393A;
  --color-accent: #00AEB8;
  --color-grey: #9E9E9E;
  --color-bg: #031115;
  --color-paragraph: #EDF8FF;
  --color-main: #EDF8FF;
  --color-primary: #00D9CC;
  --color-text: var(--color-main);
  --border-1: linear-gradient(90deg, #13272E, #204752);
  --box-shadow: 0px 7px 15px 4px rgba(7, 1, 1, 0.1);
}

:root {
  --content-horizontal-margin: 20rem;
  --content-horizontal-margin-vw: 15vw;
  --container-width: 1300px;
}

@media only screen and (max-width: 1500px) {
  :root {
    --content-horizontal-margin-vw: 5rem;
    --content-horizontal-margin: 5rem;
  }
}
@media only screen and (max-width: 600px) {
  :root {
    --content-horizontal-margin-vw: 1rem;
    --content-horizontal-margin: 1rem;
  }
}
:root {
  --content-horizontal-margin: 20rem;
  --content-horizontal-margin-vw: 15vw;
  --container-width: 1300px;
}

@media only screen and (max-width: 1500px) {
  :root {
    --content-horizontal-margin-vw: 5rem;
    --content-horizontal-margin: 5rem;
  }
}
@media only screen and (max-width: 600px) {
  :root {
    --content-horizontal-margin-vw: 1rem;
    --content-horizontal-margin: 1rem;
  }
}
:root {
  --font-size-h1: 50px;
  --font-size-h2: 50px;
  --font-size-h3: 50px;
  --font-size-h4: 50px;
  --font-size-h5: 50px;
  --font-size-h6: 50px;
  --font-size-paragraph: 18px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-paragraph: var(--font-weight-regular);
  --font-weight-heading: var(--font-weight-bold);
}
@media (max-width: 600px) {
  :root {
    --font-size-h1: 50px;
    --font-size-h2: 50px;
    --font-size-h3: 50px;
    --font-size-h4: 50px;
    --font-size-h5: 50px;
    --font-size-h6: 50px;
    --font-size-paragraph: 18px;
  }
}

/* Base */
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--color-paragraph);
}

h2 {
  font-size: 38px;
  font-weight: 600;
}
@media only screen and (max-width: 580px) {
  h2 {
    font-size: 30px;
  }
}

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--color-paragraph);
  font-family: "DM Sans", "Arial", sans-serif;
  font-size: var(--font-size-paragraph);
}

p {
  line-height: 1.4em;
}

.text-small {
  color: var(--color-grey);
  font-size: 15px;
  margin: 0;
}

.text-headline {
  color: var(--color-primary);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.5rem !important;
}

.link-arrow {
  color: var(--color-primary);
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  gap: 0.5rem;
  -ms-flex-align: center;
      align-items: center;
}
.link-arrow svg {
  width: 25px;
  transition: 0.1s transform ease-in;
}
.link-arrow:hover svg {
  transform: translate(8px);
}

@media only screen and (max-width: 360px) {
  h2 {
    font-size: 28px;
  }
}
body {
  background: var(--color-bg);
  background: radial-gradient(53.81% 53.81% at 50% 46.19%, #031115 0%, #03191F 100%);
}

html {
  scroll-behavior: smooth;
}

.primary-btn,
input[type=submit],
input[type=reset],
.wp-block-button .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--color-bg);
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  height: 55px;
  border-radius: 8px;
  box-shadow: none;
  text-decoration: none;
  padding: 0.6rem 1.8rem;
  font-weight: 500;
  font-size: var(--font-size-paragraph);
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  word-break: break-word;
  position: relative;
  transition: 0.1s background-color ease-in-out, 0.1s border-color ease-in-out, 0.1s color ease-in-out;
}
.primary-btn:after,
input[type=submit]:after,
input[type=reset]:after,
.wp-block-button .wp-block-button__link:after,
.wp-block-button.is-style-outline .wp-block-button__link:after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 3px solid var(--color-primary);
  width: 100%;
  height: 100%;
  top: 9px;
  left: 9px;
  border-radius: 12px;
  transition: top 0.2s ease-in-out, left 0.2s ease-in-out;
}
.primary-btn:hover,
input[type=submit]:hover,
input[type=reset]:hover,
.wp-block-button .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
.primary-btn:hover svg,
input[type=submit]:hover svg,
input[type=reset]:hover svg,
.wp-block-button .wp-block-button__link:hover svg,
.wp-block-button.is-style-outline .wp-block-button__link:hover svg {
  transform: translate(10px);
}
.primary-btn:hover:after,
input[type=submit]:hover:after,
input[type=reset]:hover:after,
.wp-block-button .wp-block-button__link:hover:after,
.wp-block-button.is-style-outline .wp-block-button__link:hover:after {
  top: 0;
  left: 0;
}
.primary-btn:active:after,
input[type=submit]:active:after,
input[type=reset]:active:after,
.wp-block-button .wp-block-button__link:active:after,
.wp-block-button.is-style-outline .wp-block-button__link:active:after {
  top: 0;
  left: 0;
}
.primary-btn:focus,
input[type=submit]:focus,
input[type=reset]:focus,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button.is-style-outline .wp-block-button__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.primary-btn svg,
input[type=submit] svg,
input[type=reset] svg,
.wp-block-button .wp-block-button__link svg,
.wp-block-button.is-style-outline .wp-block-button__link svg {
  width: 25px;
  transition: transform 0.2s ease-in-out;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: var(--color-primary);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: var(--color-bg);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

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],
button[type=submit],
textarea {
  color: var(--color-text);
  background-color: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  font-size: 16px;
  padding: 1rem;
  width: 100%;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=range]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=week]:-ms-input-placeholder,
input[type=time]:-ms-input-placeholder,
input[type=datetime]:-ms-input-placeholder,
input[type=datetime-local]:-ms-input-placeholder,
input[type=color]:-ms-input-placeholder,
button[type=submit]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--color-grey);
  font-size: 16px;
  opacity: 1;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
button[type=submit]::placeholder,
textarea::placeholder {
  color: var(--color-grey);
  font-size: 16px;
  opacity: 1;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=range]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=month]::-webkit-input-placeholder,
input[type=week]::-webkit-input-placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=datetime]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=color]::-webkit-input-placeholder,
button[type=submit]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--color-grey);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=range]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=month]::-moz-placeholder,
input[type=week]::-moz-placeholder,
input[type=time]::-moz-placeholder,
input[type=datetime]::-moz-placeholder,
input[type=datetime-local]::-moz-placeholder,
input[type=color]::-moz-placeholder,
button[type=submit]::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--color-grey);
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=range]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=week]:-ms-input-placeholder,
input[type=time]:-ms-input-placeholder,
input[type=datetime]:-ms-input-placeholder,
input[type=datetime-local]:-ms-input-placeholder,
input[type=color]:-ms-input-placeholder,
button[type=submit]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--color-grey);
}
input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=url]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=search]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=range]::-ms-input-placeholder,
input[type=date]::-ms-input-placeholder,
input[type=month]::-ms-input-placeholder,
input[type=week]::-ms-input-placeholder,
input[type=time]::-ms-input-placeholder,
input[type=datetime]::-ms-input-placeholder,
input[type=datetime-local]::-ms-input-placeholder,
input[type=color]::-ms-input-placeholder,
button[type=submit]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--color-grey);
}
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,
button[type=submit]:focus,
textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 1rem;
  border: 2px solid #13b913;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.wpcf7 form.invalid .wpcf7-response-output {
  margin: 0;
  padding: 1rem;
  border: 2px solid #fd5858;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.wpcf7-spinner {
  display: none;
}

.form-row {
  margin-bottom: 1rem;
}
.form-row p {
  margin: 0;
}
.form-row br {
  height: 0;
}

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

form button[type=submit] {
  width: 100%;
  text-align: left;
  position: relative; /* Tarvitaan pseudo-elementille */
  padding-right: 30px;
  padding-left: 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg);
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
form button[type=submit]:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  cursor: pointer;
}
form button[type=submit]:hover:before {
  transform: translateY(-50%) translateX(8px);
}
form button[type=submit]:before {
  transition: transform 0.2s ease-in-out;
  z-index: 2;
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 28 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8H26.5' stroke='%23031115' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.5 1L26.5 8L19.5 15' stroke='%23031115' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

select {
  border: 1px solid var(--color-bg);
}

textarea {
  resize: vertical;
  width: 100%;
  height: 120px;
  min-height: 56px;
}

hr {
  background-color: var(--color-bg);
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

a {
  color: var(--color-paragraph);
  text-decoration: none;
  position: relative;
}
a:active {
  outline: 0;
}
a[target=_blank]:not(.no-external):after, a.external-link:after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 3px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.55469 0C8.35547 0 8.20312 0.152344 8.20312 0.351562C8.20312 0.550781 8.35547 0.703125 8.55469 0.703125H11.2267L5.78911 6.14067C5.64848 6.2813 5.64848 6.50386 5.78911 6.63277C5.85942 6.70308 5.95313 6.73828 6.03516 6.73828C6.11719 6.73828 6.21089 6.70308 6.2812 6.63277L11.7188 1.19522V3.86719C11.7188 4.06641 11.8711 4.21875 12.0703 4.21875C12.2695 4.21875 12.4219 4.06641 12.4219 3.86719V0.351562C12.4219 0.152344 12.2695 0 12.0703 0H8.55469ZM1.52344 2.34375C0.679688 2.34375 0 3.02344 0 3.86719V10.8984C0 11.7422 0.679688 12.4219 1.52344 12.4219H8.55469C9.39844 12.4219 10.0781 11.7422 10.0781 10.8984V5.625C10.0781 5.42578 9.92578 5.27344 9.72656 5.27344C9.52734 5.27344 9.375 5.42578 9.375 5.625V10.8984C9.375 11.3555 9.01172 11.7188 8.55469 11.7188H1.52344C1.06641 11.7188 0.703125 11.3555 0.703125 10.8984V3.86719C0.703125 3.41016 1.06641 3.04688 1.52344 3.04688H6.79688C6.99609 3.04688 7.14844 2.89453 7.14844 2.69531C7.14844 2.49609 6.99609 2.34375 6.79688 2.34375H1.52344Z' fill='%2383898B'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.site-main a {
  color: var(--color-primary);
  position: relative;
}
.site-main a:not(.no-effect):before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  bottom: -1px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.2s ease-in-out;
}
.site-main a:hover:before {
  width: 0;
}

.no-a-effect * a:before {
  display: none !important;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Components */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

.gallery {
  margin-bottom: 1.5em;
  display: -ms-grid;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  -ms-grid-columns: (1fr)[8];
      grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  -ms-grid-columns: (1fr)[9];
      grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

/* Generic */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Layout */
header.site-header {
  padding: 4rem 6rem 0 var(--content-horizontal-margin-vw);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 2rem;
  -ms-flex-align: center;
      align-items: center;
  height: 85px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  /* Styling for the bars */
  /* Position the bars to simulate a "hamburger" icon */
}
header.site-header img.logo {
  width: 130px;
}
@media only screen and (max-width: 600px) {
  header.site-header img.logo {
    width: 100px;
  }
}
header.site-header .mobile-menu {
  clip-path: circle(0% at 100% 0);
  transition: clip-path 0.2s ease-in-out;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  padding: var(--content-horizontal-margin);
  padding-top: 12rem;
  background-color: var(--color-extra-1);
}
header.site-header .mobile-menu.active {
  clip-path: circle(75%);
}
header.site-header .mobile-menu ul#mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.2rem;
}
header.site-header .mobile-menu ul#mobile-menu a {
  font-size: 30px;
  font-weight: 500;
  position: relative;
}
header.site-header .mobile-menu ul#mobile-menu a:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 2px;
  bottom: -1px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.2s ease-in-out;
}
header.site-header .mobile-menu ul#mobile-menu a:hover:after {
  width: 100%;
}
header.site-header .mobile-menu ul#mobile-menu .current-menu-item a:after {
  width: 100%;
}
header.site-header button.navigation-menu-toggle {
  background-color: transparent;
  cursor: pointer;
  border: none;
  display: none;
  position: relative;
  padding: 0;
  width: 40px;
  box-sizing: border-box;
  height: 30px;
  transition: transform 0.5s ease-in-out;
}
header.site-header .bar {
  position: absolute;
  width: 100%;
  height: 2px;
  transition: 0.5s;
  background-color: var(--color-paragraph);
}
header.site-header .bar:nth-child(1) {
  transform: translateY(0px); /* Adjust position */
  left: 0;
  top: 0;
}
header.site-header .bar:nth-child(2) {
  transform: translateY(-50%); /* Centered in the middle */
  left: 0;
  top: 50%;
}
header.site-header .bar:nth-child(3) {
  transform: translateY(0px); /* Adjust position */
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 1200px) {
  header.site-header {
    padding: 4rem var(--content-horizontal-margin) 0 var(--content-horizontal-margin);
  }
}
header.site-header nav.main-navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
header.site-header nav.main-navigation .nav-menu {
  margin: 0;
  padding: 0;
  height: 100%;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 4rem;
}
header.site-header nav.main-navigation .nav-menu a {
  font-size: 16px;
  position: relative;
}
header.site-header nav.main-navigation .nav-menu a:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.2s ease-in-out;
}
header.site-header nav.main-navigation .nav-menu a:hover:after {
  width: 100%;
}
header.site-header nav.main-navigation .nav-menu .current-menu-item a:after {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  header.site-header button.navigation-menu-toggle {
    display: block;
  }
  header.site-header nav.main-navigation {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  header.site-header {
    padding: 2rem var(--content-horizontal-margin) 0 var(--content-horizontal-margin);
  }
}

.site {
  min-height: 100vh;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
}

.footer-no-margin footer {
  margin-top: 0 !important;
}

.no-scroll {
  overflow: hidden;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-footer-margin footer {
  margin-top: 0 !important;
}

.block p {
  margin: 0;
}

.block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.with-padding {
  padding: 2rem var(--content-horizontal-margin);
  padding-top: 0;
}
.with-padding .page-wrapper {
  margin: 0 auto;
  max-width: var(--container-width);
}

.container {
  padding: 2rem;
}
.container .wrapper {
  margin: 0 auto;
  max-width: var(--container-width);
}
@media only screen and (max-width: 600px) {
  .container {
    padding: 1rem;
  }
}

.page-hero {
  height: 55vh;
  min-height: 300px;
  padding-top: 85px;
  padding-left: var(--content-horizontal-margin-vw);
  padding-right: 1rem;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 80px;
  z-index: 2;
}
.page-hero .content p {
  color: var(--color-primary);
  font-size: 20px;
  margin: 0 0 1rem;
}
.page-hero .content h1 {
  color: var(--color-text);
  font-size: 65px;
  font-weight: 600;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .page-hero .content h1 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 670px) {
  .page-hero .content h1 {
    font-size: 35px;
  }
  .page-hero .content p {
    font-size: 16px;
  }
}
.page-hero .lines {
  z-index: -1;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-position: bottom center;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}

.post-hero {
  width: 100%;
  height: 60vh;
  margin-top: -85px;
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.post-hero .text-headline {
  margin-top: 85px;
  margin-bottom: 1rem;
}
.post-hero h1 {
  margin-top: 0;
}
.post-hero .content {
  -webkit-backdrop-filter: blur(6px) brightness(80%);
          backdrop-filter: blur(6px) brightness(80%);
  background-color: rgba(3, 17, 21, 0.4);
  padding: 1rem;
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.post-content {
  padding: 2rem var(--content-horizontal-margin);
}
.post-content .wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
}
.post-content .post-tags {
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 2rem 0 1rem;
}
.post-content .post-tags a {
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 16px;
  color: var(--color-primary);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.post-content .post-tags a:after {
  display: none;
}
.post-content .post-tags a.active {
  background-color: var(--color-primary);
  color: var(--color-bg);
}
.post-content .post-tags a:hover {
  background-color: var(--color-primary);
  color: var(--color-bg);
}
.post-content .nav-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
}
.post-content .nav-links a:after {
  display: none;
}
@media only screen and (max-width: 600px) {
  .post-content .nav-links {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: start;
    -ms-flex-pack: start;
        justify-content: start;
  }
}
.post-content .nav-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-1);
}
.post-content .nav-links a {
  color: var(--color-primary);
}
.post-content .author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.post-content .author p {
  font-size: 16px;
}
.post-content .author p a {
  color: var(--color-primary);
  font-size: 18px;
}
.post-content .author img {
  width: 60px;
  border-radius: 100%;
}

.page-404 {
  padding: 2rem;
  padding-top: 20vh;
  text-align: center;
  height: 60vh;
}
.page-404 h1 {
  font-size: 52px;
  text-align: center;
}
.page-404 h1 span {
  color: var(--color-primary);
}

section.hero {
  height: 100vh;
  min-height: 800px;
  padding-top: 250px;
  padding-left: var(--content-horizontal-margin-vw);
  padding-right: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
  /* Global bg image */
}
section.hero .lines {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: revealMask 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0.6s forwards;
  clip-path: inset(0 100% 0 0);
}
section.hero .background-image {
  z-index: -3;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: slideDown 0.2s ease-in-out forwards;
}
@keyframes revealMask {
  0% {
    clip-path: inset(0 100% 0 0); /* Piilotettu vasemmalta oikealle */
  }
  100% {
    clip-path: inset(0 0 0 0); /* Täysin näkyvä */
  }
}
section.hero .bg-5 {
  z-index: -2;
}
section.hero .bg-3 {
  z-index: -2;
}
section.hero .bg-0 {
  animation-duration: 0.9s;
}
section.hero .bg-1 {
  animation-duration: 0.5s;
}
section.hero .bg-2 {
  animation-duration: 0.7s;
}
section.hero .bg-3 {
  animation-duration: 1.1s;
}
section.hero .bg-4 {
  animation-duration: 0.7s;
}
section.hero .bg-5 {
  animation-duration: 0.7s;
}
@keyframes slideDown {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
section.hero .content {
  display: -ms-grid;
  display: grid;
  gap: 3rem;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}
section.hero .left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
section.hero .left p {
  color: var(--color-primary);
  font-size: 20px;
  margin: 0 0 1rem;
}
section.hero .left h1 {
  color: var(--color-text);
  font-size: 82px;
  font-weight: 600;
  margin: 0;
}
section.hero .right {
  padding-left: 3rem;
  padding-top: 3rem;
  padding-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
  section.hero {
    margin-top: 100px;
    min-height: 550px;
    padding-top: 100px;
    height: 80vh;
  }
  section.hero .background-image {
    display: none;
  }
  section.hero .lines {
    top: 100px;
  }
  section.hero .left h1 {
    font-size: 70px;
  }
  section.hero .content {
    display: -ms-grid;
    display: grid;
    gap: 0;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  section.hero .content .right p {
    margin-bottom: 2rem;
  }
  section.hero .right {
    padding: 0;
  }
}
@media only screen and (max-width: 1170px) {
  section.hero .left h1 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 670px) {
  section.hero .left h1 {
    font-size: 50px;
  }
  section.hero .left p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 580px) {
  section.hero .left h1 {
    font-size: 38px;
  }
}
section.hero .right p {
  color: var(--color-text);
  font-size: 18px;
}
@media only screen and (max-width: 420px) {
  section.hero {
    padding-top: 70px;
  }
}

.site-footer {
  width: 100%;
  background-color: var(--color-bg);
  color: var(--color-bg);
  padding: 4rem 2rem 0;
  margin-top: 2rem;
}
@media only screen and (max-width: 600px) {
  .site-footer {
    padding: 4rem 1rem 0;
  }
}
.site-footer ul {
  margin: 0;
  padding: 0;
}
.site-footer a:hover {
  color: var(--color-primary);
  transition: 0.2s ease-in-out;
}
.site-footer .top {
  padding-bottom: 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
}
.site-footer .top .branding img {
  width: 130px;
  margin-bottom: 0.5rem;
}
.site-footer .top .branding h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}
.site-footer .top .certs {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -ms-flex-align: center;
      align-items: center;
}
.site-footer .top .certs img {
  width: 60px;
}
.site-footer .top .columns {
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
.site-footer .top .columns .colum {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.site-footer .top .columns .colum ul {
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-direction: column;
      flex-direction: column;
}
.site-footer .top .columns .colum p {
  color: var(--color-text);
  margin: 0;
  padding: 0;
}
.site-footer .top .columns h2 {
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 1rem;
}
.site-footer .bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}
.site-footer .bottom a, .site-footer .bottom p {
  color: var(--color-grey);
  font-size: 14px;
}
.site-footer .bottom a:hover {
  color: var(--color-primary);
}
.site-footer .bottom ul {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media only screen and (max-width: 600px) {
  .site-footer .bottom ul {
    gap: 1rem;
  }
}
.site-footer .bottom .social img {
  width: 20px;
  transition: transform 0.4s linear;
}
.site-footer .bottom .social img:hover {
  transform: rotate(360deg);
}
.site-footer .bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-1);
}
.site-footer .bottom img {
  width: 20px;
}
@media only screen and (max-width: 950px) {
  .site-footer .top {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .site-footer .top .columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 2.5rem 0;
    gap: 2rem;
  }
}

section.blog-posts .filters {
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 1rem;
}
section.blog-posts .filters p {
  font-size: 18px;
}
section.blog-posts .filters .categories {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
}
section.blog-posts .filters .categories a {
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 16px;
  color: var(--color-primary);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
section.blog-posts .filters .categories a.active {
  background-color: var(--color-primary);
  color: var(--color-bg);
}
section.blog-posts .filters .categories a:hover {
  background-color: var(--color-primary);
  color: var(--color-bg);
}
@media only screen and (max-width: 960px) {
  section.blog-posts .filters {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  section.blog-posts .filters .categories {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
section.blog-posts .posts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
section.blog-posts .posts .post {
  margin-bottom: 2rem;
}
section.blog-posts .posts .post img {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: filter 0.2s ease-in-out;
}
section.blog-posts .posts .post .placeholder {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: var(--color-extra-1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: end;
  font-size: 50px;
  padding: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  section.blog-posts .posts .post .placeholder {
    font-size: 35px;
  }
}
section.blog-posts .posts .post .post-date {
  color: var(--color-primary);
  font-size: 16px;
  margin-bottom: 0.5rem;
}
section.blog-posts .posts .post .post-title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 400px) {
  section.blog-posts .posts .post .post-title {
    font-size: 20px;
  }
}
section.blog-posts .posts .post a:hover .placeholder {
  color: var(--color-text);
}
section.blog-posts .posts .post a:hover img {
  filter: saturate(0);
}
@media only screen and (max-width: 960px) {
  section.blog-posts .posts {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 600px) {
  section.blog-posts .posts {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

section.block.highlights {
  background-color: #071B21;
  margin: 2rem 0;
  position: relative;
  /* Pseudo-element for gradient border */
}
section.block.highlights .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  padding: 2rem 0;
  -ms-flex-align: center;
      align-items: center;
}
section.block.highlights h2 {
  color: var(--color-primary);
  margin: 0;
}
section.block.highlights .columns {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
section.block.highlights .column h3:not(.text-headline) {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}
section.block.highlights::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  bottom: -3px;
  padding: 3px; /* Border thickness */
  background: linear-gradient(30deg, #152d34, #071B21); /* Gradient for the border */
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
section.block.highlights .columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  section.block.highlights .wrapper {
    gap: 2rem;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  section.block.highlights .columns {
    -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  section.block.highlights h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 770px) {
  section.block.highlights .columns {
    -ms-flex-direction: column;
        flex-direction: column;
    text-align: center;
  }
}

section.block.cards {
  text-align: center;
  margin: 2rem auto;
}
section.block.cards .columns {
  gap: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
section.block.cards .card {
  max-width: 370px;
  min-width: 300px;
  padding: 2rem;
  border-radius: 13px;
  background: linear-gradient(148deg, #06171C 5%, #072128 50%, #04161C 95%);
  position: relative; /* Required for positioning the ::before element */
  /* Pseudo-element for gradient border */
}
section.block.cards .card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 15px;
  padding: 3px;
  background: linear-gradient(to bottom, #13272E, #071B21);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
section.block.cards .card img {
  width: 220px;
  height: 220px;
  transition: transform 0.2s ease-in-out;
}
section.block.cards .card:hover img {
  transform: translateY(-20px);
}
section.block.cards .card p {
  margin-bottom: 1rem;
}
section.block.cards .card a {
  color: var(--color-primary);
}
section.block.cards .card a:hover {
  color: var(--color-accent);
}
section.block.cards h3 {
  font-weight: 500;
  font-size: 24px;
}
section.block.cards h2 {
  margin: 0 auto 4rem;
  max-width: 800px;
}
@media only screen and (max-width: 1200px) {
  section.block.cards .columns {
    gap: 2rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media only screen and (max-width: 600px) {
  section.block.cards .card {
    max-width: 100%;
    min-width: 100%;
  }
  section.block.cards .card img {
    width: 180px;
    height: 180px;
  }
  section.block.cards h2 {
    margin-bottom: 2rem;
  }
}

section.block.featured-blog .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
section.block.featured-blog .featured {
  border-radius: 15px;
  background: linear-gradient(212deg, #06171C -1.54%, #071F26 51.39%, #04161C 130.12%);
  position: relative;
}
section.block.featured-blog .featured::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  padding: 3px;
  background: linear-gradient(40deg, #13272E, #091D23);
  border-radius: 17px;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
section.block.featured-blog .featured img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 350px;
  width: 100%;
  object-fit: cover;
}
section.block.featured-blog .featured .content {
  padding: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
section.block.featured-blog .featured h2 {
  margin: 0;
}
section.block.featured-blog .right h2 {
  margin: 0;
  margin-bottom: 2rem;
}
section.block.featured-blog .right .articles {
  list-style: none;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 0;
}
section.block.featured-blog .right .articles .article .excerpt {
  color: var(--color-grey);
  font-size: 14px;
}
section.block.featured-blog .right .articles .article a {
  margin: 1.5rem 0;
}
section.block.featured-blog .right .articles .article:nth-child(1) {
  border-bottom: 1px solid var(--color-extra-2);
  margin-bottom: 2rem;
}
section.block.featured-blog .post-title {
  margin: 0;
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  section.block.featured-blog .wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 2rem;
  }
  section.block.featured-blog .featured img {
    height: 400px;
  }
}

section.block.reference .card {
  min-height: 450px;
  background: linear-gradient(148deg, #06171C 18.32%, #072128 53.61%, #04161C 87.38%);
  display: -ms-grid;
  display: grid;
  border-radius: 15px;
  gap: 2rem;
  -ms-grid-columns: 1.6fr 1fr;
      grid-template-columns: 1.6fr 1fr;
  position: relative;
}
section.block.reference .card .image-container {
  position: relative;
}
section.block.reference .card .right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 2rem;
}
section.block.reference .card h3 {
  font-weight: 500;
  font-size: 24px;
  margin: 0;
  margin-bottom: 1rem;
}
section.block.reference .card p {
  margin-bottom: 1rem;
}
section.block.reference .card img.main {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom-left-radius: 15px;
}
@media only screen and (max-width: 1200px) {
  section.block.reference .card {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0;
  }
  section.block.reference .card img.main {
    position: inherit;
    top: 0;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
  }
}
section.block.reference .card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  padding: 3px;
  background: linear-gradient(40deg, #13272E, #091D23);
  border-radius: 17px;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
section.block.reference .testmonial {
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-align: center;
      align-items: center;
  font-size: 16px;
  margin-top: 3rem;
}
section.block.reference .testmonial p {
  margin: 0;
  font-size: 15px;
}
section.block.reference .testmonial .name {
  color: var(--color-primary);
}
section.block.reference .testmonial img {
  width: 50px;
  border-radius: 100%;
  height: 50px;
  object-fit: cover;
}
@media only screen and (max-width: 600px) {
  section.block.reference .testmonial {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}

section.block.contact .wrapper .card {
  padding: 4rem;
  min-height: 450px;
  background: linear-gradient(148deg, #06171C 18.32%, #072128 53.61%, #04161C 87.38%);
  display: -ms-grid;
  display: grid;
  border-radius: 15px;
  gap: 2rem;
  -ms-grid-columns: 1fr 0.6fr;
      grid-template-columns: 1fr 0.6fr;
  position: relative;
}
section.block.contact .wrapper .card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  padding: 3px;
  background: linear-gradient(40deg, #13272E, #091D23);
  border-radius: 17px;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
section.block.contact .wrapper .card h2 {
  margin: 0;
  font-size: 24px;
  margin-bottom: 2rem;
}
section.block.contact .wrapper .card .left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 2rem;
}
section.block.contact .wrapper .card .left ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
section.block.contact .wrapper .card .left ul img {
  width: 24px;
}
section.block.contact .wrapper .card .left ul p {
  margin: 0;
}
@media only screen and (max-width: 600px) {
  section.block.contact .wrapper .card .left ul p {
    font-size: 16px;
  }
}
section.block.contact .wrapper .card .left ul li {
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-align: center;
      align-items: center;
}
section.block.contact .wrapper .card .left .description {
  color: var(--color-grey);
  font-size: 16px;
}
section.block.contact .wrapper .card .left .description p {
  color: var(--color-grey);
  margin: 0;
  font-size: 16px;
}
section.block.contact .wrapper .card .right {
  position: relative;
}
section.block.contact .wrapper .card .right .arrow {
  position: absolute;
  top: -100px;
  left: -230px;
  transform: rotate(-25deg);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
}
section.block.contact .wrapper .card .right .arrow p {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
}
section.block.contact .wrapper .card .privacy-note {
  color: var(--color-grey);
  margin: 0;
  font-size: 16px;
  text-align: center;
}
section.block.contact .wrapper .card .privacy-note a {
  color: var(--color-primary);
}
@media only screen and (max-width: 1200px) {
  section.block.contact .wrapper .card {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 860px) {
  section.block.contact .wrapper .card {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 4rem;
  }
  section.block.contact .wrapper .card .right .arrow {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  section.block.contact .wrapper .card {
    padding: 2rem;
  }
}
@media only screen and (max-width: 420px) {
  section.block.contact .wrapper .card {
    padding: 2rem 2rem;
  }
}

section.block.team {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 2rem;
  margin-bottom: 3px;
  position: relative;
  padding: 4rem 2rem;
}
section.block.team::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  bottom: -3px;
  padding: 3px;
  background: linear-gradient(40deg, #13272E, #091D23);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
section.block.team p, section.block.team h3, section.block.team h2 {
  margin: 0;
}
section.block.team .header {
  text-align: center;
  margin-bottom: 3rem;
}
section.block.team .header h2 {
  margin-bottom: 1rem;
}
section.block.team .header p {
  color: var(--color-grey);
  max-width: 800px;
  margin: 0 auto;
}
section.block.team .team {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
section.block.team .team .person {
  width: 520px;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -ms-flex-align: center;
      align-items: center;
}
section.block.team .team .person h3 {
  font-size: 28px;
  margin-bottom: 0.5rem;
}
section.block.team .team .person .name p {
  color: var(--color-primary);
  font-size: 16px;
}
section.block.team .team .person img {
  width: 250px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: cover;
}
section.block.team .team .person .content {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
section.block.team .team .person ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1rem;
}
section.block.team .team .person ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 600px) {
  section.block.team .team .person ul li p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  section.block.team .team .person img {
    width: 200px;
  }
}
@media only screen and (max-width: 600px) {
  section.block.team .team .team {
    -ms-flex-pack: start;
        justify-content: start;
  }
  section.block.team .team .person {
    text-align: center;
    width: 100%;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 1rem;
  }
  section.block.team .team .person .content {
    padding-top: 1rem;
  }
}

section.block.title-content {
  background-color: #071B21;
  position: relative;
  /* Pseudo-element for gradient border */
}
section.block.title-content .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
}
section.block.title-content h2 {
  margin: 0;
  padding: 0;
  color: var(--color-primary);
}
section.block.title-content .title, section.block.title-content .content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 2rem;
}
section.block.title-content::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  bottom: -3px;
  padding: 3px;
  background: linear-gradient(313deg, #13272E, #0A232B);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
section.block.title-content.no-bg {
  background-color: transparent;
}
section.block.title-content.no-bg::before {
  display: none;
}
@media only screen and (max-width: 1024px) {
  section.block.title-content .wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

section.block.image-content {
  background-color: #071B21;
  position: relative;
  margin: 2rem 0;
  /* Pseudo-element for gradient border */
}
section.block.image-content .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
}
section.block.image-content h2 {
  padding: 0;
  color: var(--color-primary);
  margin: 0 0 1rem;
}
section.block.image-content .image {
  padding-right: 2rem;
}
section.block.image-content .title, section.block.image-content .content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 2rem;
}
section.block.image-content::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  bottom: -3px;
  padding: 3px;
  background: linear-gradient(313deg, #13272E, #0A232B);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
section.block.image-content.no-bg {
  background-color: transparent;
}
section.block.image-content.no-bg::before {
  display: none;
}
@media only screen and (max-width: 1024px) {
  section.block.image-content .wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  section.block.image-content .image {
    padding-right: 0;
  }
  section.block.image-content img {
    width: 100%;
  }
}

section.block.three-points .wrapper {
  padding-top: 2rem;
}
section.block.three-points h2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}
section.block.three-points .columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 1rem;
  -ms-flex-align: stretch;
      align-items: stretch;
}
section.block.three-points .columns h3 {
  font-weight: 500;
  margin: 1rem auto 1.5rem;
  font-size: 24px;
}
section.block.three-points .columns .card {
  text-align: center;
  padding: 2rem;
  border-radius: 13px;
  background: linear-gradient(148deg, #06171C 5%, #072128 50%, #04161C 95%);
  position: relative; /* Required for positioning the ::before element */
  width: 400px;
}
section.block.three-points .columns .card .icon-container {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translate(-50%, 0);
}
section.block.three-points .columns .card .icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: var(--color-extra-1);
  width: 60px;
  height: 60px;
  border-radius: 13px;
  position: relative;
}
section.block.three-points .columns .card .icon img {
  width: 26px;
}
section.block.three-points .columns .card .icon::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 15px;
  padding: 3px;
  background: linear-gradient(to bottom, #13272E, #071B21);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
section.block.three-points .columns .card p {
  font-size: 16px;
  color: var(--color-grey);
}
section.block.three-points .columns .card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 15px;
  padding: 3px;
  background: linear-gradient(to bottom, #13272E, #071B21);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
@media only screen and (max-width: 1320px) {
  section.block.three-points .columns {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 4rem;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media screen and (max-width: 600px) {
  section.block.three-points .columns .card {
    width: 100%;
  }
}

section.block.faq .questions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
section.block.faq .questions .question {
  border: none;
  border-bottom: 1px solid var(--color-primary);
  padding: 2rem 0;
  background-color: transparent;
}
section.block.faq .questions .question h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}
section.block.faq .questions .question .header {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 1rem;
}
section.block.faq .questions .question .header svg {
  width: 25px;
  transition: transform 0.3s;
}
section.block.faq .questions .question .content {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  opacity: 0;
  transition: max-height 0.3s ease-in, opacity 0.3s ease-in, padding-top 0.3s ease-in;
  max-width: 900px;
  color: var(--color-grey);
}
section.block.faq .questions .question.active .header svg {
  transform: rotate(180deg);
}
section.block.faq .questions .question.active .content {
  max-height: 500px;
  opacity: 1;
  padding-top: 1rem;
}

section.block.legal-content .note {
  margin-bottom: 2rem;
  color: var(--color-grey);
}

.legal-hero {
  width: 100%;
  height: 400px;
  margin-top: -85px;
  text-align: center;
}
.legal-hero .text-headline {
  margin-top: 85px;
  margin-bottom: 1rem;
}
.legal-hero h1 {
  margin-top: 0;
}
.legal-hero .content {
  padding: 1rem;
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

section.block.legal-posts .legal-posts-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2rem;
}
section.block.legal-posts .legal-posts-list p {
  font-size: 16px;
  color: var(--color-grey);
}
section.block.legal-posts .legal-posts-list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.5rem;
}
section.block.legal-posts .legal-posts-list a:after {
  width: 0;
}

section.block.contact-person .wrapper .card {
  padding: 4rem;
  background: linear-gradient(148deg, #06171C 18.32%, #072128 53.61%, #04161C 87.38%);
  display: -ms-grid;
  display: grid;
  border-radius: 15px;
  gap: 2rem;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  position: relative;
}
section.block.contact-person .wrapper .card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  padding: 3px;
  background: linear-gradient(40deg, #13272E, #091D23);
  border-radius: 17px;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-shadow: var(--box-shadow);
  z-index: -1;
}
section.block.contact-person .wrapper .card h2 {
  margin: 0;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
section.block.contact-person .wrapper .card .left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 2rem;
}
section.block.contact-person .wrapper .card .left ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
section.block.contact-person .wrapper .card .left ul img {
  width: 24px;
}
section.block.contact-person .wrapper .card .left ul p {
  margin: 0;
}
@media only screen and (max-width: 600px) {
  section.block.contact-person .wrapper .card .left ul p {
    font-size: 16px;
  }
}
section.block.contact-person .wrapper .card .left ul li {
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-align: center;
      align-items: center;
}
section.block.contact-person .wrapper .card .left .description {
  color: var(--color-grey);
  font-size: 16px;
}
section.block.contact-person .wrapper .card .left .description p {
  color: var(--color-grey);
  margin: 0;
  font-size: 16px;
}
section.block.contact-person .wrapper .card .person {
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -ms-flex-align: center;
      align-items: center;
}
section.block.contact-person .wrapper .card .person h3 {
  font-size: 28px;
  margin-bottom: 0.5rem;
}
section.block.contact-person .wrapper .card .person .name p {
  color: var(--color-primary);
  font-size: 16px;
}
section.block.contact-person .wrapper .card .person img {
  width: 250px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: cover;
}
section.block.contact-person .wrapper .card .person .content {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
section.block.contact-person .wrapper .card .person ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1rem;
}
section.block.contact-person .wrapper .card .person ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 600px) {
  section.block.contact-person .wrapper .card .person ul li p {
    font-size: 16px;
  }
}
section.block.contact-person .wrapper .card .right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 2rem;
}
@media only screen and (max-width: 1220px) {
  section.block.contact-person .wrapper .card {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 4rem;
  }
  section.block.contact-person .wrapper .card .left {
    -ms-flex-align: start;
        align-items: start;
  }
}
@media only screen and (max-width: 670px) {
  section.block.contact-person .wrapper .card {
    padding: 2rem;
    text-align: center;
  }
  section.block.contact-person .wrapper .card .left {
    -ms-flex-align: center;
        align-items: center;
  }
  section.block.contact-person .wrapper .card .person {
    display: block;
  }
  section.block.contact-person .wrapper .card .person .content {
    padding: 0;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

section.block.technologies .images {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 2rem;
}
section.block.technologies .images img {
  width: 50px;
}

/* Utilities */
.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,
.screen-reader-text:active {
  background-color: var(--color-bg);
  border-radius: 3px;
  clip: auto !important;
  clip-path: none;
  color: #fff;
  display: inline-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;
}

#primary[tabindex="-1"]:focus {
  outline: 0;
}

.skip-link {
  position: absolute;
  top: -10000px;
  left: -10000px;
  z-index: 1000;
  background-color: var(--color-bg);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.875rem;
  text-decoration: none;
}

.skip-link:focus {
  position: absolute;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  display: inline-block;
  opacity: 1;
}

:root {
  color-scheme: dark;
  --cc-bg: var(--color-extra-1);
  --cc-primary-color: var(--color-paragraph);
  --cc-secondary-color: var(--color-grey);
  --cc-btn-primary-bg: var(--color-primary);
  --cc-btn-primary-color: var(--color-bg);
  --cc-btn-primary-hover-bg: var(--color-blue-lagoon);
  --cc-btn-primary-hover-color: var(--color-bg);
  --cc-btn-secondary-bg: var(--color-extra-2);
  --cc-btn-secondary-color: var(--color-paragraph);
  --cc-btn-secondary-hover-bg: #023233;
  --cc-btn-secondary-hover-color: var(--color-grey);
  --cc-cookie-category-block-bg: #023233;
  --cc-cookie-category-block-border: #1e2428;
  --cc-cookie-category-block-hover-bg: #242c31;
  --cc-cookie-category-block-hover-border: #242c31;
  --cc-cookie-category-expanded-block-hover-bg: #242c31;
  --cc-cookie-category-expanded-block-bg: #1e2428;
  --cc-toggle-readonly-bg: #343e45;
  --cc-overlay-bg: #020b0ee1!important;
  --cc-toggle-on-knob-bg: var(--cc-bg);
  --cc-toggle-readonly-knob-bg: var( --cc-cookie-category-block-bg);
  --cc-separator-border-color: #222a30;
  --cc-footer-border-color: #212529;
  --cc-footer-bg: var(--color-secondary);
}

.cookie-button {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  margin: 2rem;
  cursor: pointer;
  height: 55px;
  width: 55px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: var(--color-extra-2);
  border: 0;
  outline: 0;
  border-radius: var(--border-radius-normal);
}
@media only screen and (max-width: 730px) {
  .cookie-button {
    margin: 1rem;
    height: 45px;
    width: 45px;
  }
}