@import "normalize.css";
@font-face {
  font-family: NSeifert;
  font-weight: normal;
  src: url("/font/Porsche/PorscheRegular.ttf") format("truetype");
}
@font-face {
  font-family: PPMori;
  font-weight: 300;
  src: url("/font/PPMori/PPMori-Extralight.otf") format("opentype");
}
@font-face {
  font-family: PPMori;
  font-weight: 300;
  font-style: italic;
  src: url("/font/PPMori/PPMori-ExtralightItalic.otf") format("opentype");
}
@font-face {
  font-family: PPMori;
  font-weight: 400;
  src: url("/font/PPMori/PPMori-Regular.otf") format("opentype");
}
@font-face {
  font-family: PPMori;
  font-weight: 400;
  font-style: italic;
  src: url("/font/PPMori/PPMori-RegularItalic.otf") format("opentype");
}
@font-face {
  font-family: PPMori;
  font-weight: 600;
  src: url("/font/PPMori/PPMori-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: PPMori;
  font-weight: 600;
  font-style: italic;
  src: url("/font/PPMori/PPMori-SemiBoldItalic.otf") format("opentype");
}
/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/font/Inter/inter-v13-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  src: url("/font/MaterialSymbols.woff2") format("woff2");
}
.material-symbols-outlined, .icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
}

.ppmori {
  font-family: PPMori, Inter, sans-serif;
}

.semi-bold {
  font-weight: 600;
}

.s-36 {
  font-size: 2.25rem;
}

.s-32 {
  font-size: 2rem;
}

:root {
  --logo-medium: 45px;
  --pad-big: 85px;
  --pad-medium: 22.5px;
  --pad-small: 11.25px;
  --pad-light: 5.75px;
  --btn-height: 45px;
  --ns-logo-medium: 45px;
  --ns-pad-big: 45px;
  --ns-pad-large: calc(var(--ns-pad-big) * 2);
  --ns-pad-medium: 22.5px;
  --ns-pad-small: 11.25px;
  --ns-pad-light: 5.75px;
  --ns-bg-dark: #212121;
  --ns-on-dark: rgb(242, 242, 242);
  --ns-trans-fast: 100ms;
  --col-background: #ffffff;
  --col-primary: #000000;
  --offwhite: #f2f2f2;
  --dark: #212121;
}

body {
  background-color: var(--col-background);
  transition: all 0.4s ease-in-out;
  font-family: PPMori;
}
body * {
  transition: color, background-color, fill 0.4s ease-in-out;
}
@media (prefers-color-scheme: dark) {
  body {
    --col-background: var(--ns-bg-dark);
    --col-primary: var(--ns-on-dark) !important;
    background-color: var(--col-background);
  }
  body .nav-item .container {
    box-shadow: rgba(0, 0, 0, 0.25) 0 10px 12px, rgba(0, 0, 0, 0.15) 0 20px 22px !important;
  }
  body .img-links li {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.1) 0px -12px 30px, rgba(0, 0, 0, 0.5) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.2) 0px -3px 5px !important;
  }
  body .grey::after {
    --_color: #5b5b5b !important;
  }
  body * {
    color: var(--ns-on-dark) !important;
    fill: var(--ns-on-dark) !important;
    --ns-color: var(--ns-on-dark);
  }
  body img {
    filter: brightness(0.8) contrast(1.2);
  }
}
body.dark {
  --col-background: var(--ns-bg-dark);
  --col-primary: var(--ns-on-dark) !important;
  background-color: var(--col-background);
}
body.dark .nav-item .container {
  box-shadow: rgba(0, 0, 0, 0.25) 0 10px 12px, rgba(0, 0, 0, 0.15) 0 20px 22px !important;
}
body.dark .img-links li {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.1) 0px -12px 30px, rgba(0, 0, 0, 0.5) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.2) 0px -3px 5px !important;
}
body.dark .grey::after {
  --_color: #5b5b5b !important;
}
body.dark * {
  color: var(--ns-on-dark) !important;
  fill: var(--ns-on-dark) !important;
  --ns-color: var(--ns-on-dark);
}
body.dark img {
  filter: brightness(0.8) contrast(1.2);
}

#site-header {
  padding-inline: var(--pad-big);
  padding-top: var(--pad-medium);
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding-bottom: 2rem;
}

#header-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
#header-logo svg {
  height: var(--logo-medium);
  width: auto;
  padding-right: var(--pad-small);
}
#header-logo span {
  display: inline-flex;
  flex-direction: row;
}

.ns_logo {
  font-family: NSeifert;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 0.8em;
}

#header-nav {
  font-family: PPMori, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  flex-grow: 2;
  display: grid;
  justify-content: start;
}
#header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#header-nav a {
  text-decoration: none;
  color: black;
}
#header-nav .container {
  position: absolute;
  z-index: 10;
  background-color: var(--col-background);
  top: 100%;
  width: 100%;
  left: 0;
  overflow: hidden;
  height: 0px;
  transition: height 300ms ease-out, box-shadow 450ms ease;
  box-shadow: 0 6px 10px -6px rgba(168, 168, 168, 0);
  --ratio: 0.75;
  --minHeight: 300px;
  --maxHeight: 400px;
  --prefHeight: 30svh;
}
#header-nav .container.active {
  height: clamp(var(--minHeight), var(--prefHeight), var(--maxHeight));
  box-shadow: 0 6px 10px -6px #a8a8a8;
  padding-bottom: 2rem;
}
#header-nav .container.active .dropdown {
  overflow-y: visible;
}
#header-nav .dropdown {
  padding-left: calc(var(--pad-big) + var(--logo-medium));
  padding-right: var(--pad-big);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: 100%;
  overflow-y: hidden;
  height: 100%;
  transition: height 150ms ease-out;
}
#header-nav .dropdown .title {
  font-weight: 900;
  font-size: 1.125em;
  margin-bottom: 0.4em;
  text-transform: uppercase;
}
#header-nav .nav-item > a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#header-nav .nav-item > a .icon {
  position: absolute;
  right: -24px;
  transition: transform 150ms ease-in-out;
}
#header-nav .nav-item > a .icon.open {
  transform: rotateZ(180deg);
}
#header-nav .nav-item > a, #header-nav .text-links a {
  position: relative;
}
#header-nav .nav-item > a.active, #header-nav .text-links a.active {
  font-weight: 800;
}
#header-nav .nav-item > a::before, #header-nav .text-links a::before {
  content: "";
  display: inline-block;
  height: 0.125em;
  width: 0;
  position: absolute;
  bottom: -1px;
  background-color: var(--col-primary);
  transition: width 200ms ease-in-out;
  border-radius: 0.125em;
}
#header-nav .nav-item > a:hover::before, #header-nav .text-links a:hover::before {
  width: 100%;
}
#header-nav .text-links {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  text-transform: initial;
}
#header-nav .text-links span:hover a::before {
  width: 100%;
}
#header-nav .text-links span::after {
  --content: attr(data-linklabel);
  --col: --_color;
  content: var(--content);
  color: var(--_color);
  font-size: 0.8rem;
}
#header-nav .text-links span.red::after {
  --_color: #F15946;
}
#header-nav .text-links span.grey::after {
  --_color: lightgray;
}
#header-nav .text-links a {
  font-size: 1rem;
}
#header-nav .img-links {
  gap: 1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  direction: rtl;
  font-size: 13px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  align-items: stretch;
  flex-wrap: nowrap;
}
#header-nav .img-links li {
  height: clamp(var(--minHeight), var(--prefHeight) * var(--ratio) * var(--imgRatio), var(--maxHeight));
  width: clamp(var(--minHeight) * var(--ratio) * var(--imgRatio), var(--prefHeight) * var(--ratio) * var(--imgRatio), var(--maxHeight) * var(--ratio) * var(--imgRatio));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0 4px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  --imgRatio: 1.125;
}
#header-nav .img-links img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: scale 200ms ease-in-out;
}
#header-nav .img-links a {
  display: grid;
  place-content: center;
  height: 100%;
  width: 100%;
  background-color: var(--col-background);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0 4px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background-image: var(--imgUrl);
  background-size: clamp(var(--minHeight), var(--prefHeight) * var(--ratio) * var(--imgRatio), var(--maxHeight));
  transition: background-size 200ms ease-in-out;
  background-position: center;
}
#header-nav .img-links a:hover {
  background-size: calc(clamp(var(--minHeight), var(--prefHeight) * var(--ratio) * var(--imgRatio), var(--maxHeight)) * 1.1);
}
#header-nav .img-links a:hover img {
  scale: 1.075;
}
@media (max-width: 1000px) {
  #header-nav {
    justify-self: end;
  }
}
#header-nav > ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: var(--pad-big);
  justify-content: space-evenly;
  gap: var(--pad-light);
  column-gap: 8em;
  padding-inline: 4em;
  font-size: 1.2rem;
}
@media (max-width: 1000px) {
  #header-nav > ul {
    display: block;
    height: fit-content;
    padding-inline: 0;
  }
  #header-nav > ul li {
    text-align: end;
  }
}

#header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
#header-actions .custom-switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  --color: #3a3a3a;
}
#header-actions .custom-switch .moon svg {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}
#header-actions .custom-switch .sun svg {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 1;
}
#header-actions .custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
#header-actions .custom-switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--color);
  transition: 0.4s;
  border-radius: 300px;
}
#header-actions .custom-switch .slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  border-radius: 20px;
  left: 3px;
  bottom: 3px;
  z-index: 2;
  background-color: var(--dark);
  transition: 0.4s;
}
#header-actions .custom-switch #theme-switch:checked + .slider {
  background-color: #cecece;
}
#header-actions .custom-switch #theme-switch:checked + .slider::before {
  transform: translate(29px);
  background: var(--offwhite);
}
#header-actions .custom-switch #theme-switch:focus + .slider {
  box-shadow: 0 0 1px #cecece;
}
#header-actions .outline-none {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}
#header-actions .border-none {
  border-style: none !important;
}
#header-actions .cursor-pointer {
  cursor: pointer !important;
}
#header-actions .block {
  display: block !important;
}
#header-actions .text-gray-500 {
  color: rgb(107, 114, 128) !important;
}
#header-actions .w-\[20px\] {
  width: 20px !important;
}
#header-actions .h-\[20px\] {
  height: 20px !important;
}
#header-actions .text-offwhite {
  color: rgb(242, 242, 242) !important;
}
#header-actions .w-0\[19px\] {
  width: 19px !important;
}
#header-actions .h-\[19px\] {
  height: 19px !important;
}
#header-actions #theme-switch {
  border-radius: 0;
  position: absolute;
  border-style: none !important;
}
#header-actions #theme-switch:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

main {
  padding-inline: var(--pad-big);
}

/* default */
.slider-main {
  margin-top: 0.4rem;
  width: 100%;
}
.slider-main .splide__track {
  height: 100%;
}
.slider-main .splide__slide {
  border-radius: 1.25rem;
}
.slider-main .splide__slide:nth-child(odd) {
  background-color: darkcyan;
}
.slider-main .splide__slide:nth-child(even) {
  background-color: darkolivegreen;
}

/* general */
.btn {
  font-family: PPMori, sans-serif;
  font-weight: initial;
  font-size: 1rem;
}

.btn-primary {
  --col-primary: #000000;
  --col-secondary: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  line-height: var(--btn-height);
  background-color: var(--col-primary);
  color: var(--col-secondary);
  width: fit-content;
  padding-inline: 1.25rem;
  padding-block: 0.4rem;
  box-sizing: border-box;
  border-radius: var(--btn-height);
  border: solid 2px var(--col-primary);
  transition: all 200ms ease-in-out;
}
.btn-primary:hover {
  background-color: var(--col-secondary);
  color: var(--col-primary);
}

/*# sourceMappingURL=layout.css.map */
