.apply-now-page {
  min-height: 100vh;
  background-color: var(--primary-black-color);
}
.apply-now-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.apply-now-hero:before {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: #6b1579;
  opacity: 0.2;
  filter: blur(200px);
  border-radius: 50%;
  pointer-events: none;
}
.apply-now-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}
.apply-now-content {
  text-align: center;
}
.apply-now-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.apply-now-title {
  font-family: DM Sans, sans-serif;
  font-weight: 500;
  color: var(--white-color);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.apply-now-description {
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: var(--white-color);
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 623px;
  margin: 0 auto;
}
.apply-now-form-section {
  position: relative;
  padding-bottom: 5rem;
}
.apply-now-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.apply-now-form-card {
  background: #0c0910;
  border-radius: 20px;
  border: 1px solid #350056;
  padding: 2rem;
}
.apply-now-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-input,
.form-label {
  color: var(--white-color);
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #350056;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}
.form-input::placeholder {
  color: #6b7280;
}
.form-input:focus {
  outline: none;
  border-color: #c527df;
}
.form-input-url {
  padding-left: 4.375rem;
}
.url-prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 0.875rem;
  pointer-events: none;
}
.url-input-wrapper {
  position: relative;
}
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #350056;
  border-radius: 0.5rem;
  color: var(--white-color);
  resize: none;
  min-height: 120px;
  transition: border-color 0.3s ease;
}
.form-textarea:focus {
  outline: none;
  border-color: #c527df;
}
.form-error {
  margin-top: 0.25rem;
  color: #ef4444;
  font-size: 0.75rem;
}
.submit-button {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.submit-button:not(:disabled) {
  background: var(--primary-color);
  color: var(--heading-color);
}
.submit-button:not(:disabled):hover {
  background: #5a3dd8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(106, 71, 237, 0.3);
}
.submit-button:disabled {
  background: #6b7280;
  cursor: not-allowed;
}
.file-upload-area {
  position: relative;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #350056;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.file-upload-area.drag-active,
.file-upload-area:hover {
  border-color: #c527df;
}
.file-upload-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.file-upload-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.file-upload-icon {
  width: 1rem;
  height: 1rem;
  color: #6b7280;
}
.file-upload-icon.active {
  color: #c527df;
}
.file-upload-text {
  color: #6b7280;
  font-size: 0.875rem;
}
.file-upload-name,
.file-upload-text.active {
  color: var(--white-color);
}
.file-upload-name {
  font-size: 0.875rem;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-remove-button {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
}
.file-remove-button:hover {
  color: var(--white-color);
}
.file-upload-info {
  margin-top: 0.25rem;
  color: #6b7280;
  font-size: 0.75rem;
}
.file-upload-error {
  margin-top: 0.25rem;
  color: #ef4444;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.status-message {
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 1rem;
}
.status-success {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid #22c55e;
  color: #4ade80;
}
.status-error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #f87171;
}
.status-uploading {
  background: rgba(197, 39, 223, 0.2);
  border: 1px solid #c527df;
  color: #c527df;
}
.upload-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.spinner {
  animation: spin 1s linear infinite;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #c527df;
  width: 1rem;
  height: 1rem;
}
@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
.badge-container {
  position: relative;
  display: inline-block;
}
.badge-main {
  position: absolute;
  background: rgba(151, 48, 195, 0.2);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 9px;
  height: 41.011px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 28px 10px 15px;
  border-radius: 10px;
  border: 0.3px solid #3e2443;
}
.badge-dot {
  position: relative;
  flex-shrink: 0;
  width: 5.626px;
  height: 5.626px;
}
.badge-dot svg {
  display: block;
  width: 100%;
  height: 100%;
}
.badge-text {
  background: linear-gradient(90deg, #ffffff, #bfbfbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 0;
  font-style: normal;
  position: relative;
  flex-shrink: 0;
  text-align: left;
  white-space: nowrap;
}
.badge-line {
  position: absolute;
  height: 0;
  top: 0;
}
.badge-line svg {
  display: block;
  width: 100%;
  height: 100%;
}
.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--white-color);
  font-size: 0.875rem;
}
.radio-input {
  width: 1rem;
  height: 1rem;
  accent-color: #c527df;
  cursor: pointer;
}
.radio-text {
  color: var(--white-color);
  font-size: 0.875rem;
}
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .checkbox-group {
    grid-template-columns: 1fr 1fr;
  }
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--white-color);
  font-size: 0.875rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}
.checkbox-label:hover {
  background-color: rgba(197, 39, 223, 0.1);
}
.checkbox-input {
  width: 1rem;
  height: 1rem;
  accent-color: #c527df;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .apply-now-title {
    font-size: 3.625rem;
  }
  .apply-now-form-card {
    padding: 3rem;
  }
  .apply-now-container,
  .apply-now-form-container {
    padding: 0 2rem;
  }
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/_next/static/media/88da59c891d37117-s.woff2) format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/_next/static/media/1e377d93cbdd6b44-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/_next/static/media/36d711d427a06e51-s.woff2) format("woff2");
  unicode-range: u+1f??;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/_next/static/media/f1f7cdf240180e28-s.woff2) format("woff2");
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/_next/static/media/55fbdf033607a0e1-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/_next/static/media/b6a6f0b43d027304-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/_next/static/media/9cf9c6e84ed13b5e-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/88da59c891d37117-s.woff2) format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/1e377d93cbdd6b44-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/36d711d427a06e51-s.woff2) format("woff2");
  unicode-range: u+1f??;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/f1f7cdf240180e28-s.woff2) format("woff2");
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/55fbdf033607a0e1-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/b6a6f0b43d027304-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/9cf9c6e84ed13b5e-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/88da59c891d37117-s.woff2) format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/1e377d93cbdd6b44-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/36d711d427a06e51-s.woff2) format("woff2");
  unicode-range: u+1f??;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/f1f7cdf240180e28-s.woff2) format("woff2");
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/55fbdf033607a0e1-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/b6a6f0b43d027304-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/9cf9c6e84ed13b5e-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/88da59c891d37117-s.woff2) format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/1e377d93cbdd6b44-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/36d711d427a06e51-s.woff2) format("woff2");
  unicode-range: u+1f??;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/f1f7cdf240180e28-s.woff2) format("woff2");
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/55fbdf033607a0e1-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/b6a6f0b43d027304-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/9cf9c6e84ed13b5e-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/88da59c891d37117-s.woff2) format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/1e377d93cbdd6b44-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/36d711d427a06e51-s.woff2) format("woff2");
  unicode-range: u+1f??;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/f1f7cdf240180e28-s.woff2) format("woff2");
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/55fbdf033607a0e1-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/b6a6f0b43d027304-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/9cf9c6e84ed13b5e-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/88da59c891d37117-s.woff2) format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/1e377d93cbdd6b44-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/36d711d427a06e51-s.woff2) format("woff2");
  unicode-range: u+1f??;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/f1f7cdf240180e28-s.woff2) format("woff2");
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/55fbdf033607a0e1-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/b6a6f0b43d027304-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/9cf9c6e84ed13b5e-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/88da59c891d37117-s.woff2) format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/1e377d93cbdd6b44-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/36d711d427a06e51-s.woff2) format("woff2");
  unicode-range: u+1f??;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/f1f7cdf240180e28-s.woff2) format("woff2");
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/55fbdf033607a0e1-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/b6a6f0b43d027304-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/9cf9c6e84ed13b5e-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/88da59c891d37117-s.woff2) format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/1e377d93cbdd6b44-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/36d711d427a06e51-s.woff2) format("woff2");
  unicode-range: u+1f??;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/f1f7cdf240180e28-s.woff2) format("woff2");
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/55fbdf033607a0e1-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/b6a6f0b43d027304-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Source Sans\3;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/9cf9c6e84ed13b5e-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Source Sans\3 Fallback;
  src: local("Arial");
  ascent-override: 109.21%;
  descent-override: 42.66%;
  line-gap-override: 0%;
  size-adjust: 93.76%;
}
.__className_73f296 {
  font-family: Source Sans\3, Source Sans\3 Fallback;
  font-style: normal;
}
.__variable_73f296 {
  --heading-font: "Source Sans 3", "Source Sans 3 Fallback";
}
