/* common border radius */
/* disable text selection */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://use.typekit.net/wka2cdd.css");
/*	Defined widths
--------------------------------------- */
.page-archive {
  margin-top: 7.2rem;
  margin-bottom: 14.5rem;
}
.page-archive__header {
  margin-bottom: 11.6rem;
  max-width: 73.2rem;
  box-sizing: content-box;
}
.page-archive__header h1 {
  font-size: 6.4rem;
  line-height: 1.125;
  font-weight: 700;
  font-family: "helvetica";
  margin-bottom: 2rem;
}
@media screen and (max-width: 1400px) {
  .page-archive__header h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1000px) {
  .page-archive__header h1 {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 650px) {
  .page-archive__header h1 {
    font-size: 3.5rem;
  }
}
.page-archive__header strong {
  font-family: "helvetica";
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.95;
}
.page-archive__header h1,
.page-archive__header strong,
.page-archive__header p {
  color: #000000;
  margin-left: 9.2rem;
}
@media (max-width: 640px) {
  .page-archive__header h1,
.page-archive__header strong,
.page-archive__header p {
    margin-left: 2.2rem;
  }
}
.page-archive__header p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "roboto";
  font-style: normal;
}
.page-archive__bot {
  display: flex;
  justify-content: center;
  padding: 5.2rem;
}
.page-archive__load-button::after {
  content: "";
  background-image: url("../../images/white-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 1rem;
  height: 1.5rem;
  margin-left: 1.8rem;
  transform: rotate(90deg);
  z-index: 10;
}

.loading-button {
  overflow: hidden;
  position: relative;
  pointer-events: none;
}
.loading-button p {
  position: relative;
  z-index: 11;
}
.loading-button::before {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  background: #003366;
  animation: load 1.5s;
  animation-iteration-count: infinite;
  border-radius: 6px;
}

@keyframes load {
  0% {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    background: #183A26;
  }
}

/*# sourceMappingURL=archive-custom.css.map */
