/** Shopify CDN: Minification failed

Line 87:13 Expected "}" to go with "{"

**/
@keyframes expand {
  0% {
    clip-path: polygon(50% 100%, 50% 0, 50% 0, 50% 100%);
  }
  100% {
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
  }
}

@keyframes scale {
  0% {
    scale: 0;
  }
  100% {
    scale: 1;
  }
}

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

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  animation: expand 3s 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.firstbox,
.secondbox,
.thirdbox {
  flex: 1;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scale 3s 1;
}

.toptierlogo {
  display: block;
  margin: 0 auto;
  padding-bottom: 30px;
  max-width: 280px;
}

.allpartslogo {
  display: block;
  margin: 0 auto;
  padding-bottom: 30px;
  max-height: 300px;
}

.toptierlogo:hover {
  transform: scale(1.1);
}

@font-face {
  font-family: Deftones;
  src: url(/cdn/shop/files/Deftones.ttf?v=1721097132) format(truetype);
  font-weight: normal;
  font-style: normal;
}

/* Mobile layout */
@media (max-width: 768px) {
  .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    column-gap: 10px;
  }

  .firstbox {