* {
  box-sizing: border-box;
}

#page-loader {
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 900;
  font-style: italic;
}

body, html {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.4em;
}

a:not(.btn):link, a:not(.btn):visited {
  color: inherit;
}

a:not(.btn):hover {
  background: rgba(100,100,100,.3);
  box-shadow: 0 0 0 5px rgba(100,100,100,.3);
  border-radius: 5px;
}

.hero {
  background:url(images/hero2.png);
  background-color: #111111;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

strong {
  font-weight: 700;
}

.hero-content {
  position: relative;
  color: #fff;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
}

.hero-txt {
  background: #000;
  padding: 2em;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  text-align: left;
  position: relative;
}

.sale-item {
  border-bottom: 1px solid #efefef;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.loader {
  background: #ccc;
  line-height: 0;
  position: relative;
}

.loader::before {
  content:'';
  width: 40px;
  height: 40px;
  border: 3px dotted #999;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
  transform-origin: center;
  animation: spin 4s linear infinite;  
}

@keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

.sale-item {
  max-width: 100%;
  padding: 3rem;
  margin: 0 auto;
  width: 1400px;
}

.sale-item__img {
  position: relative;
  width: 50%;
}

.sale-item__img img,
.sale-item__img video {
  filter: brightness(.95);
  width: 100%;
  height: auto;
  position: relative;
  transition: .2s;
}

.sale-item__img::after {
  content:'';
  position: absolute;
  background: #fff;
  width: 20px;
  height: 20px;
  bottom: 30px;
  right: 30px;
  -webkit-clip-path: url(#my-clip-path);
  clip-path: url(#my-clip-path);
  transform-origin: center;
  transition: .2s;
  pointer-events: none;
}

@media screen and (min-width: 500px){ 
  .sale-item__img.video-playing::after {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  video:hover {
    box-shadow: 0 0 0 3px #fff, 0 0 0 10px #000000;
  }
}

.sale-item__description {
  width: 50%;
  padding: 0 0 0 3em;
  font-size: .95em;
}

.sold .sale-item__description::before {
  content: 'SOLD ';
  color: red;
  font-weight: 900;
  font-style: italic;
}

.sold .sale-item__img {
  filter: grayscale(1);
}

.sold .sale-item__img:hover {
  filter: grayscale(0);
}

h1 {
  font-size: 8vw;
  line-height: .9em;
  margin-bottom: 0.25em;
  font-weight: 900;
  font-style: italic;
}

h2 {
  background: #fff;
  max-width: 100%;
  padding: 0 3rem;
  margin: 0 auto;
  width: 1400px;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1em;
}

h2 .date {
  font-style: normal;
  font-weight: normal;
  color: #ccc;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4em;
  padding-bottom: 2rem;
  font-weight: 600;
}

hr {
  border: none;
  height: 1px;
  background: #efefef;
  margin: 2rem 0;
}

li {
  padding-left: 1em;
  position: relative;
}

ul li:before {
  content:'';
  width: 8px;
  height: 2px;
  background: #000;
  position: absolute;
  border-radius: 3px;
  top: .8em;
  margin-top: -2px;
  left: 0;
}

ul li:after {
  content:'';
  width: 6px;
  height: 6px;
  border: 2px solid #000;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  position: absolute;
  left: 0px;
  top: .8em;
  margin: -5px 0 0 -1px;
}

.fineprint {
  font-size: .825rem;
}

.btn {
  display: inline-block;
  padding: 1.5em 2em;
  margin: 0 1em .5em 0;
  white-space: nowrap;
}

.btn-primary {
  background: #000;
  box-shadow: 0 2px 30px #ffffff36;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.btn-secondary {
  box-shadow: inset 0 0 0 2px #fff;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-primary:link, .btn-primary:visited
.btn-secondary:link, .btn-secondary:visited {
  background: #000;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: rgb(255,0,0);
  animation: glitch3 1s infinite step-end;
}

.btn-primary:hover span,
.btn-secondary:hover span {
  color: #000;
  position: relative;
  z-index: 2;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  animation: glitch1 1s infinite step-end;
  content:'';
  background: rgb(0,0,255);
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 2px;
  left: 2px;
  mix-blend-mode: screen;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  animation: glitch2 2s infinite step-end;
  content:'';
  background: rgb(0,255,0);
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: -2px;
  left: -2px;
  mix-blend-mode: screen;
}

.btn-primary-invert:hover span {
  color: #fff;
}

.btn-primary-invert:active {
  background: blue;
}

.btn-primary-invert:hover::after,
.btn-primary-invert:hover::before {
  mix-blend-mode: multiply;
}

@keyframes glitch1 {
  0% {transform: translate(0px, 0px)}
  10% {transform: translate(2px, 2px)}  
  20% {transform: translate(-2px, -2px)}  
  30% {transform: translate(-2px, 3px)}  
  35% {transform: translate(-1px, 3px)}
  60% {transform: translate(-2px, 1px)}
  80% {transform: translate(-1px, -1px)}
  90% {transform: translate(-1px, 0px)}
  100% {transform: translate(-2px, 1px)}
}

@keyframes glitch2 {
  0% {transform: translate(4px, 0px)}
  5% {transform: translate(2px, -2px)}  
  20% {transform: translate(1px, -1px)}  
  30% {transform: translate(2px, 1px)}  
  36% {transform: translate(0px, 2px)}
  42% {transform: translate(-1px, -1px)}
  82% {transform: translate(0px, -2px)}
  90% {transform: translate(1px, -1px)}
  100% {transform: translate(-21px, -1px)}
}

@keyframes glitch3 {
  0% {transform: skew(0deg)}
  90% {transform: skew(-5deg)}
  94% {transform: skew(0deg)}
  98% {transform: skew(-10deg)}
  100% {transform: skew(0deg)}
}

.cta-wrap {
  align-items: center;
  display: flex;
}

.price {
  font-weight: 700;
  font-size: 1.5rem;
  padding-right: 1rem;
  color: #7d9b7d;
}

.cta-wrap .btn {
  margin-bottom: 0;
}

footer {
  background:url(images/hero2.png);
  background-color: #111111;
  background-size: cover;
  color: #fff;
  padding: 2rem;
  font-weight: 900;
  font-style: italic;
  text-align: center;
}

.secure-checkout {
  font-size: .8rem;
}

.avatar {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: block;
  float: left;
  margin: 0 1em 1em 0;
}

.lasering {
  background-color: #111111ea;
  backdrop-filter: blur(5px);
  display: flex;
  clip-path: circle(100% at 50% 50%);
  align-items: center;
  justify-content: center;
  position: fixed;
  padding: 1em;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  height: 100%;
  transition: 1s;
  z-index: 10;
}

.lasering.hidden {
  clip-path: circle(0% at 50% 50%);
  color: #000;
  pointer-events: none;
}

.lasering.hidden img{ 
  opacity: 0;
}

.lasering img {
  width:500px;
  max-width: 100%;
  transition: 1s;
  opacity: 1;
  box-shadow: 0 0 50px #000;
  border-radius: 8px;
  margin-bottom: 1em;
}

.aboutit {
  background-color: #111111ea;
  backdrop-filter: blur(5px);
  background-size: cover;
  clip-path: circle(100% at 50% 50%);
  color: #fff;
  position: fixed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  pointer-events: initial;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  text-align: left;
  transition: 1s;
  z-index: 10;
}

.aboutit .btn {
  width: 100%;
  margin: 1em 0 0 0;
  text-align: center;
}

.aboutit h3 {
  font-size: 2.5em;
}

.aboutit.hidden {
  clip-path: circle(0% at 50% 50%);
  color: #000;
  pointer-events: none;
}

.aboutit a:link,
.aboutit a:visited {
  color: inherit;
}

.aboutit p {
  display: block;
  padding-bottom: 1em;
}

.aboutit-content {
  max-width: 100%;
  width: 460px;
  padding: 2em;
}

.svg {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0px;
  height: 0px;
}



@media screen and (max-width: 720px){

 

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 1.5rem;
    position: sticky;
    top: 0;
    padding: 5px 2em;
    z-index: 10;
  }

  .sale-item {
    flex-direction: column;
  }

  .sale-item__img {
    width: 100%;
  }

  .sale-item__description {
    padding: 1rem 0 0 0;
    width: 100%;
  }

  .hero-txt {
    padding-top: 100px;
  }
}

@media screen and (max-width: 500px){ 
  body {
    background: #000;
  }

  .hero::before {
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, transparent 70%, #000);
  }

  .aboutit h3 {
    font-size: 2rem;
  }
  
  .aboutit-content {
    padding: 1rem;
  }

  .btn {
    display: block;
    margin: 0 0 1em 0;
    text-align: center;
    width: 100%;
  }
  .cta-wrap {
    flex-direction: column;
  }
  .cta-wrap .btn {
    margin-bottom: 1rem;
  }
  h2 {
    padding: 5px 1.5rem;
  }

  .sale {
    padding: 30px 10px;
  }

  .sale-item {
    padding: 0 1.5rem 3rem 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 20px #00000017;
  }

  .sale-item__img {
    width: calc(100% + 3rem);
    margin: 0 -1.5rem;
  }
  .sale-item__img.video-playing::after {
    clip-path: none;
    background: none;
    border: 4px solid white;
    border-top: 0;
    border-bottom: 0;
    width: 8px;
  }
}

@media screen and (max-width: 400px){

  h1 {
    font-size: 3rem;
  }

}