/* this is base index */
:root {
  --mobile-basis-w: 375;
  --mobile-basis-h: 667;
  --mobile-min: 0;
  --mobile-max: 767;
  --mobile-floor: 0;
  --mobile-squish:0;
  --desktop-basis-w: 1440;
  --desktop-basis-h: 750;
  --desktop-min: 768;
  --desktop-max: 2000;
  --desktop-squish: 1;
  --desktop-floor: 500;
  --active-basis-w: var(--mobile-basis-w);
  --active-basis-h: var(--mobile-basis-h);
  --active-min: var(--mobile-min);
  --active-max: var(--mobile-max);
  --active-squish: var(--mobile-squish);
  --active-floor: var(--mobile-floor);
  --basis-aspect-ratio: calc(var(--active-basis-w) / var(--active-basis-h));
  --safe-vh: max(1vh, 1px * var(--active-floor) / 100);
  /* stylelint-disable */
  --pxv-unit: max((var(--active-min) * 1px / var(--active-basis-w)),
      min((var(--active-max) * 1px / var(--active-basis-w)),
        min((1vw * 100 / var(--active-basis-w)),
          calc(((1vw * 100 / var(--active-basis-w)) * (1 - var(--active-squish))) + ((var(--safe-vh) * var(--basis-aspect-ratio) * 100 / var(--active-basis-w)) * var(--active-squish))))));
  /* stylelint-enable */
  --font-max-clamp: 9999px;
  --font-size: calc(16 * var(--pxv-unit));
}

:root {
  --easing: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

html:focus-within {
  scroll-behavior: smooth;
}

:where(body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(ul[role=list], ol[role=list]) {
  list-style: none;
}

:where(a:not([class])) {
  text-decoration-skip-ink: auto;
}

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

hr {
  block-size: 1px;
  inline-size: 100%;
  border: none;
  background-color: currentcolor;
  margin-block: var(--type-margin);
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --font-family-system: system-ui, helvetica,arial, sans-serif;
  --font-family-heading: var(--font-family-system);
  --font-family-monospace: ui-monospace, sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace;
  --font-min-clamp: 11px;
  --line-height: 1.35;
  --text-wrap: pretty;
  --letter-spacing: normal;
  --type-margin: calc(15 * var(--pxv-unit));
}

:where(*, *::before, *::after) {
  font-size: clamp(var(--font-min-clamp), var(--font-size), var(--font-max-clamp));
}

html {
  font-family: var(--font-family-system);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  text-wrap: var(--text-wrap);
}

:where(p, h1, h2, h3, h4, h5, h6, ul, ol, dl, blockquote, pre, figure) {
  margin-block-end: var(--type-margin);
}

:where(h1, h2, h3, h4, h5, h6) {
  line-height: 1.2;
  font-family: var(--font-family-heading);
}

code,
kbd,
samp,
pre,
tt {
  font-family: var(--font-family-monospace);
}

.longform {
  line-height: 1.5;
}

.caps {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.heading--xxl {
  --font-size: calc(34 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .heading--xxl {
    --font-size: calc(60 * var(--pxv-unit));
  }
}
.heading--xxl {
  line-height: 1.2;
}

.heading--xl {
  --font-size: calc(30 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .heading--xl {
    --font-size: calc(48 * var(--pxv-unit));
  }
}
.heading--xl {
  --font-min-clamp: 28px;
}

.heading--l {
  --font-size: calc(26 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .heading--l {
    --font-size: calc(38 * var(--pxv-unit));
  }
}
.heading--l {
  --font-min-clamp: 24px;
}

.heading--m {
  --font-size: calc(22 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .heading--m {
    --font-size: calc(32 * var(--pxv-unit));
  }
}
.heading--m {
  --font-min-clamp: 20px;
}

.heading--s {
  --font-size: calc(20 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .heading--s {
    --font-size: calc(26 * var(--pxv-unit));
  }
}
.heading--s {
  --font-min-clamp: 18px;
}

.heading--xs {
  --font-size: calc(18 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .heading--xs {
    --font-size: calc(20 * var(--pxv-unit));
  }
}
.heading--xs {
  --font-min-clamp: 16px;
}

.body--l {
  --font-size: calc(16 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .body--l {
    --font-size: calc(18 * var(--pxv-unit));
  }
}
.body--l {
  --font-min-clamp: 14px;
}

.body--m {
  --font-size: calc(14 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .body--m {
    --font-size: calc(16 * var(--pxv-unit));
  }
}

.body--s {
  --font-size: calc(12 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .body--s {
    --font-size: calc(14 * var(--pxv-unit));
  }
}

.body--xs {
  --font-size: calc(11 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .body--xs {
    --font-size: calc(12 * var(--pxv-unit));
  }
}

.body--xxs {
  --font-size: calc(10 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .body--xxs {
    --font-size: calc(11 * var(--pxv-unit));
  }
}

.body--xxxs {
  --font-size: calc(10 * var(--pxv-unit));
}
@media (min-width: 768px) {
  .body--xxxs {
    --font-size: calc(10 * var(--pxv-unit));
  }
}

.w--300 {
  font-weight: 300;
}

.w--400 {
  font-weight: 400;
}

.w--500 {
  font-weight: 500;
}

.w--600 {
  font-weight: 600;
}

.w--700 {
  font-weight: 700;
}

.w--800 {
  font-weight: 800;
}

.wrap-pretty {
  text-wrap: pretty;
}

.wrap-balance {
  text-wrap: balance;
}

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

.text-right {
  text-align: right;
}

:root {
  --container-size: calc(1280 * var(--pxv-unit));
  --mobile-gutters: 5%;
  --border-radius: calc(5 * var(--pxv-unit));
}

@media (width >= 768px) {
  :root {
    --active-basis-w: var(--desktop-basis-w);
    --active-basis-h: var(--desktop-basis-h);
    --active-min: var(--desktop-min);
    --active-max: var(--desktop-max);
    --active-squish: var(--desktop-squish);
    --active-floor: var(--desktop-floor);
  }
}
#wpadminbar {
  position: fixed !important;
  opacity: 0.3 !important;
  transition: transform 0.3s, opacity 0.3s;
  transform: translateY(-80%) !important;
}
#wpadminbar:hover {
  opacity: 1 !important;
  transform: none !important;
}

body {
  min-height: 100vh;
}

.container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-size);
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: var(--mobile-gutters);
    padding-right: var(--mobile-gutters);
  }
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

#breakpoints {
  display: none;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  #breakpoints {
    z-index: 1;
  }
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.abs-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fit-photo {
  position: relative;
}
.fit-photo.absolute {
  position: absolute;
}
.fit-photo > img,
.fit-photo > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fit-photo.cover > img, .fit-photo.cover > video {
  object-fit: cover;
}
.fit-photo.contain > img, .fit-photo.contain > video {
  object-fit: contain;
}

.color--white {
  color: #fff;
}
.color--black {
  color: #000;
}

.background--white {
  color: #fff;
}
.background--black {
  color: #000;
}

.flex {
  display: flex;
}
.flex.wrap {
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .flex.wrap-mobile {
    flex-wrap: wrap;
  }
}
.flex.inline {
  display: inline-flex;
}
@media (max-width: 767px) {
  .flex.inline-mobile {
    display: inline-flex;
  }
}
.flex.center {
  align-items: center;
  justify-content: center;
}
.flex.j-sb {
  justify-content: space-between;
}
.flex.j-c {
  justify-content: center;
}
.flex.j-start {
  justify-content: flex-start;
}
.flex.j-end {
  justify-content: flex-end;
}
.flex.a-c {
  align-items: center;
}
.flex.a-start {
  align-items: flex-start;
}
.flex.a-baseline {
  align-items: baseline;
}
.flex.a-end {
  align-items: flex-end;
}
.flex.column {
  flex-direction: column;
}
@media (min-width: 768px) {
  .flex.column-desktop {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .flex.column-mobile {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .flex.column-mobile-reverse {
    flex-direction: column-reverse;
  }
}
.flex.row-reverse {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .flex.row-reverse-desktop {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .flex.a-c-desktop {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .flex.a-start-desktop {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .flex.j-c-desktop {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .flex.j-sb-desktop {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .flex.j-end-desktop {
    justify-content: flex-end;
  }
}

/* i'm utilities */
/* this is components index */
/* this is modules index */
body {
  background: lavenderblush;
  padding: calc(15 * var(--pxv-unit)) 0;
}
@media (min-width: 768px) {
  body {
    background: oldlayce;
    border: calc(12 * var(--pxv-unit)) solid cadetblue;
  }
}
@media (min-width: 1600px) {
  body {
    background: lightyellow;
    border: calc(25 * var(--pxv-unit)) solid black;
  }
}

.box {
  background-color: gold;
  color: navy;
  width: calc(270 * var(--pxv-unit));
  height: calc(200 * var(--pxv-unit));
  border: 15px solid purple;
}
@media (min-width: 768px) {
  .box {
    background-color: indianred;
    border: calc(12 * var(--pxv-unit)) solid goldenrod;
    color: whitesmoke;
  }
}

.color-test {
  color: rgb(38, 95, 51);
  font-size: calc(99 * var(--pxv-unit));
}

#dev-config--width {
  position: fixed;
  top: calc(18 * var(--pxv-unit));
  right: calc(20 * var(--pxv-unit));
  background: lightgreen;
  padding: 10px 15px;
  opacity: 0.8;
}
#dev-config--width::before,
#dev-config--width span {
  font-weight: bold;
  font-size: 20px;
}
@media (width >= 1px) and (max-width: 374px) {
  #dev-config--width {
    background: lightseagreen;
  }
  #dev-config--width::before {
    content: "Below $ms ";
  }
}
@media (min-width: 320px) {
  #dev-config--width {
    background: lightblue;
  }
  #dev-config--width::before {
    content: "$ms ";
  }
}
@media (min-width: 375px) {
  #dev-config--width {
    background: lightgoldenrodyellow;
  }
  #dev-config--width::before {
    content: "$mm";
  }
}
@media (min-width: 500px) {
  #dev-config--width {
    background: yellow;
  }
  #dev-config--width::before {
    content: "$ml";
  }
}
@media (min-width: 600px) {
  #dev-config--width {
    background: lightsalmon;
  }
  #dev-config--width::before {
    content: "$ts";
  }
}
@media (min-width: 768px) {
  #dev-config--width {
    background: lightsteelblue;
  }
  #dev-config--width::before {
    content: "$tm";
  }
}
@media (min-width: 1024px) {
  #dev-config--width {
    background: lightpink;
  }
  #dev-config--width::before {
    content: "$tl";
  }
}
@media (min-width: 1440px) {
  #dev-config--width {
    background: rgb(90, 216, 244);
  }
  #dev-config--width::before {
    content: "$dm";
  }
}
@media (min-width: 1600px) {
  #dev-config--width {
    background: rgb(147, 245, 128);
  }
  #dev-config--width::before {
    content: "$dl";
  }
}
@media (min-width: 1800px) {
  #dev-config--width {
    background: yellow;
  }
  #dev-config--width::before {
    content: "$dxl";
  }
}
/*# sourceMappingURL=styles.css.map */
