/** Gradient colors */
/** Font size **/
/** font tab **/
/** Font weight **/
/** Line height **/
/** BOX SHADOW **/
/** BORDER RADIUS **/
/* SPACING */
/* ANIMATION */
/* HEIGHT AND WIDTH */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

:root {
  --fontFamily-noto_sans: "Helvetica", "Arial", sans-serif;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: #f6f6f9;
  font-family: var(--fontFamily-noto_sans);
  overflow-y: overlay;
  position: relative;
  color: #1f2933;
}

body.modal-open {
  overflow: hidden;
}

main {
  position: relative;
}
main.login {
  padding-top: 0;
}
@media only screen and (min-width: 768px) {
  main {
    padding-top: 0;
  }
}
@media only screen and (min-width: 75em) {
  main {
    padding-top: 40px;
  }
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  margin-bottom: 0;
}

p {
  line-height: 1.4;
  font-size: 1.7rem;
}

.hidden {
  display: none;
}

.visible {
  opacity: 1 !important;
}

h1 {
  font-size: 30px;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 75em) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 26px;
  margin: 10px 0;
}

h3 {
  font-size: 20px;
}

.legal__toc-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  padding: 4px 0;
}

.legal__toc-list li a {
  font-weight: 600;
}

.guide_list-container li {
  font-size: 16px;
  padding: 4px 0;
  list-style: disc;
}

.container {
  display: grid;
  max-width: 540px;
  width: 100%;
  margin-inline: auto;
  padding: 25px 15px 0 15px;
}
@media only screen and (min-width: 768px) {
  .container {
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    align-items: center;
    padding: 20px 15px;
    max-width: 760px;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    max-width: 970px;
    padding: 20px 15px;
    gap: 50px;
  }
  .container.header_container {
    padding: 20px 15px;
  }
}
.container__flex {
  display: flex;
  flex-direction: column;
}

.ff-ads {
  width: 100%;
  min-height: 90px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px dashed #dce1eb;
  background: #f6f6f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #7d8da1;
}
@media only screen and (min-width: 768px) {
  .ff-ads {
    min-height: 120px;
    margin-bottom: 0;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2000;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__overlay {
  position: absolute;
  inset: 0;
}
.modal__content {
  position: relative;
  background: #fff;
  color: #363949;
  width: min(720px, 100%);
  max-height: 85vh;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  overflow-y: auto;
}
.modal__title {
  font-size: 2rem;
  margin-bottom: 12px;
}
.modal__logo {
  max-height: 42px;
  width: auto;
  margin-bottom: 12px;
}
.modal__body {
  display: grid;
  gap: 12px;
  line-height: 1.6;
  font-size: 1.5rem;
  color: #363949;
}
.modal__list {
  padding-left: 18px;
  list-style: disc;
  display: grid;
  gap: 6px;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f6f6f9;
  border: 1px solid #dce1eb;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  line-height: 1;
  color: #363949;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.modal__close:hover, .modal__close:focus-visible {
  background: #10162f;
  color: #fff;
  border-color: #002395;
}
.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .modal__actions {
    flex-direction: row;
    justify-content: space-evenly;
  }
}
.modal__cta {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1.4rem;
  border: 1px solid #002395;
  color: #002395;
  background: #fff;
  width: 100%;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.modal__cta--primary {
  background: #002395;
  color: #fff;
}
.modal__cta--secondary {
  border-color: #dce1eb;
  color: #363949;
}
.modal__cta:hover, .modal__cta:focus-visible {
  background: #10162f;
  color: #fff;
  border-color: #10162f;
}
.modal__note {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  background: #dce1eb;
  border-radius: 8px;
  font-size: 1.4rem;
}

.footer__nav {
  margin: 0.5rem 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
}
.footer__links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__links a:focus-visible {
  outline: 2px solid #002395;
  outline-offset: 2px;
}

.ff-sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 30;
  transform: translateY(100%);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
  grid-template-columns: 1fr;
}
.ff-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(246, 246, 249, 0.95);
  color: #1f2933;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px 0 hsla(0deg, 0%, 0%, 0.05);
  border-radius: 8px;
}
.ff-sticky-cta__text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  flex: 1 1 auto;
  display: none;
}
@media only screen and (min-width: 768px) {
  .ff-sticky-cta__text {
    display: flex;
  }
}
@media only screen and (min-width: 75em) {
  .ff-sticky-cta__text {
    font-size: 1.7rem;
  }
}
.ff-sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #002395;
  padding: 10px 14px;
  color: #fff;
  font-weight: 500;
  font-size: 1.7rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.ff-sticky-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 2rem 0 3rem rgba(132, 139, 200, 0.18);
}
.ff-sticky-cta__button:active {
  transform: translateY(0);
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
}
.ff-sticky-cta__button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.ff-sticky-cta.is-visible {
  transform: translateY(-10%);
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (min-width: 75em) {
  .ff-sticky-cta.is-visible {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 37.5em) {
  .ff-sticky-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .ff-sticky-cta__button {
    width: 100%;
    justify-content: center;
  }
}

.services {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0 0 0px 20px;
  position: relative;
  z-index: 2;
}

.services__item {
  margin: 0;
}

.services__link {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #dce1eb;
  border-radius: 10px 10px 4px 4px;
  background: #dce1eb;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 72px;
  text-align: center;
}
.services__link:hover, .services__link:focus-visible {
  border-color: #7d8da1;
  color: #0f172a;
  background: #fff;
}

.services__item--active .services__link {
  border-color: #fff;
  background: #fff;
  color: #1f2933;
}

.ff-form__panel {
  margin-top: 12px;
}

.ff-toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 9999;
  width: min(360px, 100% - 2.5rem);
  pointer-events: none;
}

.ff-toast {
  --toast-accent: $color-info;
  --toast-bg: #0f172a;
  --toast-border: rgba(255, 255, 255, 0.06);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: var(--toast-bg);
  border: 1px solid var(--toast-border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(15, 23, 42, 0.3);
  font-size: 0.95rem;
  color: #f2f5ff;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  pointer-events: auto;
}
.ff-toast::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  pointer-events: none;
}
.ff-toast::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--toast-accent);
}

.ff-toast.is-hiding {
  opacity: 0;
  transform: translateY(6px);
}

.ff-toast__icon {
  flex: 0 0 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--toast-accent);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ff-toast__text {
  flex: 1;
  line-height: 1.4;
}

.ff-toast--error {
  --toast-accent: #ef4444;
}

.ff-toast--success {
  --toast-accent: #22c55e;
}

.ff-toast--info {
  --toast-accent: #3b82f6;
}

.header {
  position: relative;
  width: 100%;
  background-color: #f6f6f9;
  z-index: 10;
  transition: all 0.5s;
}
.header .btn {
  background-color: #f6f6f9;
  padding: 0 !important;
  min-width: auto;
}
@media only screen and (min-width: 768px) {
  .header .btn {
    background-color: #002395;
    padding: 8px 16px !important;
    order: 3;
  }
}
@media only screen and (min-width: 75em) {
  .header .btn {
    order: 2;
  }
}
.header .btn__txt {
  display: none;
}
@media only screen and (min-width: 768px) {
  .header .btn__txt {
    display: block;
  }
}
.header .btn__icon {
  color: #002395;
  font-size: 3rem;
  background-color: #eee;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .header .btn__icon {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .header .btn {
    display: block;
    margin-inline-start: 0;
  }
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
}
.header.active {
  padding-block: 8px;
  box-shadow: 0 8px 20px 0 hsla(0deg, 0%, 0%, 0.05);
  border-block-end: 1px solid #f6f6f9;
  animation: slideIn 0.5s ease forwards;
}
@media only screen and (max-width: 37.5em) {
  .header.active {
    padding-block: 20px;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 4px 15px;
}
@media only screen and (min-width: 75em) {
  .header .container {
    padding: 10px 15px;
  }
}
.header_btn-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-inline-start: auto;
}
.header .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #363949;
}
.header .logo__name {
  display: none;
}
@media only screen and (min-width: 75em) {
  .header .logo__name {
    display: block;
  }
}
.header .logo img {
  width: 130px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .header .logo img {
    width: 150px;
    max-height: 50px;
    object-fit: contain;
  }
}
.header.header_login {
  position: inherit;
  width: initial;
  background: none;
}
.header.header_login .container {
  max-width: none;
}

.language-switcher {
  position: relative;
}
.language-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background-color: #fff;
  border: 1px solid #f6f6f9;
  border-radius: 8px;
  box-shadow: 0 8px 20px 0 hsla(0deg, 0%, 0%, 0.05);
  color: #1f2933;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.language-switcher__toggle:hover, .language-switcher__toggle:focus-visible {
  background-color: #f6f6f9;
  border-color: #10162f;
  outline: none;
  box-shadow: 0px 3px 20px hsla(180deg, 90%, 43%, 0.2);
}
.language-switcher__flag {
  font-size: 1.6rem;
}
.language-switcher__current {
  line-height: 1.2;
}
.language-switcher__chevron {
  font-size: 1.3rem;
  color: #4b5563;
}

.language__overflow {
  position: absolute;
  right: 0;
  margin-top: 8px;
  background-color: #fff;
  border: 1px solid #f6f6f9;
  border-radius: 16px;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 15;
}
@media only screen and (min-width: 75em) {
  .language__overflow {
    max-height: none;
  }
}

.language__list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.language__title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  text-decoration: none;
  color: #1f2933;
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.language__title:hover {
  background-color: #f6f6f9;
  color: #002395;
}
.language__title_selected {
  color: #002395;
  font-weight: 600;
}

.language__mark {
  width: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #002395;
  font-size: 1.2rem;
}

[data-language-menu][hidden] {
  display: none;
}

.nav-open-btn,
.nav-close-btn,
.filters-close-btn {
  color: #002395;
  font-size: 3.5rem;
}
@media only screen and (min-width: 75em) {
  .nav-open-btn,
  .nav-close-btn,
  .filters-close-btn {
    display: none !important;
  }
}

@media only screen and (min-width: 75em) {
  .filters-close-btn {
    display: initial !important;
  }
}

#header_login {
  display: none;
}
@media only screen and (min-width: 75em) {
  #header_login {
    display: initial !important;
  }
}

#header_signIn {
  display: none;
}
@media only screen and (min-width: 75em) {
  #header_signIn {
    display: initial !important;
  }
}

.hero_container {
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 75em) {
  .hero_container {
    grid-template-columns: 1.8fr 1fr;
  }
}

.ff-form-container {
  margin-inline: auto;
  justify-content: center;
}

.ff-form {
  color: #1f2933;
}
.ff-form__submit-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.ff-form__card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 20px 0 hsla(0deg, 0%, 0%, 0.05);
  width: 100%;
}
.ff-form__header {
  margin-bottom: 1.25rem;
}
.ff-form__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.ff-form__subtitle {
  margin: 0;
  font-size: 1.2rem;
  color: #4b5563;
}
.ff-form__body {
  margin-top: 0.75rem;
}
.ff-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1px;
  grid-row-gap: 20px;
}
.ff-form__row {
  margin-bottom: 0.9rem;
}
.ff-form__row--inline {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 600px) {
  .ff-form__row--inline {
    flex-direction: column;
  }
}
.ff-form__field {
  flex: 1 1 0;
}
.ff-form__label {
  display: flex;
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0c1013;
  gap: 4px;
}
.ff-form__required {
  color: #ff7782;
  font-weight: 600;
}
.ff-form__input, .ff-form__select {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #dce1eb;
  background: #f6f6f9;
  font-size: 1.2rem;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}
.ff-form__input:focus, .ff-form__select:focus {
  border-color: #10162f;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(16, 22, 47, 0.15);
}
.ff-form__color-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #dce1eb;
  background: #f6f6f9;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  min-height: 36px;
}
.ff-form__color-input:focus {
  border-color: #10162f;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(16, 22, 47, 0.15);
}
.ff-form__color-input::-webkit-color-swatch-wrapper {
  padding: 0;
  border-radius: 16px;
}
.ff-form__color-input::-webkit-color-swatch, .ff-form__color-input::-moz-color-swatch {
  border: none;
  border-radius: 16px;
}
.ff-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  background: #002395;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.25s ease;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  width: 100%;
}
@media only screen and (min-width: 75em) {
  .ff-form__submit {
    max-width: fit-content;
  }
}
.ff-form__submit.is-hidden {
  display: none;
}
.ff-form__submit:hover {
  background: #00196c;
  transform: translateY(-1px);
  box-shadow: 2rem 0 3rem rgba(132, 139, 200, 0.18);
}
.ff-form__submit:active {
  transform: translateY(0);
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
}
.ff-form__submit:focus-visible {
  outline: 2px solid #002395;
  outline-offset: 3px;
}
.ff-form__submit .loader {
  display: none;
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
  border-bottom-color: #ffbb55;
  border-radius: 50%;
  box-sizing: border-box;
  animation: ff-submit-rotation 1s linear infinite;
}
.ff-form__submit.is-loading {
  cursor: progress;
}
.ff-form__submit.is-loading .loader {
  display: inline-block;
}
.ff-form__submit.is-loading .ff-form__submit-text {
  opacity: 0.7;
}
.ff-form__submit-icon {
  font-size: 1rem;
}
.ff-form__submit-text {
  white-space: nowrap;
}
.ff-form__hint {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #4b5563;
}
.ff-form__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px dashed #dce1eb;
  background: transparent;
  color: #002395;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.ff-form__toggle:hover {
  color: #001c76;
  border-color: #002395;
  background: rgba(0, 35, 149, 0.05);
}
.ff-form__toggle:focus-visible {
  outline: 2px solid #002395;
  outline-offset: 3px;
}
.ff-form__advanced {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.5s ease, opacity 0.25s ease, margin-top 0.25s ease;
}
.ff-form__advanced.is-open {
  max-height: 1600px;
  opacity: 1;
  pointer-events: auto;
  margin-top: 0.25rem;
}
.ff-form__progress {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.ff-progress {
  display: none;
  gap: 0.35rem;
}
.ff-progress.is-visible {
  display: grid;
}

.ff-progress__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #7d8da1;
}

.ff-progress__title {
  font-weight: 500;
}

.ff-progress__value {
  font-variant-numeric: tabular-nums;
}

.ff-progress__track {
  background: #dce1eb;
  border-radius: 200px;
  height: 10px;
  overflow: hidden;
}

.ff-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%);
  transition: width 0.3s ease;
}

.ff-download__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #002395;
  background: #002395;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.08s ease;
}
@media only screen and (min-width: 75em) {
  .ff-download__button {
    max-width: fit-content;
  }
}
.ff-download__button:hover {
  background: #fff;
  color: #002395;
  transform: translateY(-1px);
}
.ff-download__button:focus-visible {
  outline: 2px solid #002395;
  outline-offset: 3px;
}

.ff-download__button.is-hidden {
  display: none;
}

@keyframes ff-submit-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ff-upload {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  border: 1.5px dashed #dce1eb;
  border-radius: 8px;
  padding: 1.2rem 1rem;
  text-align: center;
  background: #fff;
  min-height: 200px;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.08s ease;
  position: relative;
}
.ff-upload:hover {
  border-color: #7d8da1;
  background: #e2e7ef;
}
.ff-upload.is-dragover {
  border-color: #002395;
  background: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%);
  box-shadow: 0 0 0 1.5px rgba(0, 35, 149, 0.25);
  transform: translateY(-1px);
}
.ff-upload__remove {
  position: absolute;
  right: 2%;
  top: 2%;
  background: #fff;
  padding: 3px 6px;
  border-radius: 50%;
  font-size: 10px;
  border: 0.1px solid #7d8da1;
}
.ff-upload__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.ff-upload__content {
  pointer-events: none;
}
.ff-upload__content .ff-upload__browse {
  pointer-events: auto;
}
.ff-upload__title {
  margin: 0.1rem 0;
  font-weight: 600;
  font-size: 1.8rem;
}
.ff-upload__or {
  margin: 0.1rem 0;
  font-size: 0.85rem;
  color: #7d8da1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.ff-upload__browse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.4rem 0;
  padding: 0.5rem 1rem;
  border-radius: 200px;
  border: none;
  background: #363949;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.08s ease;
}
.ff-upload__browse:hover {
  background: #292b37;
  transform: translateY(-0.5px);
}
.ff-upload__browse:focus-visible {
  outline: 2px solid #002395;
  outline-offset: 3px;
}
.ff-upload__help {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #4b5563;
}
.ff-upload__feedback {
  margin-top: 0.6rem;
  text-align: left;
  width: 100%;
  text-align: center;
  display: block;
}
.ff-upload__feedback.is-hidden {
  display: none;
}
.ff-upload__feedback.is-visible {
  display: block;
}
.ff-upload__count {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  color: #677483;
}
.ff-upload__count.is-error {
  color: #ff7782;
  font-weight: 600;
}
.ff-upload__list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.ff-upload__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  padding: 0.75rem;
  border: 1px solid rgba(220, 225, 235, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.25s ease, transform 0.08s ease;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.ff-upload__item.is-loading {
  opacity: 0.95;
}
.ff-upload__item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.ff-upload__thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #dce1eb;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 141, 161, 0.4);
}
.ff-upload__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ff-upload__thumb--placeholder {
  background: #f6f6f9;
  font-size: 0.7rem;
  font-weight: 600;
  color: #7d8da1;
  text-transform: uppercase;
}
.ff-upload__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.ff-upload__file-name {
  flex: 1 1 0;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.ff-upload__file-size {
  font-size: 0.75rem;
  color: #7d8da1;
  white-space: nowrap;
}
.ff-upload__progress {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.ff-upload__progress-bar {
  height: 6px;
  border-radius: 200px;
  background: #dce1eb;
  width: 0;
  flex: 1 1 auto;
  position: relative;
}
.ff-upload__progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #002395, #10162f);
  width: inherit;
}
.ff-upload__progress-label {
  font-size: 0.75rem;
  color: #7d8da1;
  min-width: 36px;
  text-align: right;
}

.ff-upload__actions {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
@media only screen and (min-width: 768px) {
  .ff-upload__actions {
    margin: 2rem;
    justify-content: center;
  }
}
.ff-upload__actions .ff-upload__action {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #dce1eb;
  background: #fff;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
@media only screen and (min-width: 768px) {
  .ff-upload__actions .ff-upload__action {
    padding: 10px 20px;
  }
}
.ff-upload__actions .ff-upload__action:hover {
  background: white;
  border-color: #7d8da1;
}
.ff-upload__actions .ff-upload__action:focus-visible {
  outline: 2px solid #002395;
  outline-offset: 3px;
}
.ff-upload__actions .ff-upload__action--add {
  color: #002395;
  border-color: #002395;
}
.ff-upload__actions .ff-upload__action--add:hover {
  background: #6c8fff;
}
.ff-upload__actions .ff-upload__action--clear {
  color: #ff7782;
  border-color: #ff7782;
}
.ff-upload__actions .ff-upload__action--clear:hover {
  background: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container.txt__section {
  grid-template-columns: 1fr;
  gap: 20px;
}

.legal {
  padding-bottom: 40px;
}

.legal__header,
.legal__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal__intro {
  line-height: 1.6;
}

.legal__list {
  padding-left: 1.5rem;
}
.legal__list li {
  list-style: disc;
}
.legal__list li + li {
  margin-top: 0.5rem;
}

.legal__address {
  line-height: 1.6;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:focus-visible {
  outline: 2px solid #002395;
  outline-offset: 2px;
}

.ff_section-cta {
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.ff-section-cta__button {
  width: fit-content;
}

.faq__item {
  padding: 20px 0;
}
.faq__question {
  padding: 4px 0;
}

.footer {
  text-align: center;
  padding: 20px 15px;
}
@media only screen and (min-width: 768px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.footer__cookie-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
}
.footer__cookie-logo {
  height: 100%;
  width: auto;
}

.ff-404 {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
  min-height: 70vh;
  display: grid;
  place-items: center;
  color: #7d8da1;
}
.ff-404__content {
  position: relative;
  max-width: 560px;
  text-align: center;
  z-index: 1;
}
.ff-404__eyebrow {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(89, 97, 249, 0.12);
  color: #002395;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.ff-404__title {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 1rem;
}
.ff-404__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #7d8da1;
  margin: 0 auto 2rem;
  max-width: 460px;
}
.ff-404__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  background: #002395;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(89, 97, 249, 0.2);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.ff-404__cta:hover, .ff-404__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(89, 97, 249, 0.25);
  background: #001e81;
}
.ff-404__shape, .ff-404__shape--secondary {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
}
.ff-404__shape {
  width: 320px;
  height: 320px;
  top: 10%;
  left: 12%;
}
.ff-404__shape--secondary {
  width: 280px;
  height: 280px;
  background: rgba(16, 24, 40, 0.12);
  bottom: 8%;
  right: 10%;
}
@media (max-width: 640px) {
  .ff-404 {
    padding: 4rem 1.25rem;
  }
  .ff-404__text {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
