@font-face {
  font-family: Cutivemono;
  src: url('../fonts/CutiveMono-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Switzer;
  src: url('../fonts/Switzer-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Didot Title;
  src: url('../fonts/Didot-Title.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Didot;
  src: url('../fonts/Didot.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --main-white: #f3f2ee;
  --page-bg: #1a1a1a;
  --primary: #e70010;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

p {
  margin-bottom: 10px;
  font-family: Cutivemono, Palatino Linotype, sans-serif;
}

a {
  color: var(--main-white);
  text-decoration: none;
}

.body {
  background-color: var(--page-bg);
  cursor: none;
}

.section {
  grid-column-gap: 6vw;
  grid-row-gap: 6vw;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100vw;
  min-height: 100dvh;
  padding: 10vw 2vw 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.centerd {
  justify-content: center;
  align-items: center;
  padding-bottom: 10vw;
}

.topline {
  color: var(--main-white);
  text-align: center;
  font-family: Didot Title, Georgia, sans-serif;
  font-size: 18px;
}

.brand-wrapper {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
}

.text-span {
  text-decoration: line-through;
}

.big-p {
  z-index: 1;
  color: var(--main-white);
  text-transform: uppercase;
  width: 90%;
  font-family: Switzer, Tahoma, sans-serif;
  font-size: 9.6vw;
  line-height: 86%;
  position: relative;
}

.strike-custom {
  text-decoration: line-through;
  position: relative;
}

.text-span-3 {
  text-decoration: line-through;
}

.header {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.driiiv-logo-header {
  font-family: Switzer, Tahoma, sans-serif;
  font-weight: 400;
}

.image {
  width: 100%;
}

.header_content_wrapper {
  width: 90%;
  padding-left: 4px;
  padding-right: 4px;
}

.comingsoon {
  color: var(--main-white);
  font-family: Cutivemono, Palatino Linotype, sans-serif;
}

.fake-cursor {
  z-index: 2;
  background-color: var(--primary);
  border-radius: 50%;
  width: 60vw;
  height: 60vw;
  position: absolute;
}

.fake-cursor-desk {
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: difference;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.grain {
  z-index: 10;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image: url('../images/grain.png');
  background-position: 50%;
  background-size: cover;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  inset: 0%;
}

.code-embed {
  display: block;
}

.loader {
  z-index: 5;
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  height: 100dvh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.image-2 {
  width: 15vw;
  height: 15vw;
}

.paragraph {
  color: #fff;
}

.content {
  color: #000;
  max-width: 1100px;
  font-size: 1.5vw;
  line-height: 120%;
}

.content-wrapper {
  justify-content: center;
  align-items: center;
  width: 86%;
}

@media screen and (max-width: 991px) {
  .section {
    justify-content: space-between;
    align-items: center;
    min-height: 100dvh;
  }

  .topline {
    font-size: 17px;
  }

  .content {
    font-size: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .body {
    cursor: auto;
  }

  .section {
    justify-content: space-between;
    align-items: center;
    min-height: 100dvh;
    padding: 14vw 8vw 8vw;
  }

  .topline {
    font-size: 16px;
  }

  .big-p {
    font-size: 10.5vw;
    line-height: 92%;
  }

  .header {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .driiiv-logo-header {
    font-size: 12px;
  }

  .fake-cursor-desk {
    display: none;
  }

  .image-2 {
    width: 20vw;
    height: 20vw;
  }

  .content {
    font-size: 3vw;
  }
}

@media screen and (max-width: 479px) {
  .section {
    justify-content: space-between;
    align-items: center;
    padding-top: 24vw;
  }

  .big-p {
    line-height: 90%;
  }

  .content {
    font-size: 18px;
  }

  .content-wrapper {
    width: 90%;
  }
}


@font-face {
  font-family: 'Cutivemono';
  src: url('../fonts/CutiveMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Didot Title';
  src: url('../fonts/Didot-Title.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Didot';
  src: url('../fonts/Didot.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}