/* ==========================================================
   Fisconauta Theme – Main Stylesheet
   Matches Figma design exactly
   ========================================================== */

/* ----------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   ---------------------------------------------------------- */
:root {
  /* Colors */
  --color-black:       #101010;
  --color-body:        #3d3d3d;
  --color-white:       #ffffff;
  --color-main-blue:   #142374;
  --color-accent-blue: #1733c9;
  --color-green:       #0cb05b;
  --color-gray-light:  #f4f4f4;
  --color-gray-mid:    #8e8e8e;
  --color-dark-bg:     #000000;
  --color-card-dark:   #0d0d0f;
  --color-input-dark:  #1b1b20;
   
  /* Blue gradient */
  --gradient-blue: linear-gradient(90deg, rgba(20,35,116,1) 0%, rgba(23,51,201,1) 100%);

  /* Hero dark gradient */
  --gradient-hero-bg: radial-gradient(50% 50% at 50% -8%, rgba(35,59,185,1) 0%, rgba(10,8,28,1) 100%);

  /* Typography – Google Sans Flex */
  --font-heading: "Google Sans Flex", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Roboto", Helvetica, Arial, sans-serif;

  /* Font sizes */
  --h1-size:   80px;
  --h2-size:   70px;
  --h3-size:   46px;
  --h4-size:   34px;
  --h5-size:   21px;
  --h6-size:   21px;
  --body-size: 23px;
  --btn-size:  24px;
  --btn-footer-size: 18px;

  /* Line heights */
  --h5-lh: 32px;
  --h6-lh: 32px;
  --body-lh: 32px;

  /* Spacing */
  --section-px:    90px;
  --section-px-sm: 24px;
  --section-px-md: 48px;

  /* Radius */
  --radius-card:    20px;
  --radius-btn:     22px;
  --radius-founder: 80px 80px 0 80px;

  /* Shadows */
  --shadow-card: 0 8px 38px rgba(0,0,0,0.12);
  --shadow-btn:  0 2px 25px rgba(0,0,0,0.20);

  /* Glass card inset shadows */
  --shadow-glass: inset 0 1px 0 rgba(255,255,255,.40),
                  inset 1px 0 0 rgba(255,255,255,.32),
                  inset 0 -1px 1px rgba(0,0,0,.13),
                  inset -1px 0 1px rgba(0,0,0,.11);

  --max-content: 1548px;
  --max-hero:    1728px;
}
@media (max-width: 639px) {
  :root{
    --h1-size:   49px;
    --h2-size:   60px;
    --h3-size:   30px;
    --h4-size:   30px;
    --h5-size:   18px;
    --h6-size:   17px;
    --body-size: 19px;
    --btn-size:  21 px;
    --btn-footer-size: 18px;

  }
}

/* ----------------------------------------------------------
   2. Reset & Base
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}



body.fisco-landing {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: var(--color-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

/* ----------------------------------------------------------
   3. Typography Helpers
   ---------------------------------------------------------- */
.fisco-h1 {
  font-family: var(--font-heading);
  font-size: var(--h1-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-black);
}

.fisco-h2 {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-black);
}

.fisco-h3 {
  font-family: var(--font-heading);
  font-size: var(--h3-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-black);
}

.fisco-h4 {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--color-black);
}

.fisco-h5 {
  font-family: var(--font-heading);
  font-size: var(--h5-size);
  font-weight: 700;
  line-height: var(--h5-lh);
  letter-spacing: 0;
  color: var(--color-black);
}

.fisco-h6 {
  font-family: var(--font-body);
  font-size: var(--h6-size);
  font-weight: 700;
  font-style: italic;
  line-height: var(--h6-lh);
  letter-spacing: 0;
  color: var(--color-black);
}

.fisco-body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: var(--body-lh);
  letter-spacing: 0;
  color: var(--color-body);
}

.fisco-body-sm {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color-white);
  font-style: italic;

}

.instagram-gallery-list[data-feed_layout="carousel"] .instagram-gallery-item {
  height: 666px !important;
}
.fisco-italic { font-style: italic; }

.fisco-text-white  { color: var(--color-white) !important; }
.fisco-text-center { text-align: center; }

/* ----------------------------------------------------------
   4. Button Component
   ---------------------------------------------------------- */
.fisco-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--btn-size);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  transition: opacity 0.2s ease;
  border-radius: var(--radius-btn);
  padding: 18px 18px 18px 38px;
  box-shadow: var(--shadow-btn);
}

.fisco-btn:hover,
.fisco-btn:focus-visible {
  opacity: 0.92;
  outline: 2px solid transparent;
}

.fisco-btn--primary {
  background: var(--gradient-blue);
  color: var(--color-white);
}

.fisco-btn--light {
  background: linear-gradient(90deg, rgba(231,231,231,1) 0%, rgba(255,255,255,1) 100%);
  color: var(--color-black);
}

.fisco-btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 22px;
  flex-shrink: 0;
  background-color: white;
  border-radius: 15px;
}

.fisco-btn__arrow svg,
.fisco-btn__arrow img {
  width: 46px;
  height: 46px;
  display: block;
}

/* ----------------------------------------------------------
   5. Eyebrow Label
   ---------------------------------------------------------- */
.fisco-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.fisco-eyebrow__icon,
.fisco-eyebrow img.fisco-eyebrow__icon {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  display: block;
}

/* ----------------------------------------------------------
   6. Glass Card
   ---------------------------------------------------------- */
.fisco-glass-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(2px) brightness(110%);
  -webkit-backdrop-filter: blur(2px) brightness(110%);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-card);
  padding: 20px;
}

/* ----------------------------------------------------------
   7. Stars Component
   ---------------------------------------------------------- */
.fisco-stars {
      position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:8px ;

    border-radius:22px;

    color:#fff;
    font-size:28px;
    letter-spacing:8px;
}
.fisco-stars::before{
      content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.95),
            rgba(255,255,255,.0) 45%,
            rgba(255,255,255,.0) 75%,
            rgba(255,255,255,.8)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;

    opacity: .9;
}

/* lato inferiore */
.fisco-stars::after{
    content:"";
    position:absolute;
    bottom:0;
    left:24px;
    right:24px;
    height:2px;

    background:linear-gradient(
        to right,
        rgba(255,255,255,.05),
        rgba(255,255,255,.6),
        rgba(255,255,255,.05)
    );
}
.fisco-stars svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.fisco-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--gradient-hero-bg);
  background-size: cover;
  background-position: 50% 50%;
}

.fisco-hero__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-hero);
  margin: 0 auto;
  min-height: 1044px;
  padding: 48px var(--section-px-sm) 40px;
}

.fisco-hero__header {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 32px;
}

.fisco-logo img {
  width: 393px;
  max-width: 100%;
  height: auto;
}

.fisco-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.fisco-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 65px;
  padding-top: 24px;
}

.fisco-hero__text-group {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 740px;
}

.fisco-hero__headline {
  color: var(--color-white);
  font-size: 44px;
}

.fisco-hero__subtext {
  color: var(--color-white);
  font-size: 18px;
  line-height: 28px;
  max-width: 667px;
}

.fisco-hero__portrait {
  width: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
}

.fisco-hero__bottom {
  margin-top: -204px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.fisco-hero__credential {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.fisco-hero__credential .fisco-icon,
.fisco-hero__credential img.fisco-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.fisco-hero__credential .fisco-body-sm {
  font-size: 18px;
  line-height: 28px;
}

.fisco-hero__testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  width: 100%;
}

.fisco-hero__test-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================================================
   FOUNDER / ABOUT SECTION
   ========================================================== */
.fisco-founder {
  width: 100%;
  background: var(--color-white);
  padding: 70px var(--section-px-sm);
}

.fisco-founder__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 52px;
  width: 100%;
  place-content: center;
}

.fisco-founder__figure {
  display: flex;
  justify-content: center;
  margin: 0;
}

.fisco-founder__portrait {
  width: 100%;
  max-width: 703px;
  height: auto;
  border-radius: 28px 28px 0 28px;
  object-fit: cover;
}

.fisco-founder__portrait--placeholder {
  width: 100%;
  max-width: 703px;
  aspect-ratio: 703 / 800;
  background: var(--color-gray-light);
  border-radius: 28px 28px 0 28px;
}

.fisco-founder__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  max-width: 740px;
}

.fisco-founder__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.fisco-founder__header .fisco-eyebrow {
  margin-bottom: 5px;
}

.fisco-founder__header .fisco-h2 {
  font-size: 42px;
}

.fisco-founder__description {
  max-width: 740px;
  font-size: 18px;
  line-height: 30px;
}

/* ==========================================================
   SERVICES SECTION
   ========================================================== */
.fisco-services {
  width: 100%;
  background: var(--color-white);
  padding: 85px var(--section-px-sm) 48px;
  position: relative;
}

.fisco-services__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
}

.fisco-services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  max-width: 1184px;
}

.fisco-section-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fisco-services__intro {
  max-width: 902px;
  font-size: 20px;
  line-height: 30px;
}

.fisco-services__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
  width: 100%;
}

/* Service Card */
.fisco-service-card {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.fisco-service-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  max-height: 1000px;

}

.fisco-service-card__image--placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
  display: block;
}

.fisco-service-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 45px;
  padding: 40px 24px;
}

.fisco-service-card__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  max-width: 804px;
}

.fisco-service-card__text .fisco-h3 {
  font-size: 30px;
}

.fisco-service-card__text .fisco-body {
  font-size: 20px;
  line-height: 30px;
}

.fisco-service-card__features {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 25px;
}

/* Feature Badge */
.fisco-feature-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: var(--color-gray-light);
  border-radius: var(--radius-card);
  padding: 20px;
  backdrop-filter: blur(2px) brightness(110%);
  -webkit-backdrop-filter: blur(2px) brightness(110%);
}

.fisco-feature-badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 5px;
}

.fisco-feature-badge__dot {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-blue);
}

.fisco-feature-badge .fisco-h6 {
  font-size: 18px;
  color: var(--color-black);
}

.fisco-services__cta {
  display: flex;
  justify-content: center;
}

/* ==========================================================
   SOCIAL / MEDIA SECTION
   ========================================================== */
.fisco-social {
  position: relative;
  width: 100%;
  background: var(--gradient-hero-bg);
  background-size: cover;
  background-position: 50% 50%;
  padding: 90px var(--section-px-sm);
}

.fisco-social__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
}

.fisco-social__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  max-width: 1180px;
}

.fisco-social__header .fisco-h2 {
  font-size: 42px;
  text-align: center;
}

.fisco-social__subtitle {
  font-size: 18px;
  line-height: 30px;
  max-width: 581px;
  text-align: center;
}

.fisco-social__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 1180px;
  justify-items: center;
}

.fisco-social__shortcode {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.fisco-social__shortcode > * {
  max-width: 100%;
}

.fisco-social__shortcode img {
  max-width: 100%;
  height: auto;
}

.fisco-social__card {
  width: 100%;
  max-width: 357px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.fisco-social__card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fisco-social__card img:hover {
  transform: scale(1.02);
}

.fisco-social__card--placeholder {
  width: 100%;
  max-width: 357px;
  aspect-ratio: 357 / 420;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

/* ==========================================================
   TESTIMONIALS SECTION
   ========================================================== */
.fisco-testimonials {
  width: 100%;
  background: var(--color-white);
  padding: 110px var(--section-px-sm) ;
}

.fisco-testimonials__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 85px;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
}

.fisco-testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  max-width: 760px;
}

.fisco-testimonials__header .fisco-h2 {
  font-size: 56px;
}

.fisco-testimonials__header .fisco-body {
  font-size: 20px;
  text-align: center;
  max-width: 581px;
}

.fisco-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  width: 100%;
  max-width: var(--max-content);
}

/* Testimonial Card */
.fisco-test-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 35px 20px 20px;
  text-align: center;
  min-height: 432px;
}

.fisco-test-card__avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fisco-test-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fisco-test-card__avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.fisco-test-card__avatar-placeholder img {
  width: 48px;
  height: 48px;
  display: block;
}

.fisco-test-card__name {
  font-size: 24px;
}

.fisco-test-card__quote {
  font-size: 20px;
  line-height: 30px;
  max-width: 384px;
}

/* ==========================================================
   CONTACT SECTION
   ========================================================== */
.fisco-contact {
  position: relative;
  width: 100%;
  background: var(--color-dark-bg);
}

.fisco-contact__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-hero);
  margin: 0 auto;
}

.fisco-contact__form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark-bg);
  padding: 40px var(--section-px-sm);
  flex: 1;
}

/* Dark card with gradient border */
.fisco-contact__form-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  background: var(--color-card-dark);
  border-radius: 10px;
  padding: 40px 30px;
}

.fisco-contact__form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 0.5px;
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(37,37,44,1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.fisco-contact__header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fisco-contact__header .fisco-h4 {
  font-size: 28px;
}

.fisco-contact__subtitle {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-gray-mid);
  max-width: 620px;
}

.fisco-contact__form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 622px;
}

/* Form Field */
.fisco-field {
  position: relative;
  border-radius: 5px;
  background: var(--color-input-dark);
}

.fisco-field::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 1px;
  background: linear-gradient(0deg, rgba(53,53,60,1) 0%, rgba(35,35,41,1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.fisco-field__label {
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray-mid);
  pointer-events: none;
  transition: all 0.18s ease;
  z-index: 3;
  white-space: nowrap;
}

.fisco-field:has(.fisco-field__input:focus) .fisco-field__label,
.fisco-field:has(.fisco-field__input:not(:placeholder-shown)) .fisco-field__label {
  top: 8px;
  transform: translateY(0);
  font-size: 11px;
  color: var(--color-gray-mid);
}

.fisco-field__input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 65px;
  border: none;
  border-radius: 5px;
  background: transparent;
  padding: 22px 26px 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/* placeholder=" " trick – keep placeholder invisible */
.fisco-field__input::placeholder,
.fisco-field__textarea::placeholder {
  color: transparent;
  user-select: none;
}

.fisco-field__input:focus { outline: none; }

.fisco-field__textarea {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 122px;
  border: none;
  border-radius: 5px;
  background: transparent;
  padding: 23px 26px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  outline: none;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

/* Textarea: label starts at top, not vertically centred */
.fisco-field:has(.fisco-field__textarea) .fisco-field__label {
  top: 23px;
  transform: none;
}

.fisco-field:has(.fisco-field__textarea:focus) .fisco-field__label,
.fisco-field:has(.fisco-field__textarea:not(:placeholder-shown)) .fisco-field__label {
  top: 8px;
  font-size: 11px;
}

/* Privacy checkbox */
.fisco-privacy {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding-left: 5px;
  padding-top: 2px;
}

.fisco-privacy__checkbox {
  width: 22px;
  height: 22px;
  margin-top: 10px;
  flex-shrink: 0;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  background: var(--color-gray-light);
  accent-color: var(--color-main-blue);
  cursor: pointer;
}

.fisco-privacy__label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 41px;
  color: var(--color-gray-mid);
  cursor: pointer;
}

.fisco-required {
  color: #ff0000;
}

/* Submit area */
.fisco-contact__submit {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
}

/* Form status */
.fisco-form-status {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 8px 0;
  min-height: 24px;
}

.fisco-form-status.success { color: var(--color-green); }
.fisco-form-status.error   { color: #ff4444; }

/* Right aside - decorative image */
.fisco-contact__aside {
  min-height: 320px;
  flex: 1;
  background: #111 center/cover no-repeat;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.fisco-footer {
  width: 100%;
  background: var(--color-dark-bg);
}

.fisco-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: var(--max-hero);
  margin: 0 auto;
  padding: 90px var(--section-px-sm) 90px;
}

.fisco-footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  flex: 1;
}

.fisco-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.fisco-footer__col-title {
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 500;
  font-style: italic;
  line-height: 32px;
  color: var(--color-white);
}

.fisco-footer__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fisco-footer__list li,
.fisco-footer__link {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-white);
}

.fisco-footer__link {
  transition: opacity 0.2s;
}

.fisco-footer__link:hover {
  opacity: 0.75;
}

.fisco-footer__brand {
  flex-shrink: 0;
  align-self: flex-start;
}

.fisco-footer__brand img {
  max-width: 160px;
  height: auto;
}

/* ==========================================================
   FLOATING ACTION BUTTON
   ========================================================== */
.fisco-fab {
  position: fixed;
  right: 40px;
  top: 40px;
  z-index: 9999;
  border-radius: 25%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(7, 13, 46, 0.568);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--gradient-blue);
  transform: scale(1.38);

}

.fisco-fab::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.61),
            rgba(255,255,255,.05) 35%,
            rgba(0,0,0,.15) 100%
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

.fisco-fab:hover {
  transform: scale(1.50);
  box-shadow: 0 6px 28px rgba(20,35,116,0.55);
}

.fisco-fab svg {
  width: 20px !important;
  height: 20px !important;
}

/* ==========================================================
   RESPONSIVE – TABLET (≥ 640px)
   ========================================================== */
@media (min-width: 640px) {

  .desktop-hide{
    display: none ;
  }
  .mobile-hide{
    display: none;
  }
  .fisco-hero__inner { padding: 48px var(--section-px-md) 40px; }
  .fisco-hero__headline { font-size: 58px; }
  .fisco-hero__subtext { font-size: 20px; line-height: 30px; }
  .fisco-hero__testimonials { grid-template-columns: repeat(2, 1fr); }

  .fisco-founder { padding: 50px var(--section-px-md); }
  .fisco-founder__portrait { border-radius: 48px 48px 0 48px; }
  .fisco-founder__header .fisco-h2 { font-size: 54px; }
  .fisco-founder__description { font-size: 20px; line-height: 30px; }

  .fisco-services { padding: 85px var(--section-px-md) 48px; }
  .fisco-services__intro { font-size: 22px; line-height: 32px; }

  .fisco-social { padding: 90px var(--section-px-md); }
  .fisco-social__header .fisco-h2 { font-size: 52px; }
  .fisco-social__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .fisco-testimonials { padding: 110px var(--section-px-md) ; }
  .fisco-testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .fisco-contact__form-wrap { padding: 40px var(--section-px-md); }
  .fisco-contact__header .fisco-h4 { font-size: 30px; }
  .fisco-contact__subtitle { font-size: 20px; line-height: 30px; }

  .fisco-footer__inner { padding: 90px var(--section-px-md) 90px; }
  .fisco-footer__nav { grid-template-columns: repeat(2, 1fr); }

  .fisco-fab { width: 40px; height: 40px; right: 30px; top: 30px; }
  .fisco-fab svg { width: 80px; height: 80px; }


  .fisco-hero__grid{
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    flex: 1;
    padding-bottom: 50px;
  }
  .fisco-hero__portrait{
    min-height: 671px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 80px 0 80px 80px;
  }

  .fisco-hero__testimonials{
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    width: 100%;
  }
  .fisco-hero__bottom {
    margin-top: 0px;
  }
  .fisco-founder__inner{
    grid-template-columns: 1fr 2fr;
    align-items: inherit;
  }
  .fisco-founder__inner .fisco-section-label{
    align-items:flex-start;
  }
  .fisco-service-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 490px;
  }
  .fisco-service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 700px;
  }
  .fisco-feature-badge {
    display: inline-flex;
    flex-direction: row;
    width: 100%;
  }
  .fisco-service-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
    padding: 40px 24px;
  }
  .fisco-testimonials__grid {
    grid-template-columns: 1fr;
  }
  
}

/* ==========================================================
   RESPONSIVE – DESKTOP (≥ 1024px)
   ========================================================== */
@media (min-width: 1024px) {
  .mobile-show{
    display: none !important;
  }
  .container-img{
    position: relative;
    overflow: hidden;
  }
  .fisco-service-card:nth-child(even) .container-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(255,255,255,0) 45%,
        rgba(255,255,255,.15) 60%,
        rgba(255,255,255,.45) 72%,
        rgba(255,255,255,.75) 85%,
        #fff 100%
    );
    pointer-events: none;
  }
   .fisco-service-card:nth-child(odd) .container-img:nth-child(odd)::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
          to right,
          rgba(255,255,255,0) 45%,
          rgba(255,255,255,.15) 60%,
          rgba(255,255,255,.45) 72%,
          rgba(255,255,255,.75) 85%,
          #fff 100%
      );
      pointer-events: none;
  }


  .fisco-hero__inner { padding: 48px var(--section-px) 40px; }
  .fisco-hero__headline { font-size: var(--h1-size); line-height: 1.02; }
  .fisco-hero__subtext { font-size: var(--body-size); line-height: var(--body-lh); }
  .fisco-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: stretch;
  }
  .fisco-hero__content {
    padding-top: 50px;
  }
  .fisco-hero__portrait {
    min-height: 600px;
    height: auto;
    width: 100%;
  }

  .fisco-hero__bottom { margin-top: -200px; }
  .fisco-hero__testimonials { grid-template-columns: repeat(3, 1fr); }
  .fisco-hero__credential .fisco-body-sm { font-size: var(--h6-size); line-height: var(--h6-lh); }

  .fisco-founder { padding: 50px var(--section-px); }
  .fisco-founder__inner {
    grid-template-columns: minmax(320px, 703px) minmax(320px, 740px);
    gap: 82px;
  }
  .fisco-founder__portrait {
    border-radius: var(--radius-founder);
    max-height: 800px;
  }
  .fisco-founder__portrait--placeholder {
    border-radius: var(--radius-founder);
  }
  .fisco-founder__content { gap: 60px; }
  .fisco-founder__header .fisco-h2 { font-size: var(--h2-size); }
  .fisco-founder__description { font-size: var(--body-size); line-height: var(--body-lh); }

  .fisco-services { padding: 85px var(--section-px) 60px; }
  .fisco-services__intro { font-size: var(--body-size); line-height: var(--body-lh); }

  .fisco-service-card {
    display: grid;
    grid-template-columns: minmax(0, 630px) minmax(0, 1fr);
    min-height: 490px;
  }

  .fisco-service-card--img-left .fisco-service-card__image {
    height: 100%;
    max-height: 1000px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    grid-column: 1;
    grid-row: 1;
  }
  .fisco-service-card--img-left .fisco-service-card__body {
    grid-column: 2;
    grid-row: 1;
    padding: 20px;
    min-height: 1000px;
  }
  .fisco-service-card--img-left .fisco-service-card__text { margin: 0 44px 0 70px; }
  .fisco-service-card--img-left .fisco-service-card__features { margin-left: 70px; }

  .fisco-service-card--img-right {
    grid-template-columns: minmax(0, 1fr) minmax(0, 630px);
  }
  .fisco-service-card--img-right .fisco-service-card__body {
    grid-column: 1;
    grid-row: 1;
    padding: 20px;
    min-height: 490px;
  }
  .fisco-service-card--img-right .fisco-service-card__image {
    height: 100%;
    border-radius: 0 20px 20px 0;
    grid-column: 2;
    grid-row: 1;
  }
  .fisco-service-card--img-right .fisco-service-card__text { margin: 0 0 0 70px; }
  .fisco-service-card--img-right .fisco-service-card__features { margin-left: 70px; }

  .fisco-service-card__image { height: 100% !important; }
  .fisco-service-card__image--placeholder { height: 100% !important; aspect-ratio: unset; }
  .fisco-service-card__text .fisco-h3 { font-size: var(--h3-size); }
  .fisco-service-card__text .fisco-body { font-size: var(--body-size); line-height: var(--body-lh); }

  .fisco-social { padding: 90px var(--section-px); }
  .fisco-social__header .fisco-h2 { font-size: var(--h2-size); }
  .fisco-social__subtitle { font-size: var(--body-size); line-height: var(--body-lh); }
  .fisco-social__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
  }

  .fisco-testimonials { padding: 110px var(--section-px) ; }
  .fisco-testimonials__header .fisco-h2 { font-size: var(--h2-size); }
  .fisco-testimonials__header .fisco-body { font-size: var(--body-size); }
  .fisco-testimonials__grid { grid-template-columns: repeat(3, 1fr); }

  .fisco-contact__inner {
    flex-direction: row;
    min-height: 1092px;
    align-items: stretch;
  }
  .fisco-contact__form-wrap {
    padding: 0 0 0 var(--section-px);
    flex: 1;
  }
  .fisco-contact__form-card {
    gap: 60px;
    min-height: 846px;
    padding: 80px 60px;
    justify-content: center;
  }
  .fisco-contact__header .fisco-h4 { font-size: var(--h4-size); }
  .fisco-contact__subtitle { font-size: 23px; line-height: 32px; }
  .fisco-contact__aside {
    min-height: 1092px;
    max-width: 827px;
    flex: 1;
  }

  .fisco-footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding: 90px var(--section-px) 90px;
  }
  .fisco-footer__nav {
    grid-template-columns: 190px 135px minmax(0, 575px);
    gap: 120px;
    flex: 1;
  }
  .fisco-footer__brand { padding-top: 0; }

  .fisco-fab { right: 80px; top: 120px; width: 47px; height: 47px; }
  .fisco-fab svg { width: 97px; height: 97px; }

 
}
@media screen and (min-width: 1024px) and (max-width: 1639px) {
  /* Le tue regole CSS */
  .fisco-hero__bottom{
    margin-top: 0;
  }
}
/* ==========================================================
   RESPONSIVE – LARGE DESKTOP (≥ 1280px)
   ========================================================== */
@media (min-width: 1280px) {
  .fisco-hero__headline { font-size: 80px; }
  .fisco-social__header .fisco-h2 { font-size: 70px; }
}

/* ==========================================================
   RESPONSIVE – MOBILE (< 640px) — matches Figma mobile design
   ========================================================== */
@media (max-width: 639px) {
  .fisco-privacy__label{
    line-height: 23px;
  }
  .fisco-privacy__checkbox{
    margin-top: 0px;
  }
  .fisco-form-status{
    position: absolute;
  }
  .fisco-privacy{
    margin-bottom: 10px;
  }
  .fisco-contact__header h2{
    font-size: 35px !important;
  }
  section{
    padding-bottom: 30px !important;
  }
.desktop-hide{
  display: none ;
}
.mobile-show{
    display: inherit !important;
  }
  /* --- Tokens mobile --- */
  :root {
    --section-px-sm: 35px;
  }

  /* --- Hero --- */
  .fisco-hero__inner {
    padding: 40px 35px 0;
    min-height: unset;
  }

  .fisco-logo img {
    width: 100%;
    max-width: 341px;
  }

  .fisco-hero__header {
    justify-content: center;
    margin-bottom: 40px;
  }

  .fisco-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .fisco-hero__portrait {
    width: 100%;
    height: 420px;
    border-radius: 80px 0 80px 80px;
    order: -1;
    min-height: unset;
    margin-bottom: 35px;
  }

  .fisco-hero__content {
    padding-top: 0;
    gap: 35px;
  }

  .fisco-hero__text-group { gap: 25px; max-width: 100%; }

  .fisco-hero__headline {
    font-size: 38px;
    line-height: 1.05;
  }

  .fisco-hero__subtext {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }

  .fisco-btn {
    font-size: 19px;
    padding: 12px 12px 12px 28px;
    border-radius: 18px;
  }

  .fisco-btn__arrow { margin-left: 14px; }
  .fisco-btn__arrow svg,
  .fisco-btn__arrow img { width: 36px; height: 36px; }

  .fisco-hero__bottom {
    margin-top: 85px;
    padding: 0;
    gap: 22px;
  }

  .fisco-hero__credential { gap: 12px; }
  .fisco-hero__credential .fisco-body-sm { font-size: 14px; line-height: 22px; }

  .fisco-hero__testimonials {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 0;
  }

  /* glass card mobile */
  .fisco-glass-card { padding: 14px 18px; border-radius: 20px; }
  .fisco-hero__test-card .fisco-h6 { font-size: 16px; line-height: 24px; }

  /* --- Founder / About --- */
  .fisco-founder {
    padding: 35px 35px 0;
  }

  .fisco-founder__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .fisco-founder__portrait {
    max-width: 100%;
    border-radius: 80px 80px 0 80px;
  }

  .fisco-founder__portrait--placeholder {
    max-width: 100%;
    border-radius: 80px 80px 0 80px;
  }

  .fisco-founder__content {
    gap: 35px;
    align-items: center;
    text-align: center;
  }
  .fisco-founder__header { gap: 20px; align-items: center; }
  .fisco-founder__header .fisco-h5 { font-size: 16px; }
  .fisco-founder__header .fisco-h2 { font-size: 38px; line-height: 1.0; }
  .fisco-founder__description { font-size: 16px; line-height: 24px; }

  /* --- Services --- */
  .fisco-services {
    padding: 45px 25px 0;
  }

  .fisco-services__inner { gap: 60px; }
  .fisco-services__header { align-items: flex-start; gap: 20px; }
  .fisco-section-label { align-items: flex-start; gap: 8px; }
  .fisco-section-label .fisco-h5 { font-size: 16px; }
  .fisco-section-label .fisco-h2 { font-size: 38px; line-height: 1.2; }
  .fisco-services__intro { font-size: 16px; line-height: 24px; }
  .fisco-services__list { gap: 35px; }

  /* Service card mobile: vertical, image on top */
  .fisco-service-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 40px;
    overflow: hidden;
  }

  .fisco-service-card__image {
    height: 240px !important;
    width: 100% !important;
    border-radius: 0 !important;
    order: -1;
    max-height: 490px;
    object-fit: cover;

  }

  .fisco-service-card__image--placeholder {
    height: 240px !important;
    border-radius: 0 !important;
    order: -1;
  }

  .fisco-service-card__body {
    padding: 10px 20px 20px !important;
    gap: 35px;
    grid-column: unset !important;
    grid-row: unset !important;
    margin: 0 !important;
    min-height: unset !important;
  }

  .fisco-service-card__text {
    align-items: center;
    margin: 0 !important;
    padding-top: 10px;
  }

  .fisco-service-card__text .fisco-h3 {
    font-size: 22px;
    text-align: center;
  }

  .fisco-service-card__text .fisco-body {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .fisco-service-card__features {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 0 !important;
    width: 100%;
  }

  .fisco-feature-badge {
    height: 115px;
    padding: 17px;
    border-radius: 20px;
    gap: 5px;
  }

  .fisco-feature-badge img { width: 30px; height: 30px;   margin-bottom: 5px;
}
  .fisco-feature-badge .fisco-h6 { font-size: 16px; line-height: 18px; }

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

  /* --- Social --- */
  .fisco-social {
    padding: 80px 35px 0;
  }

  .fisco-social__inner { gap: 75px; }
  .fisco-social__header { align-items: flex-start; gap: 20px; max-width: 100%; }
  .fisco-social__header .fisco-eyebrow { font-size: 16px; }
  .fisco-social__header .fisco-h2 { font-size: 38px; line-height: 1.05; text-align: left; }
  .fisco-social__subtitle { font-size: 16px; line-height: 24px; text-align: left; }

  /* 3-column image strip: narrow | wide | narrow */
  .fisco-social__grid {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 35px;
    max-width: 100%;
    width: calc(100% + 70px);
    margin-left: -35px;
    margin-right: -35px;
  }

  .fisco-social__card {
    flex: 0 0 auto;
    max-width: unset;
    border-radius: 10px;
  }

  .fisco-social__card:nth-child(1),
  .fisco-social__card:nth-child(3) {
    width: 35px;
    height: 525px;
    overflow: hidden;
  }

  .fisco-social__card:nth-child(1) img,
  .fisco-social__card:nth-child(3) img {
    width: 35px;
    height: 525px;
    object-fit: cover;
    border-radius: 10px;
  }

  .fisco-social__card:nth-child(2) {
    width: 300px;
    height: 525px;
  }

  .fisco-social__card:nth-child(2) img {
    width: 300px;
    height: 525px;
    object-fit: cover;
    border-radius: 10px;
  }

  .fisco-social__card--placeholder {
    max-width: unset;
    aspect-ratio: unset;
  }

  /* --- Testimonials --- */
  .fisco-testimonials {
    padding: 50px 50px  !important;
  }

  .fisco-testimonials__inner { gap: 50px; }
  .fisco-testimonials__header { align-items: flex-start; gap: 20px; max-width: 100%; }
  .fisco-testimonials__header .fisco-eyebrow { font-size: 16px; }
  .fisco-testimonials__header .fisco-h2 { font-size: 38px; line-height: 0.95; text-align: left; }
  .fisco-testimonials__header .fisco-body { font-size: 16px; line-height: 24px; text-align: left; max-width: 100%; }

  .fisco-testimonials__grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .fisco-test-card {
    min-height: auto;
    padding: 25px 20px 25px;
    border-radius: 40px;
    gap: 15px;
  }

  .fisco-test-card__avatar { width: 50px; height: 50px; }
  .fisco-test-card__name { font-size: 20px; }
  .fisco-test-card__quote { font-size: 16px; line-height: 24px; }

  /* --- Contact --- */
  .fisco-contact__form-wrap {
    padding: 60px 35px 0;
  }

  .fisco-contact__form-card {
    padding: 46px 30px;
    gap: 35px;
    border-radius: 10px;
    max-width: 100%;
  }

  .fisco-contact__header .fisco-h4 { font-size: 22px; line-height: 1.3; }
  .fisco-contact__subtitle { font-size: 16px; line-height: 24px; }
  .fisco-contact__aside { display: none; }

  /* --- Footer --- */
  .fisco-footer__inner {
    padding: 60px 35px 60px;
    gap: 90px;
    flex-direction: column;
  }

  .fisco-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }

  .fisco-footer__col {
    align-items: center;
    width: 278px;
    max-width: 100%;
  }

  .fisco-footer__col-title {
    font-size: 23px;
    text-align: center;
  }

  .fisco-footer__list {
    align-items: center;
  }

  .fisco-footer__list li,
  .fisco-footer__link {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .fisco-footer__brand {
    align-self: center;
    display: flex;
    justify-content: center;
  }

  .fisco-footer__brand img { max-width: 200px; }

  /* --- FAB --- */
  .fisco-fab {
    width: 60px;
    height: 60px;
    top:unset;
    bottom: 35px !important;
    right: 35px !important;
    transform: scale(1);
  }

  .fisco-fab svg { width: 60px; height: 60px; }

  .fisco-h2{
    font-size: 45px !important;
  }
  .fisco-body{
    font-size: 19px !important;
  }
 .fisco-hero__headline{
    font-size: 45px;
    line-height: 1.2;
  }
  .fisco-h1{
    font-size: 45px;
    line-height: 1.2;
  }

  .fisco-body-sm{
    font-size: 17px;
  }
  .fisco-hero__credential .fisco-body-sm{
    font-size:17px;
  }
  .fisco-hero__credential{
    align-items: center;
  }
  .fisco-feature-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .fisco-founder__header{
    text-align: left;
  } 
  .fisco-services__header{
    text-align: left;
  }
  .fisco-text-center{
    text-align: left;
  }
  .fisco-founder__content {
    gap: 35px;
    align-items: flex-start;
    text-align: center;
  }
  .fisco-services{
    padding: 35px 35px 0;
  }
  .fisco-founder{
    padding-bottom:100px!
  }
  .fisco-26{
    font-size: 26px !important;
  }
.container-img{
      position: relative;
    overflow: hidden;
}
  .container-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px; /* Regola l'altezza della sfumatura */
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 25%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.75) 75%,
        #fff 100%
    );
    pointer-events: none;

  }

  .fisco-body {
    line-height: 25px;
  }
}

@media screen and (min-width:1024px){

.desktop-hide{
  display: inherit ;
}
  .mobile-hide {
    display: inherit;
  }

  .fisco-feature-badge {
    display: inline-flex;
    flex-direction: row;
    width: auto;
  }


}

/* ==========================================================
   ACCESSIBILITY
   ========================================================== */
:focus-visible {
  outline: 3px solid rgba(23,51,201,0.8);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   ADMIN BAR OFFSET
   ========================================================== */
body.admin-bar .fisco-fab {
  top: calc(86px + 16px);
}

@media (min-width: 783px) {
  body.admin-bar .fisco-fab {
    top: calc(72px + 16px);
  }
}
@media (max-width: 639px) {
 body.admin-bar .fisco-fab {
    top:unset;
    bottom: 35px !important;
    right: 35px !important;
  }

}
.fisco-footer__brand{
  padding-top: 10px;
}
.fisco-footer__brand span{
  font-size: 35px;
  width: 40px;
  color: white;
}
/* ==========================================================
   UTILITY
   ========================================================== */
.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;
}
