@font-face {
    font-family: 'EduMarfa';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/EduMarfa-Regular.otf') format('opentype'),
         url('fonts/EduMarfa-Regular.woff') format('woff'),
         url('fonts/EduMarfa-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'EduMarfa';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/EduMarfa-RegularItalic.otf') format('opentype'),
         url('fonts/EduMarfa-RegularItalic.woff') format('woff'),
         url('fonts/EduMarfa-RegularItalic.woff2') format('woff2');
}

@font-face {
    font-family: 'EduMarfa';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/EduMarfa-Semibold.otf') format('opentype'),
         url('fonts/EduMarfa-Semibold.woff') format('woff'),
         url('fonts/EduMarfa-Semibold.woff2') format('woff2');
}

@font-face {
    font-family: 'EduMarfa';
    font-style: italic;
    font-weight: 600;
    src: url('fonts/EduMarfa-SemiboldItalic.otf') format('opentype'),
         url('fonts/EduMarfa-SemiboldItalic.woff') format('woff'),
         url('fonts/EduMarfa-SemiboldItalic.woff2') format('woff2');
}

:root {
  --lw-light-purple: #b179f8;
  --lw-purple: #7d01ff;
  --lw-dark-purple: #06004b;

  --lw-darker-grey: #2c2724;
  --lw-dark-grey: #797979;
  --lw-mid-grey: #8d8d8d;
  --lw-light-grey: #d9d9d9;
  --lw-lighter-grey: #f2f2f2;

  --lw-black: #000;
  --lw-white: #fff;

  --text-color: var(--lw-black); /* general text color */
  --prim-color: var(--lw-purple); /* primary color */
  --link-color: var(--lw-dark-purple); /* general links color */

  --prbg-color: var(--lw-lighter-grey); /* primary background */
  --mnbg-color: var(--lw-white); /* menu background */
  --ftbg-color: var(--lw-light-grey); /* footer background */
}

* {
  box-sizing: border-box;
}

::selection {
  color: var(--lw-white);
  background: var(--lw-purple);
}

html, body {
  width: 100%;
  /* overscroll-behavior: none; */
}

body {
  font-family: 'EduMarfa', sans-serif;
  background-color: var(--prbg-color);
  margin: 0;
  /* display: flex;
  flex-direction: column; */
  min-height: 100vh;
}

a, .link {
  text-decoration: none;
  color: var(--link-color);
  cursor: pointer;
}

a:hover, .link:hover {
  color: var(--lw-purple);
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--lw-darker-grey);
}

p > a,
p > .link {
  color: var(--lw-purple);
}

h1 {
  font-weight: lighter;
  font-size: 8.3rem;
  letter-spacing: -0.55rem;
  line-height: 8.9rem;
  margin: 0;
}

h2 {
  font-weight: lighter;
  font-size: 4.1rem;
  letter-spacing: -0.25rem;
  /* line-height: 4.5rem; */
}

h3 {
  font-size: 3rem;
  font-weight: lighter;
  letter-spacing: -0.15rem;
}

h4 {
  letter-spacing: 0.09rem;
  color: var(--lw-darker-grey);
}

@media (max-width: 1024px) { /* smaller than 1024/tablet */
  h1 {
    font-size: 13vw;
    letter-spacing: -0.766vw;
    line-height: 13.86vw;
  }

  h3 {
    font-size: 2rem;
    letter-spacing: -0.099rem;
  }
}

textarea, input, select, .basic-button {
  font-size: 1rem;
  font-family: 'EduMarfa', sans-serif;
  font-weight: lighter;

  width: 100%;
  padding: 23px 15px;
  background-color: var(--prbg-color);
  border: 2px solid var(--lw-mid-grey);
  margin-top: 22px;
}

.basic-button:hover {
  background-color: var(--lw-purple);
  border: 2px solid var(--lw-purple);
  color: var(--lw-white);
  cursor: pointer;
}

/*
  .-.-.   .-.-.   .-.-.   .-.-.   .-.-.   .-.-.   .-.-.   .-.-
 / / \ \ / / \ \ / / \ \ / / \ \ / / \ \ / / \ \ / / \ \ / / \  MISC
`-'   `-`-'   `-`-'   `-`-'   `-`-'   `-`-'   `-`-'   `-`-'
*/

#cart-icon {
  position: fixed;
  top: 54px;
  right: 103px;
  z-index: 10001;
  background-color: transparent;
  background-image: url("/images/cart-black.png");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--lw-black);
  font-weight: bold;
  width: 32px;
  height: 32px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#cart-icon:hover {
  color: var(--lw-white);
  background-color: var(--lw-purple);
  background-image: url("/images/cart-white.png");
}

#cart-icon > span {
  display: inline-block;
  transform: translate(1px, -6px);
}


#svg-lines {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -15;
  /* width: 100vw; */
  /* height: 100vh; */
}

@keyframes loader {
  0% {
   transform: rotate(0deg);
  }
  35% {
   transform: rotate(90deg);
  }
  100% {
   transform: rotate(90deg);
  }
}

@keyframes colors {
  0% {
   background-color: #b179f8;
  }
  25% {
   background-color: #3b6393;
  }
  50% {
   background-color: #a5ddc2;
  }
  75% {
   background-color: #e5ac8c;
  }
  100% {
   background-color: #b179f8;
  }
}

.loader {
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
}

.loader > div {
  width: 50px;
  height: 50px;
  background: red;
  animation: loader 1s infinite ease-out,
             colors 4s infinite linear;
}

.bg-img {
  background-size: cover;
  /* background-repeat: no-repeat; */
  /* background-position: 50% 50%; */
  /* background-size: 200%; */
}

.spacer {
  width: 100%;
  height: 100vh;
}

.row {
  display: flex;
  justify-content: space-between;
}

.ptxt {
  color: var(--lw-purple);
  font-size: 1.3rem;
}

.period {
  color: var(--prim-color);
  font-size: 148px;
}

@media (max-width: 704px) {
  .period {
    font-size: 15vw;
  }
}

.zoom-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.zoom-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.zoom-img:hover img {
  transform: scale(1.2);
}

/*
  .-.-.   .-.-.   .-.-.   .-.-.   .-.-.   .-.-.   .-.-.   .-.-
 / / \ \ / / \ \ / / \ \ / / \ \ / / \ \ / / \ \ / / \ \ / / \  PIXEL BOX
`-'   `-`-'   `-`-'   `-`-'   `-`-'   `-`-'   `-`-'   `-`-'
*/

.pixel-box {
  max-width: 400px;
  position: relative;
}

.pixel-box > .pixel {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.pixel-box > p {
  padding-left: 70px;
  margin-bottom: 22px;
}

/* reply messages after submit */
.reply {
  float: right;
  margin-top: 30px;
  padding-right: 10px;
  opacity: 0;
  transition: opacity 1s;
  color: var(--prim-color);
}

.message {
  opacity: 0;
  transition: opacity 1s;
  color: var(--prim-color);
}

/*
  .-.-.   .-.-.   .-.-.   .-.-.   .-.-.   .-.-.   .-.-.   .-.-
 / / \ \ / / \ \ / / \ \ / / \ \ / / \ \ / / \ \ / / \ \ / / \  FOOTER
`-'   `-`-'   `-`-'   `-`-'   `-`-'   `-`-'   `-`-'   `-`-'
*/

footer {
  display: flex;
  justify-content: space-between;
  background-color: var(--ftbg-color);
  padding: 66px 47px 150px 47px;
}

@media (max-width: 626px) {
  footer {
    flex-direction: column-reverse;
    padding:
  }
}

@media (max-width: 400px) {
  footer {
    padding: 66px 20px 150px 20px;
  }
}

footer .wordmark-desktop {
  width: 242px;
}

footer .wordmark-mobile {
  width: 242px;
  max-width: 100%;
  margin-bottom: 70px;
  display: none;
}

@media (max-width: 626px) {
  footer .wordmark-desktop {
    display: none;
  }

  footer .wordmark-mobile {
    display: block;
  }
}


footer .connect-text {
  font-size: 26px;
  letter-spacing: -2px;
  margin-top: 104px;
  margin-bottom: 16px;
}

footer .connect-social {
  width: 109px;
  display: flex;
  justify-content: space-between;
}

footer nav > a {
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin: 0px 87px 34px 0px;
}

footer nav > a:hover {
  color: var(--prim-color);
}
