* {
  margin: 0;
  padding: 0;
  font-family: "Merriweather", serif;
  box-sizing: border-box;
}
:root {
  --primary-white: #ffffff;
  --primary-red: #cc0000;
  --primary-blue: #173654;
  --secondary-dark: #1a1b1e;
  --secondary-light: #c4c4c4;
}
ul {
  display: block;
  list-style-type: disc; /* Uses bullet points */
  padding-inline-start: 40px; /* Indentation for bullets */
}
.dropdown-content ul {
  padding-inline-start: 0;
}
/* Default container style for all screen sizes */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.sidebar-news {
  flex: 3;
  background-color: var(--primary-white);
  height: fit-content;
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: none;
  flex-direction: column;
}
.two-cards-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 30px;
  padding-bottom: 30px;
}
.two-cards-grid-card {
  background-color: var(--primary-white);
  padding: 20px;
  text-align: center;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 470px;
  display: flex;
  flex-direction: column;
  width: auto;
}
.red-button {
  padding: 8px 14px;
  border-radius: 6px;
  opacity: 0px;
  box-shadow: 0px 1px 2px 0px #6951ff0d;
  background: var(--primary-red);
  border: 1px solid var(--primary-red);
  width: fit-content;
  color: var(--primary-white);
  text-decoration: none;
  transition: all 0.3s ease;
}
.white-button {
  padding: 8px 14px;
  border-radius: 6px;
  opacity: 0px;
  box-shadow: 0px 1px 2px 0px #6951ff0d;
  background: var(--primary-white);
  border: 1px solid var(--secondary-light);
  width: fit-content;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}
.swipe-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  right: -30px;
}
.swipe-indicator-home {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  right: -15px;
}
/* Small screens (≥576px) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .two-cards-grid-card {
    height: 400px;
  }
}
/* Medium screens (≥768px) */
@media (min-width: 768px) {
  .two-cards-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 30px;
    padding-bottom: 30px;
  }
  .two-cards-grid-card {
    background-color: var(--primary-white);
    padding: 20px;
    text-align: center;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 450px;
    display: flex;
    flex-direction: column;
    width: 350px;
  }
  .container {
    max-width: 720px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .red-button {
    padding: 12px 20px;
  }
  .white-button {
    padding: 12px 20px;
  }
  .swipe-indicator,
  .swipe-indicator-home {
    display: none;
  }
}
/* Large screens (≥992px) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .sidebar-news {
    display: flex;
  }
  .download-list {
    min-height: 660px;
  }
}
/* Extra large screens (≥1200px) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
/* Extra extra large screens (≥1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
/* ----- Page styles ----- */
.page {
  margin-top: 260px;
  position: relative;
}
.page-2 {
  position: relative;
}
.border-top {
  border-top: 1px solid #c4c4c4;
}
.border-bottom {
  border-bottom: 1px solid #c4c4c4;
}
.page-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.02em;
  text-align: left;
  padding-bottom: 15px;
}
.text-limit-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.text-limit-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.flex {
  display: flex;
}
.justify-content-center {
  justify-items: center;
}
.align-items-center {
  align-items: center;
}
.text-align-center {
  text-align: center;
}
.justify-self-end {
  justify-self: end;
}
.h-100 {
  height: 100%;
}
.gap-5 {
  gap: 5px;
}
.gap-20 {
  gap: 20px;
}
.padding-y-10 {
  padding-left: 10px;
  padding-right: 10px;
}
.padding-x-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.padding-x-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.padding-x-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.padding-b-10 {
  padding-bottom: 10px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-right-30 {
  margin-right: 30px !important;
}
/* ----- Breadcrumb styles ----- */
.breadcrumbs {
  padding: 20px 0;
  color: #cc0000;
}
.breadcrumbs span {
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  text-decoration: none;
  color: #cc0000;
  margin: 50px 0;
}
.breadcrumbs a {
  text-decoration: none;
}

/* ----- Flag banner styles */
.background-flag-wrapper {
  position: absolute;
  top: -100px;
  left: 20%;
  right: 5%;
  z-index: -1;
  display: none;
}
@media (min-width: 992px) {
  .background-flag-wrapper {
    display: block;
  }
}
.background-flag {
  width: 100%;
}
.background-filter-radial {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 1) 100%
  );
}
.background-filter-linear-x {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 25%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 1) 90%
  );
}
.background-filter-linear-y {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 10%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 1) 95%
  );
}

/* ----- Pagination ----- */
.pagination {
  text-align: center;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-span: all;
}
.nav-links {
  width: fit-content;
  border-radius: 50px;
  border: 1px solid var(--secondary-light);
  padding: 9px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-numbers {
  padding: 4px 12px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-family: Asap;
  font-weight: 500;
}
.page-numbers:last-child {
  margin-right: 0;
}
.page-numbers.current {
  background-color: var(--primary-red);
  color: var(--primary-white);
  border-color: var(--primary-red);
  font-weight: 700;
}
.page-numbers:hover {
  background-color: var(--primary-red);
  color: var(--primary-white);
  font-weight: 700;
}
.page-numbers.prev:hover,
.page-numbers.next:hover {
  background-color: transparent;
  color: var(--primary-blue);
}
.page-numbers.dots {
  background-color: transparent;
  color: #000;
}
.page-numbers.prev,
.page-numbers.next {
  font-weight: 700;
  padding: 4px 12px;
  color: var(--primary-blue);
}

/* ----- Content Image Styles ----- */
.alignleft {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.alignright {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* ----- Page Elements */
.main-content-wrapper {
  display: flex;
  gap: 120px;
  padding-bottom: 20px;
}
.main-content {
  flex: 7;
  grid-row: auto;
}

/* ----- Buttons */

.on-bottom {
  position: absolute;
  bottom: 0;
}
.red-button:hover {
  color: var(--primary-red);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  border: 1px solid var(--primary-red);
  background: var(--primary-white);
}
.white-button:hover {
  color: var(--primary-red);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  border: 1px solid var(--primary-red);
}
/* ----- Typography Styles */
/* font size */
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}
.fs-32 {
  font-size: 32px;
}
.fs-58 {
  font-size: 58px;
}
/* font weight */
.fw-semibold {
  font-weight: 500;
}
.fw-regular {
  font-weight: 400;
}
.fw-bold {
  font-weight: 700;
}
/* line height */
.lh-19 {
  line-height: 19px;
}
.lh-24 {
  line-height: 24px;
}
.lh-30 {
  line-height: 30px;
}
.lh-38 {
  line-height: 38px;
}
.lh-60 {
  line-height: 60px;
}
/* text decoration */
.td-none {
  text-decoration: none;
}
/* text color */
.fc-black {
  color: var(--primary-dark);
}
.fc-red {
  color: var(--primary-red);
}
.fc-blue {
  color: var(--primary-blue);
}
.fc-black {
  color: black;
}
/* text align */
.ta-left {
  text-align: left;
}
/* EXTRA */

.red-heading {
  font-family: Merriweather;
  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: var(--primary-red);
}
.inline-bullets {
  list-style-position: inside;
}
.inline-bullets li {
  font-weight: 500;
}
.img-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Download files */
.download-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.download-item {
  display: flex;
  justify-items: center;
}
.file-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
}
.file-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.file-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-wrap: normal;
}
.download-link {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 16px;
  opacity: 0px;
  box-shadow: 0px 1px 2px 0px #6951ff0d;
  background: var(--primary-red);
  border: 1px solid var(--primary-red);
  width: fit-content;
  color: var(--primary-white);
  text-decoration: none;
  transition: all 0.3s ease;
}
.download-link:hover {
  color: var(--primary-blue);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  border: 1px solid var(--primary-blue);
}
.do-not-dispay {
  display: none;
}
