@font-face {
  font-family: TazBold;
  src: url(fonts/tazb.otf) format("opentype"),
    url(fonts/tazb.woff) format("woff");
}

@font-face {
  font-family: TazBlack;
  src: url(fonts/tazblack.otf) format("opentype"),
    url(fonts/tazblack.woff) format("woff");
}

@font-face {
  font-family: TazRegular;
  src: url(fonts/tazr.otf) format("opentype"),
    url(fonts/tazr.woff) format("woff");
}

@font-face {
  font-family: TazLight;
  src: url(fonts/tazlight.otf) format("opentype"),
    url(fonts/tazlight.woff) format("woff");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: #000;
  overflow-x: hidden;
}

.hero {
  width: 100%;
  position: relative;
}

.titlewrap {
  padding-top: 8rem;
}

h2 {
  transition: all 0.3s ease;
}

.title-outline {
  font-family: "TazBlack", sans-serif;
  font-size: 268px;
  font-weight: 525;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: #f3f0c9;
  line-height: 0.8;
}

.title-fill {
  font-family: "TazBlack", sans-serif;
  font-size: 268px;
  font-weight: 525;
  text-transform: uppercase;
  text-align: center;

  background: linear-gradient(
    60deg,
    #bbdce9 -326.06%,
    #bbb5d3 -231.01%,
    #eec7d6 -135.96%,
    #f3c5b2 -40.91%,
    #f3f0c9 54.15%,
    #c0dcc5 149.2%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 0.8;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: #d22328;
  color: #000;
  padding: 10px 0;
  font-family: system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  transform: translateY(-60vh) translateX(-5vw) rotate(-5.4deg);
  width: 110vw;
}

.ticker2 {
  transform: translateY(0vh) translateX(-5vw) rotate(-6.2deg);
  background-color: #f7931e;
  z-index: 10;
}

.ticker3 {
  transform: translateY(-20vh) translateX(-5vw) rotate(4.2deg);
  background-color: #d22328;
  z-index: 5;
}

.ticker__track,
.ticker__track2,
.ticker__track3 {
  display: inline-flex;
  gap: 3rem;
  animation: scroll 15s linear infinite;
  min-width: max-content;
}

.ticker__track span,
.ticker__track2 span,
.ticker__track3 span {
  font-size: 40px;
  letter-spacing: 0.15em;
}

.ticker__track::after,
.ticker__track2::after,
.ticker__track3::after {
  content: attr(data-duplicate);
  display: inline-flex;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 37px;
  grid-row-gap: 120px;
  width: 100%;
  max-width: 860px;
  margin: -8rem auto 0 auto;
  padding-bottom: 8rem;
}

.product {
  width: 400px;
  height: 400px;
  border: 4px solid #fff;
  background: #000;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}

.link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.badge {
  background: url(img/badge.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 293px;
  height: 129px;
  position: absolute;
  left: 50%;
  top: -65px;
  transform: translateX(-50%);
  color: #000;
  font-family: TazRegular;
  font-size: 36.65px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

.logo-wrap {
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

.logo {
  max-height: 180px;
  width: 100%;
  padding: 0 1rem;
  object-fit: contain;
}

.num {
  font-size: 74px;
}

.btn {
  display: block;
  margin: 20px auto 0 auto;
  width: 327px;
  height: 79px;
  background: #f7931e;
  color: #fff;
  font-family: TazRegular;
  font-size: 32px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  outline: none;
  pointer-events: none;
}

.lead {
  font-family: TazRegular;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

footer {
  padding-top: 200px;
  position: relative;
}

.logo24 {
  display: block;
  margin: 3rem auto;
  width: 200px;
}

.xms {
  font-size: 60px;
}

@media (max-width: 1500px) {
  .title-outline,
  .title-fill {
    font-size: 220px;
  }
}

@media (max-width: 1233px) {
  .title-outline,
  .title-fill {
    font-size: 180px;
  }
}

@media (max-width: 1016px) {
  .title-outline,
  .title-fill {
    font-size: 150px;
  }
}

@media (max-width: 806px) {
  .title-outline,
  .title-fill {
    font-size: 60px;
  }
  .products {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 1rem;
    margin-top: 1rem;
  }
  .product {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
  }
  .logo {
    margin-top: 4rem;
    padding: 1rem;
  }
  .btn {
    margin-top: 1rem;
    width: 90%;
  }
  .badge {
    font-size: 24px;
    width: 180px;
    height: 80px;
    top: -40px;
  }
  .num {
    font-size: 40px;
  }
  .ticker {
    transform: translateY(-10vh) rotate(-5deg);
  }
  .ticker2 {
    transform: translateY(-10vh) rotate(5deg);
  }
  .ticker3 {
    transform: translateY(-10vh) rotate(-5deg);
  }
  .ticker__track,
  .ticker__track2,
  .ticker__track3 {
    gap: 1rem;
  }
  .ticker__track span,
  .ticker__track2 span,
  .ticker__track3 span {
    font-size: 20px;
    letter-spacing: 0.15em;
  }
  .titlewrap {
    padding-top: 4rem;
  }
  .lead {
    font-size: 24px;
  }
  .logo24 {
    width: 140px;
  }
  .xms {
    font-size: 30px;
  }
}
