:root {
  --primary-navy-blue: #1d3a67;
  --light-steel-blue: #ccd7ed;
  --muted-steel-blue: #5a81a7;
  --carolina-blue: #74afdb;
  --cornflower-blue: #4285f4;
  --primary-text-color: var(--muted-steel-blue);
  --border-color: rgb(118, 118, 118);
}

/* Regular style */
@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinsans-Regular.ttf") format("truetype");
  font-weight: normal; /* Regular weight */
  font-style: normal; /* Regular style */
}

/* Light style */
@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinsans-Light.ttf") format("truetype");
  font-weight: lighter; /* Light weight */
  font-style: normal; /* Regular style */
}

/* Bold style */
@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinsans-Bold.ttf") format("truetype");
  font-weight: bold; /* Bold weight */
  font-style: normal; /* Regular style */
}

/* Italic style */
@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinson-Italic.ttf") format("truetype");
  font-weight: normal; /* Regular weight */
  font-style: italic; /* Italic style */
}

/* Light Italic style */
@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinson-Italic.ttf") format("truetype");
  font-weight: lighter; /* Light weight */
  font-style: italic; /* Italic style */
}

/* Bold Italic style */
@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinson-BoldItalic.otf") format("opentype");
  font-weight: bold; /* Bold weight */
  font-style: italic; /* Italic style */
}

body,
ul li a {
  font-family: "Parkinsans" !important;
}
.bold,
.font-bold {
  font-weight: bold;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-base {
  font-size: 16px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 24px;
}

.text-3xl {
  font-size: 30px;
}

.m-0 {
  margin: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pb-2 {
  padding-bottom: 2px;
}

.flex {
  display: flex;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.align-item-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.none,
.hidden {
  display: none !important;
}

.content-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 5rem 0 0 0;
  background-image: url("../images/common/bg-image.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top 5rem center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  padding: 5rem 4rem;
  color: #2a3668;
}

.title-text {
  color: #2a3668;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.subtitle-text {
  color: #2a3668;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.img-full-width,
.full-width {
  width: 100%;
}

.text-red {
  color: #dc455f;
}

.red-button,
.blue-button {
  border-radius: 50px;
  color: white;
  padding: 5px 15px;
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  cursor: pointer;
  width: 200px;
}

.red-button {
  border: 1px #dc455f solid;
  background-color: #dc455f;
}

.red-button:hover {
  background-color: #ec5b73;
}

.blue-button {
  border: 1px #2a3668 solid;
  background-color: #2a3668;
}

.uppercase {
  text-transform: uppercase;
}

.absolute {
  position: absolute;
}

/* Mobile styles (for devices with a max width of 768px) */
@media only screen and (max-width: 768px) {
  .content {
    padding: 5rem 2rem 2rem 2rem;
  }

  .content-wrapper {
    flex-direction: column;
    padding: 5rem 2rem;
  }

  .subtitle-text {
    font-size: 16px;
  }

  .mobile-flex-column {
    flex-direction: column !important;
    gap: 10px !important;
  }
}
