/*!**********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/styles/style.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*
* Layout Variables
* ------------------
*/
:root {
  --max-width: 1600px;
  --padding: 1rem;
}

@media only screen and (min-width: 769px) {
  :root {
    --padding: 2rem;
  }
}
@media only screen and (min-width: 1280px) {
  :root {
    --padding: 4rem;
  }
}
/*
* Colors
* ------------------
*/
:root {
  --primary: rgba(72, 73, 81, 1);
  --secondary: rgba(247, 167, 11, 1);
  --white: #ffffff;
  --gray: rgb(178, 178, 178);
  --transparent: rgba(0, 0, 0, 0);
  --accent-1: rgb(114, 178, 58);
  --accent-2: rgb(118, 200, 117);
  --accent-3: rgb(0, 166, 222);
  --accent-4: rgb(215, 11, 64);
  --accent-5: rgb(121, 33, 88);
  --cursor: rgba(247, 168, 11, 0.5);
}

/*
* Typography Imports
* ------------------
*/
body {
  -ms-font-feature-settings: "ss01", "ss02" 1;
  -o-font-feature-settings: "ss01", "ss02" 1;
  font-feature-settings: "ss01", "ss02" 1;
}

@font-face {
  font-family: "TT Interphases Pro";
  src: url(fonts/TTInterphasesPro-Bd.9684ba56.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Interphases Pro";
  src: url(fonts/TTInterphasesPro-Lt.4b321ab4.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Interphases Pro";
  src: url(fonts/TTInterphasesPro-Md.44c818c6.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/*
* Typography Variables
* --------------------
*/
:root {
  /* Font Family */
  --ff-light: "NeuzeitGro-Lig", sans-serif;
  --ff-regular: "NeuzeitGro-Reg", sans-serif;
  --ff-bold: "NeuzeitGro-Bol", sans-serif;
  --ff-black: "NeuzeitGro-Bla", sans-serif;
  /* Font Size */
  --fs-900: 115px;
  --fs-800: 84px;
  --fs-700: 56px;
  --fs-600: 48px;
  --fs-500: 40px;
  --fs-400: 32px;
  --fs-300: 22px;
  --fs-200: 16px;
  --fs-100: 14px;
}

/*
* Typography Hierchary & Usage
* ----------------------------
*/
p {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

@media only screen and (min-width: 769px) {
  p {
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  line-height: 1.4;
  -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 weights
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* Forms
	 ========================================================================== */
/**
 * 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;
}

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

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

img,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

body .preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  pointer-events: auto;
}

body .preloader .preloader__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

body .preloader .preloader__inner video {
  width: 250px;
}

@media only screen and (min-width: 481px) {
  body .preloader .preloader__inner video {
    width: 300px;
  }
}
body.loaded .preloader {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.site-header__nav {
  display: flex;
  justify-content: space-between;
}
.site-header__menu-button {
  display: block;
  cursor: pointer;
}
.site-header__menu-button span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #000;
  margin: 7px 0;
  transition: all 375ms cubic-bezier(0.36, 0, 0.45, 0.99);
}
.site-header__menu-button--active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 8px);
}
.site-header__menu-button--active span:nth-child(2) {
  opacity: 0;
}
.site-header__menu-button--active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -8px);
}

.main-navigation {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 375ms cubic-bezier(0.36, 0, 0.45, 0.99);
  isolation: isolate;
}
.main-navigation--active {
  opacity: 1;
  pointer-events: all;
}
.main-navigation ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
}
.main-navigation ul li {
  margin: 1em 0;
}
.main-navigation ul li a {
  text-decoration: none;
  color: #000;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.site-footer {
  background-color: var(--primary);
  color: var(--white);
}
.site-footer__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--padding);
}
.site-footer__logo {
  width: 100px;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
.site-footer__links li a {
  color: var(--white);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.is-style-offset {
  padding-top: calc(var(--offset) - var(--padding));
}

/* Blocks
--------------------------------------------- */
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          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 {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  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;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Cursor
--------------------------------------------- */
.cursor {
  display: none;
}

.cursor-grow {
  display: none;
}

@media only screen and (min-width: 769px) {
  .cursor {
    display: block;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: var(--cursor);
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1001;
    transition: all 250ms cubic-bezier(0.075, 0.82, 0.165, 1);
    transform-origin: 100% 100%;
    transition-property: background-color, transform, width, height;
  }
  .cursor__inner {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  .cursor__inner img {
    width: 2.5em;
    height: 2.5em;
  }
  .cursor-grow {
    width: 120px;
    height: 120px;
    background-color: var(--secondary);
  }
}

/*# sourceMappingURL=style-index.css.map*/