:root {
  --color-blue-1: #3554d1;
  --color-border: #dddddd;
  --font-primary: "Jost", sans-serif;
}

.header-margin {
  margin-top: 75px;
}

.header {
  background-color: var(--color-blue-1);
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  /* Removed SCSS variable $easeOutQuart, replace with cubic-bezier or ease */
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

@media (max-width: 576px) {
  .px-30 {
    padding-left: 20px !important;
    padding-right: 20 !important;
  }
}

.justify-between {
  justify-content: space-between !important;
}

.items-center {
  align-items: center !important;
}

.header-logo {
  position: relative;

  img {
    width: 180px;

  }
}

@media (max-width: 576px) {
  .header-logo img {
    max-width: 160px;
  }
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

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

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

.ml-5 {
  margin-left: 5px !important;
}

.d-flex {
  display: flex !important;
}

.x-gap-10 {
  margin-left: -5px;
  margin-right: -5px;
  > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.y-gap-10 {
  margin-top: -5px;
  margin-bottom: -5px;
  > * {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.y-gap-40 {
  margin-top: -20px;
  margin-bottom: -20px;
  > * {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.border-top-light {
  border-top: 1px solid var(--color-border);
}

.justify-between {
  justify-content: space-between !important;
}

.text-14 {
  font-size: 14px !important;
  font-family: var(--font-primary);
}

.text-16 {
  font-size: 16px !important;
  font-family: var(--font-primary);
}

.text-blue-1 {
  color: var(--color-blue-1);
}

.fw-500 {
  font-weight: 500;
  font-family: var(--font-primary);
}

a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}