@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-Italic-VariableFont_wght.woff2") format("woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 85rem;
  margin: 0px auto;
}

.header {
  height: 100vh;
  background-color: black;
  position: relative;
  overflow: hidden;
}

.back__home {
  text-decoration: none;
  width: 15rem;
}

.navigation {
  position: fixed;
  z-index: 10000;
  height: 9rem;
  width: 100%;
  transition: 0.5s;
}
@media (max-width: 36em) {
  .navigation {
    height: 5rem;
  }
}

.navigation.sticky {
  background-color: black;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.story__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  /* bei Bugs aktivieren */
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) and ((-o-object-position: center center) or (object-position: center center)) {
  .story__video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}

.navigation__logo {
  position: absolute;
  height: auto;
  width: 15rem;
  left: calc(50% - 7.5rem);
  top: 2rem;
  z-index: 1;
}
@media (max-width: 36em) {
  .navigation__logo {
    width: 12rem;
    left: calc(50% - 6rem);
  }
}

.navigation__image {
  height: auto;
  width: 15rem;
}
@media (max-width: 36em) {
  .navigation__image {
    width: 12rem;
  }
}

.navigation__ul {
  position: absolute;
  color: white;
  width: 30rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  left: calc(50% - 15rem);
  top: 7rem;
  font-size: 0.8rem;
  transition: all 0.3s;
}
@media (max-width: 36em) {
  .navigation__ul {
    display: fixed;
    width: 100%;
    flex-direction: column;
    height: 100vh;
    justify-content: flex-start;
    background-color: black;
    top: 0rem;
    left: -100%;
    padding-left: 2rem;
    padding-top: 10rem;
    transition: all 0.3s;
    font-size: 1rem;
  }
}

.navigation__li {
  padding: 0rem 0rem 1.5rem 0rem;
  transition: all 0.3s;
  min-width: 6rem;
}
@media (max-width: 36em) {
  .navigation__li {
    display: block;
  }
}

.navigation__link {
  text-decoration: none;
  color: white;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.navigation__li:hover .navigation__dropdown-ul {
  display: block;
  opacity: 1;
  animation: fadeInFromNone 0.5s ease-out;
}
@media (max-width: 36em) {
  .navigation__li:hover .navigation__dropdown-ul {
    animation: none;
  }
}

@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.link__icon {
  color: white;
  position: absolute;
  font-size: 1.2rem;
}

.navigation__dropdown-ul {
  background-color: white;
  border: 0.1rem solid rgb(245, 245, 245);
  position: absolute;
  margin-top: 1.5rem;
  width: 13rem;
  height: 8rem;
  opacity: 0;
  display: none;
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.1);
  margin-left: -3rem;
  transition: all 0.3s;
}
@media (max-width: 36em) {
  .navigation__dropdown-ul {
    margin-left: 0;
    position: unset;
    min-width: 15rem;
    max-width: 25rem;
    height: auto;
    display: block;
    opacity: 1;
    background-color: black;
    color: white;
    margin: 1rem 2rem 0 1rem;
  }
}

.navigation__dropdown-li {
  list-style: none;
  margin: 0.5rem 0;
  font-weight: 300;
}

.navigation__dropdown-link {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}
.navigation__dropdown-link:hover {
  color: rgb(100, 100, 100);
}
@media (max-width: 36em) {
  .navigation__dropdown-link {
    color: white;
  }
}

.header__button {
  position: absolute;
  font-weight: 500;
  text-transform: uppercase;
  background-color: rgb(0, 0, 0);
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  width: 10rem;
  top: 50%;
  text-align: center;
  left: calc(50% - 5rem);
  transition: 0.3s;
}
.header__button:hover {
  background-color: rgb(100, 100, 100);
}

.menu__label {
  color: white;
}

.check__button {
  position: absolute;
  font-size: 2rem;
  float: right;
  right: 1.5rem;
  top: 1.3rem;
  cursor: pointer;
  display: none;
  z-index: 1000000000000;
}
@media (max-width: 36em) {
  .check__button {
    display: block;
  }
}

#check {
  display: none;
}

#check:checked ~ .navigation__ul {
  left: 0;
}

.footer {
  min-height: 20rem;
  background-color: black;
  color: white;
  padding: 5rem 2rem 3rem 2rem;
}
@media (max-width: 36em) {
  .footer {
    padding: 2rem 2rem 2rem 2rem;
  }
}

.footer__flex {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 3rem;
}
@media (max-width: 36em) {
  .footer__flex {
    flex-direction: column;
  }
}

.footer__box {
  display: flex;
  flex-direction: column;
}
@media (max-width: 36em) {
  .footer__box {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
}

.footer__heading {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer__link {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgb(100, 100, 100);
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
}
.footer__link:hover {
  color: rgb(100, 100, 100);
}
@media (max-width: 36em) {
  .footer__link {
    text-align: center;
    display: inline-block;
    margin: 0 auto 0.5rem auto;
  }
}

.footer__text {
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.footer__newsletter {
  width: 35%;
  margin-left: 5rem;
}
@media (max-width: 36em) {
  .footer__newsletter {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

.footer__button {
  text-decoration: none;
  color: black;
  background-color: white;
  padding: 1rem 2rem;
  transition: all 0.3s;
}
.footer__button:hover {
  background-color: rgb(235, 235, 235);
}

.footer__line {
  content: "";
  display: block;
  background-color: rgb(100, 100, 100);
  height: 1px;
  width: 90%;
  margin: 0 auto;
}

.footer__line-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 2rem 6rem 1rem 6rem;
}

.footer__sociallink {
  text-decoration: none;
  padding: 0.2rem 0.2rem;
}

.footer__icon {
  font-size: 1.6rem;
  color: rgb(150, 150, 150);
}
.footer__icon:hover {
  color: white;
}

.footer__icon-payment {
  width: 3rem;
}

.paypal {
  width: 2rem;
}

.copyright {
  color: rgb(150, 150, 150);
  width: 88%;
  margin: 0 auto;
  font-size: 0.8rem;
}
@media (max-width: 48em) {
  .copyright {
    text-align: center;
  }
}

.copyright__link {
  text-decoration: none;
  color: rgb(150, 150, 150);
}
.copyright__link:hover {
  color: white;
}

@media (max-width: 48em) {
  .footer__payment {
    display: none;
  }
}

@media (max-width: 48em) {
  .footer__socials {
    margin: 0 auto;
    width: 7rem;
  }
}

@media (max-width: 48em) {
  .drei {
    display: none;
  }
}

.season__flex {
  display: flex;
  flex-direction: row;
}
@media (max-width: 36em) {
  .season__flex {
    flex-direction: column;
  }
}

.season__link {
  text-decoration: none;
  text-transform: uppercase;
  color: black;
  width: 33.333333vw;
  height: 30vw;
  background-color: rgb(100, 100, 100);
}
@media (max-width: 36em) {
  .season__link {
    width: 100vw;
    height: 50vh;
  }
}

.season__box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.springsummer {
  background-image: url(../images/springsummer.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.fallwinter {
  background-image: url(../images/fallwinter.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.lookbook {
  background-image: url(../images/lookbook.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.season__box-heading {
  font-weight: 200;
  font-size: 1rem;
  text-align: center;
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
  color: white;
}

.itroducing {
  height: 100vh;
  background-image: url(../images/introducing.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  justify-content: center;
}

.introducing__box {
  width: 20rem;
  height: 20rem;
  margin: auto auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.introducing__heading {
  line-height: 2rem;
  font-weight: 200;
  color: white;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  font-size: 1rem;
  text-align: center;
}

.introducing__button {
  font-weight: 300;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  padding: 1rem 3rem;
  color: black;
  background-color: white;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0 auto;
  transition: all 0.3s;
}
.introducing__button:hover {
  background-color: rgb(235, 235, 235);
}

.product__slider {
  padding: 5rem 0;
  text-transform: uppercase;
  text-align: center;
}

.product__heading {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.wrapper {
  max-width: 1100px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.wrapper:hover i {
  opacity: 1;
  transition: all 0.3s;
}

#right {
  transform: translateY(-50%) translateX(20px);
}

#left {
  transform: translateY(-50%) translateX(-20px);
}

.wrapper:hover #right,
.wrapper:hover #left {
  transition: all 0.3s;
  transform: translateY(-50%) translateX(0px);
}

.wrapper i {
  color: black;
  top: 43%;
  height: 60px;
  width: 60px;
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  text-align: center;
  line-height: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  opacity: 0;
  transition: all 0.3s;
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
  left: -22px;
}

.wrapper i:last-child {
  right: -22px;
}

.wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.3333333333% - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel .card {
  scroll-snap-align: start;
  height: 30rem;
  list-style: none;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
}

.card__header {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
}

.price {
  color: rgb(98, 98, 98);
  font-size: 0.9rem;
  margin-top: 0.3rem;
  text-align: center;
}

.product__link {
  text-decoration: none;
  color: black;
  width: 100%;
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  height: 30rem;
}

.image {
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */ /* IE/Edge */
  user-select: none;
}

.image01 {
  background-image: url(../images/image01__front.webp);
  width: 100%;
  height: 85%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: all 0.3s;
}
.image01:hover {
  background-image: url(../images/image01__back.webp);
}

.image02 {
  background-image: url(../images/image02__front.webp);
  width: 100%;
  height: 85%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: all 0.3s;
}
.image02:hover {
  background-image: url(../images/image02__back.webp);
}

.image03 {
  background-image: url(../images/image03__front.webp);
  width: 100%;
  height: 85%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: all 0.3s;
}
.image03:hover {
  background-image: url(../images/image03__back.webp);
}

.image04 {
  background-image: url(../images/image04__front.webp);
  width: 100%;
  height: 85%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: all 0.3s;
}
.image04:hover {
  background-image: url(../images/image04__back.webp);
}

.image05 {
  background-image: url(../images/image05__front.webp);
  width: 100%;
  height: 85%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: all 0.3s;
}
.image05:hover {
  background-image: url(../images/image05__back.webp);
}

.image06 {
  background-image: url(../images/image06__front.webp);
  width: 100%;
  height: 85%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: all 0.3s;
}
.image06:hover {
  background-image: url(../images/image06__back.webp);
}

.image07 {
  background-image: url(../images/image07__front.webp);
  width: 100%;
  height: 85%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: all 0.3s;
}
.image07:hover {
  background-image: url(../images/image07__back.webp);
}

.image08 {
  background-image: url(../images/image08__front.webp);
  width: 100%;
  height: 85%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: all 0.3s;
}
.image08:hover {
  background-image: url(../images/image08__back.webp);
}

.image09 {
  background-image: url(../images/image09__front.webp);
  width: 100%;
  height: 85%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: all 0.3s;
}
.image09:hover {
  background-image: url(../images/image09__back.webp);
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc(50% - 9px);
  }
}
@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}
.about {
  background-color: black;
}
@media (max-width: 85em) {
  .about {
    padding: 0 1rem;
  }
}

.about__header {
  height: auto;
}

.about__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding-top: 5rem;
  height: 100vh;
  gap: 3rem;
}
@media (max-width: 85em) {
  .about__flex {
    padding-top: 10rem;
    height: auto;
  }
}
@media (max-width: 62em) {
  .about__flex {
    flex-direction: column-reverse;
    padding-top: 15rem;
  }
}
@media (max-width: 36em) {
  .about__flex {
    padding-top: 8rem;
  }
}

.about__box {
  text-align: center;
  width: 50%;
}
@media (max-width: 62em) {
  .about__box {
    width: 100%;
  }
}

.about__image {
  width: 100%;
}

.about__text {
  font-size: 1rem;
  letter-spacing: 0.15rem;
}
@media (max-width: 36em) {
  .about__text {
    font-size: 0.7rem;
  }
}

.about__handle {
  margin-top: 2rem;
  width: 13rem;
}

/** Breakpoints */
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler *//*# sourceMappingURL=main.css.map */