@charset "UTF-8";
/* Imports
---------------------------------------------------------------------------- */
/**
 * Sass variables
 *
 * All useful sass global variables.
 */
/**
 * Animations
 *
 * All useful animations.
 */
@keyframes octopodsAnimationFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * Mixins
 *
 * All useful mixins.
 */
/* Variables
---------------------------------------------------------------------------- */
:root {
  --wp--custom--transition-default: all .25s ease-in-out;
  --wp--custom--ornament: '•';
  --wp--custom--button--border-radius: .5rem;
  --wp--custom--border-radius: clamp(0px, var(--wp--custom--button--border-radius), 15px);
  --wp--custom--shadow: 0 0 25px #00000012;
  --wp--custom--submenu--padding: 1rem;
  --wp--custom--site-logo--mobile--width: 100px;
  --wp--custom--arrow--right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='m11.293 17.293 1.414 1.414L19.414 12l-6.707-6.707-1.414 1.414L15.586 11H6v2h9.586z'/%3E%3C/svg%3E");
  --wp--custom--color--translucent: rgba(0, 0, 0, 0.1);
  --wp--custom--card--background: var(--wp--preset--color--base, #fff);
  --wp--custom--card--border--color: #0000001a;
  --wp--custom--posts--spacing: var(--wp--preset--spacing--small, 30px);
  --wp--custom--link--decoration-thickness: .0625em;
  --wp--custom--link--underline-offset: .2em;
}

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

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-moz-selection {
  background-color: var(--wp--custom--text--selection);
  color: var(--wp--preset--color--primary);
}

::selection {
  background-color: var(--wp--custom--text--selection);
  color: var(--wp--preset--color--primary);
}

a,
input,
button,
.wp-element-button {
  transition: var(--wp--custom--transition-default);
}

a {
  text-decoration-thickness: var(--wp--custom--link--decoration-thickness);
  text-underline-offset: var(--wp--custom--link--underline-offset);
}

b,
th,
strong {
  font-weight: var(--wp--custom--font-weight--bold);
}

mark {
  color: inherit;
}

mark[style*="background"]:not([style*="background-color:rgba(0, 0, 0, 0)"]) {
  padding: .1em .25em;
}

small,
.small {
  font-size: .875em;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

iframe {
  border: 0;
}

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

/* Forms
--------------------------------------------- */
[role="button"] {
  cursor: pointer;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

label {
  width: 100%;
  display: block;
  cursor: pointer;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0;
  float: left;
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
}

legend + * {
  clear: left;
}

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"],
select,
textarea {
  background-color: var(--wp--preset--color--base);
  border: 1px solid var(--wp--preset--color--neutral);
  border-radius: var(--wp--custom--border-radius);
  color: var(--wp--preset--color--contrast);
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: var(--wp--custom--font-weight--light);
  line-height: var(--wp--custom--line-height--body);
  padding: .75rem 1rem;
  width: 100%;
}

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,
select:focus,
textarea:focus {
  background-color: var(--wp--preset--color--neutral--accent);
  border-color: var(--wp--preset--color--primary);
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
  width: 1.25em;
  height: 1.25em;
  margin: 0 0.5em 0 0;
  position: relative;
  top: 0.15em;
}

input[type="button"],
input[type="email"],
input[type="search"],
input[type="submit"],
input[type="text"],
textarea {
  -webkit-appearance: none;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-moz-placeholder {
  color: var(--wp--preset--color--contrast);
  font-size: var(--wp--preset--font-size--small);
  opacity: 0.5;
}

::placeholder {
  color: var(--wp--preset--color--contrast);
  font-size: var(--wp--preset--font-size--small);
  opacity: 0.5;
}

/* Layout
---------------------------------------------------------------------------- */
/* Footer
--------------------------------------------- */
.site-footer a, .site-footer a:hover, .site-footer a:focus, .site-footer a:active {
  text-decoration: none;
}

/* Utilities
---------------------------------------------------------------------------- */
.d-none,
.hidden,
[hidden] {
  display: none !important;
}

@media only screen and (max-width: 600px) {
  .is-style-hidden-mobile {
    display: none !important;
  }
}

@media only screen and (max-width: 992px) {
  .is-style-hidden-tablet {
    display: none !important;
  }
}

@media only screen and (max-width: 1200px) {
  .is-style-hidden-desktop {
    display: none !important;
  }
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

/* Print
--------------------------------------------- */
@media print {
  .d-print-block {
    display: block !important;
  }
  .d-print-none {
    display: none !important;
  }
}

