@font-face {
  font-family: 'Open Sans';
  src: url('/assets/fonts/Opensans-Regular.woff2') format('woff2');
  font-weight: regular;
}
@font-face {
  font-family: 'Open Sans';
  src: url('/assets/fonts/OpenSans-Bold.woff2') format('woff2');
  font-weight: bold;
}
@font-face {
  font-family: 'Recoleta';
  src: url('/assets/fonts/Recoleta-Medium.woff2') format('woff2');
  font-weight: medium;
}


*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
::-moz-selection {
  /* color: var(--color-vantablack); */
  /* background: var(--color-primary); */
}
::selection {
  /* color: var(--color-vantablack); */
  /* background: var(--color-primary); */
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.4;
  /* background-color: var(--background-primary); */
  color: #0d0d0d;
  text-align: left;
  transition: 500ms ease-in-out, color 200ms ease;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
  font-variant-numeric: tabular-nums;
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body {
  width: 100%;
  height: 100%;
}
page-container {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
page-body {
  padding-top: 64px;
  padding-bottom: 56px;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  color: #0d0d0d;
  font-weight: bold;
  text-align: left;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
@media (max-width: 31.25rem) {
  h1 {
    font-size: 2.25rem;
  }
}
a, p, li {
  color: #0d0d0d;
  font-weight: medium;
  margin: 0 0 1rem 0;
}
a {
  text-decoration: none;
  /* color: var(--color-radiance-blue); */
  transition: .2s all;
}
a:hover {
  
}
hr {
  border: none;
  /* border-top: 1px solid var(--color-midnight-black); */
  width: 100%;
}
strong {
  font-weight: bold;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
section {
  margin-bottom: 80px;
}
ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1rem;
  margin-left: -1rem;
}
ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}
ul li::marker {
  /* color: var(--color-primary); */
}
ul li {
  margin-bottom: 1rem;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
select {
  word-wrap: normal;
}
textarea {
  overflow: auto;
  resize: vertical;
}
.container {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 36rem) {
  .container {
    max-width: 33.75rem;
  }
}
@media (min-width: 48rem) {
  .container {
    max-width: 45rem;
  }
}
@media (min-width: 62rem) {
  .container {
    max-width: calc(1080px + 48px);
  }
}
.container-title {
  max-width: 37.5rem;
}
.container-text {
  max-width: 38.5rem;
}
.lazy-load {
  filter: blur(.5rem);
  -webkit-filter: blur(.5rem);
  -moz-filter: blur(.5rem);
  -o-filter: blur(.5rem);
  -ms-filter: blur(.5rem);
}





.return-to-top {
  position: fixed;
  cursor: pointer;
  bottom: .5rem;
  right: 1.25rem;
  background-color: #0d0d0d;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  text-decoration: none;
  border-radius: 50%;
  z-index: 800;
  transition: .3s ease;
  animation: overshoot 0.8s ease;
}

@keyframes overshoot {
  0% { transform: translateY(100%); opacity: 0; }
  60% { transform: translateY(-60%); opacity: 1; }
  100% { transform: translateY(0); }
}

.return-to-top img {
  height: 1.25rem;
  width: 1.25rem;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .2s ease;
}

@media(hover: hover) {
  .return-to-top:hover img {
    top: 35%;
  }
}

.return-to-top-hide {
  animation: none;
  opacity: 0;
  pointer-events: none;
  bottom: 0;
  transform-origin: center;
}

.return-to-top-show {
  opacity: 1;
}








/*=============================== Header navigation menu ================================*/
.navigation {
  display: flex;
  align-items: center;
  max-width: 1248px;
  padding: 0 24px;
  width: 100%;
  position: absolute;
  top: 16px;
  z-index: 900;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-between;
}
.navigation-logo {
  z-index: 1005;
}
.navigation-logo img {
  height: 32px;
  width: auto;
}
.main-links li:first-child {
  /* display: none; */
}
/* .nav-links {
  right: 0;
  z-index: 6;
} */
.nav-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  gap: 32px;
  padding: 0;
}
.nav-links ul li {
  list-style: none;
  margin: 0;
}
.nav-links ul li a{
  color: rgb(144, 146, 152);
  font-weight: bold;
  font-size: 1rem;
}

/* .nav-links .main-links li:nth-child(2) {
  margin-left: 0;
}
.nav-links .main-links li a:first-child {
  margin-left: 0;
}
.nav-links .main-links li:last-child {
  margin-right: 0;
}
.nav-links .main-links li a:last-child {
  margin-right: 0;
}
.nav-links .main-links li:nth-last-child(2) {
  margin-right: 0;
} */
/* .nav-links ul.main-links {
  width: 100%;
} */
.burger-container {
  display: none;
}
@media(max-width: 53.125rem) {
  /* .navigation {
    border-bottom: black;
    height: 3rem;
  } */
  /* .navigation-logo {
    position: absolute;
    height: 6.25rem;
    width: auto;
    top: 1rem;
    left: 1rem;
    z-index: 5;
  } */
  /* .navigation img {
    height: 4.5rem;
    width: auto;
    transition: .3s all;
  } */
  .burger-container {
    position: absolute;
    width: 1.25rem;
    height: 1.5625rem;
    right: 1.5rem;
    top: 12px;
    z-index: 1002;
    display: block;
  }
  .burger-container:hover {
    cursor: pointer;
  }
  .burger-container span {
    position: absolute;
    height: .125rem;
    border-radius: .625rem;
    width: 100%;
    background: black;
    z-index: 100;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
  }
  .bottom {
    top: .5rem;
  }
  .burger-container.active .top {
    -webkit-transform: translateY(.25rem) translateX(0) rotate(45deg);
    transform: translateY(.25rem) translateX(0) rotate(45deg);
    background: rgb(0, 0, 0);
  }
  .burger-container.active .middle {
    opacity: 0;
  }
  .burger-container.active .bottom {
    -webkit-transform: translateY(-.25rem) translateX(0) rotate(-45deg);
    transform: translateY(-.25rem) translateX(0) rotate(-45deg);
    background: rgb(0, 0, 0);
  }
  .fixed {
    position: fixed;
  }
  .overlay {
    position: fixed;
    background: rgba(255, 255, 255);
    width: 100%;
    height: 100vh;
    left: 0;
    z-index: 998;
    top: -16px;
    opacity: 0;
    overflow-y: visible;
    visibility: hidden;
    overflow-x: visible;
    -webkit-transition: 150ms ease-in-out;
    transition: 150ms ease-in-out;
  }
  .overlay.open {
    position: fixed;
    height: 100vh;
    opacity: .99;
    visibility: visible;
    -webkit-backdrop-filter: blur(.75rem);
    backdrop-filter: blur(.75rem);
  }




  .nav-links ul {
    flex-direction: column;
  }




  
  


  .main-links li:first-child {
    justify-content: center;
    margin: auto;
    margin-bottom: 24px;
  }
  .main-links li a img {
    height: 32px;
  }
  .nav-links {
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 1001;
    text-align: center;
    transition: .3s all;
    right: 0;
  }
  .nav-links ul {
    margin-top: 56px;
    padding: 0;
    height: 60vh;
    visibility: hidden;
  }
  .nav-links ul li {
    /* float: none; */
    /* display: table; */
    /* height: 5%; */
    margin: auto;
    /* vertical-align: middle; */
    transition: 0s all;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2.5rem);
    padding: 0;
  }
  .nav-links .main-links li:nth-child(2) {
    margin-left: auto;
  }
  .nav-links .main-links li a:first-child {
    margin-left: auto;
  }
  .nav-links .main-links li:last-child {
    margin-right: auto;
  }
  .nav-links .main-links li a:last-child {
    margin-right: auto;
  }
  .nav-links .main-links li:nth-last-child(2) {
    margin-right: auto;
  }
  .nav-links.active ul li {
    opacity: 1;
    visibility: visible;
    transition: .5s all;
  }
  .nav-links.active ul li:nth-child(1) {
    transition-delay: .2s;
    transform: translateY(0);
  }
  .nav-links.active ul li:nth-child(2) {
    transition-delay: .3s;
    transform: translateY(0);
  }
  .nav-links.active ul li:nth-child(3) {
    transition-delay: .4s;
    transform: translateY(0);
  }
  .nav-links.active ul li:nth-child(4) {
    transition-delay: .5s;
    transform: translateY(0);
  }
  .nav-links.active ul li:nth-child(5) {
    transition-delay: .6s;
    transform: translateY(0);
  }
  .nav-links.active ul li:nth-child(6) {
    transition-delay: .7s;
    transform: translateY(0);
  }
  .nav-links.active ul li:nth-child(7) {
    transition-delay: .8s;
    transform: translateY(0);
  }
}
/* underline animation */
.main-links li a::after {
  content: "";
  display: block;
  position: relative;
  top: .25rem;
  height: 2px;
  width: 0;
  background: transparent;
  -webkit-transition: all .35s;
  transition: all .35s;
  background: rgb(183, 185, 197);
  left: 50%;
  border-radius: .25rem;
}
.main-links li a:hover::after {
  width: 100%;
  left: 0;
}

#home-active .nav-home,
#collection-men-active .nav-heren,
#collection-women-active .nav-dames,
#collection-moodbook-active .nav-moodbook,
#collection-skoll-active .nav-skoll {
  color: black;
}

/*------------------------------------------------------ Footer ----------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
#footer {
  background-color: #F6F8FA;
  border-top: 1px solid rgb(226, 228, 239);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  padding: 40px 48px 16px 48px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: auto;
}
.footer-main-links {
  display: flex;
  gap: 80px;
}
.footer-main .footer-main-links div {
  display: flex;
  flex-direction: column;
}
.footer-main h5 {
  font-size: 1rem;
}
.footer-main a {
  font-size: .875rem;
  color: #6e6d7a;
}
.footer-main a:hover {
  color: black;
}


.logo-footer img {
  height: 40px;
}

.logo-socials {
  display: flex;
  gap: 24px;
  flex-direction: row !important;
}
.logo-socials img {
  height: 20px;
}


.footer-sub {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: .875rem;
}
.footer-sub p {
  color: #6e6d7a;
}

.footer-sub a {
  color: #ec7f0a;
  border-bottom: 1px solid #ec7f0a;
}
@media (max-width: 1000px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .footer-main-links {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-main-links div {
    align-items: center;
  }
}