html{
  overflow-x: hidden;
}
body {
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

.site-main.container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.container {
  padding: 0 24px;
  width: auto;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  padding: 0 48px;
}

.container-small {
  max-width: 615px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

img {
  object-fit: cover;
}

a,
a:hover {
  transition: all 0.2s ease-out;
}

a:visited {
  color: inherit;
}

.mobile-only {
  display: block;
}

@media (min-width: 992px) {
  .mobile-only {
    display: none;
  }
}

.accent-color {
  color: #E85233;
}
.accent-color a:hover {
  color: #C53416;
}

.post,
.page {
  margin: 0;
}

.hidden {
  display: none !important;
}

.archive-wrapper {
  padding: 80px 0;
}

.archive-navigation-header,
.archive-navigation-footer {
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.archive-navigation-header .categories ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.archive-navigation-header .categories li {
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: none;
  color: rgba(100, 99, 110, 1);
  cursor: pointer;
}

.archive-navigation-header .categories li:hover {
  color: rgba(8, 0, 87, 1);
}

.archive-navigation-header .categories li.current {
  border-bottom: 2px solid rgba(60, 60, 70, 1);
  color: rgba(8, 0, 87, 1);
}

.archive-navigation-header .categories-mobile {
  position: relative;
  display: none;
}

.archive-title {
  font-family: Inter;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  color: #020014;
}

.archive-description {
  font-family: Inter;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 120px;
  margin-bottom: 80px;
}

.archive-cards-wrapper {
  background-repeat: no-repeat;
  background-position: -50px 0;
}

@media (max-width: 1200px) {
  .archive-navigation-header .categories-desktop {
    display: none;
  }

  .archive-navigation-header .archive-pagination {
    display: none;
  }

  .archive-navigation-header .categories-mobile {
    display: block;
    width: 100%;
  }

  .archive-navigation-footer .archive-pagination {
    margin: auto;
  }
}

.archive-navigation-header .categories-mobile select {
  background: none;
  width: 100%;
  padding: 11px 16px;
  appearance: none;
  font-family: 'Space Grotesk', sans-serif;
}

.archive-navigation-header .categories-mobile-checkmark {
  position: absolute;
  top: 30%;
  right: 18px;
  transform: rotate(-45deg);
  width: 15px;
  height: 15px;
  border-left: 3px solid var(--open-close-arrow-colour);
  border-bottom: 3px solid var(--open-close-arrow-colour);
}

.totop-btn {
  display: inline-block;
  padding: 20px 35px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: #000000;
  cursor: pointer;
}

.slick-dots li button:before {
  content: '';
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    width: 1200px;
  }
}

.archive-container {
  max-width: 1044px;
}