
        body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.annual-container {
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 115px;
}

@media (max-width: 768px) {
  .annual-container {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 115px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* Start heading */
.annual-container .annual-heading h1 {
  font-size: 54px;
  font-weight: 300;
  line-height: 1.4em;
  margin-bottom: 12px;
  color: var(--main-color);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .annual-container .annual-heading h1 {
    font-size: 40px;
  }
}

/* End heading */

/* Start content */
.annual-content {
  width: 100%;
}

.annual-content .annual-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.annual-wrapper .annual-item {
  padding: 15px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--black-color);
  border-right: 1px solid var(--black-color);
  border-bottom: 1px solid var(--black-color);
}

.annual-wrapper .annual-item:nth-child(n + 1):nth-child(-n + 3) {
  border-top: 1px solid var(--black-color);
}

.annual-item .annual-image img {
  width: 100%;
  height: 282px;
  object-fit: cover;
  object-position: center center;
}

.annual-item .annual-populated {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.annual-populated .annual-box-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.annual-box-wrapper .annual-box-content span a {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
  text-decoration: none;
}

.annual-populated .annual-date {
  font-weight: 300;
  line-height: 1.5em;
}

.btn-loadmore {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 24px;
  width: fit-content;
}

.btn-loadmore-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.btn-loadmore > div,
.btn-loadmore .btn-loadmore-icon {
  position: relative;
  z-index: 1;
}

.btn-loading-spinner {
  display: none;
  width: 30px;
  height: 30px;
  border: 3px solid #491bd1;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

/* Animation spin */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .annual-content .annual-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
  .annual-wrapper .annual-item {
    padding: 25px 0 0 0;
    border: none;
    border-top: 1px solid var(--black-color);
  }
  .annual-item .annual-image img {
    width: 100%;
    height: 282px;
    object-fit: cover;
  }
  .annual-item .annual-populated {
    margin-bottom: 10px;
  }
}
