/*!
 * FCRF-42Firenze – layout.css
 * Header, footer, page layout, section spacing, wrappers.
 */

  /* CONTAINER XXL
-------------------------------------*/

@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1600px;
  }
}


 /* MENU
-------------------------------------*/


.navbar-expand-lg {
  border-bottom: 1px solid #333;
  margin-top: -1px;
}

body.search .navbar-expand-lg,
body.blog .navbar-expand-lg,
body.single .navbar-expand-lg,
body.archive .navbar-expand-lg,
body.error404 .navbar-expand-lg {
  border-bottom: none;
  background:
  radial-gradient(800px circle at 15% 30%, rgba(0,220,255,.22), transparent 60%),
  radial-gradient(600px circle at 92% 42%, rgba(236,51,145,.18), transparent 58%),
  radial-gradient(850px circle at 50% 82%, rgba(120,120,255,.16), transparent 65%),
  #020202;
}

body.home .navbar-expand-lg,
body.front-page .navbar-expand-lg,
body.has-home-slider .navbar-expand-lg,
body.has-page-hero .navbar-expand-lg,
body.page-trasp-no-thumb .navbar-expand-lg {
  border-bottom: none;
}

body.has-page-hero .navbar-expand-lg,
body.home .navbar-expand-lg,
body.front-page .navbar-expand-lg,
body.has-home-slider .navbar-expand-lg,
body.page-trasp-no-thumb .navbar-expand-lg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background: transparent;
}

body.page-trasp-no-thumb .navbar-expand-lg .container-xxl {
  margin-top: 0 !important;
}

body.has-page-hero .page-header-hero {
  margin-top: 0;
  padding-top: 8rem;
}

.page-header-hero--image {
  position: relative;
  overflow: hidden;
}

.page-header-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-header-hero--image > .container {
  position: relative;
  z-index: 1;
}

.page-hero-container {
  padding-top: 5rem;
}

body.admin-bar.has-page-hero .navbar-expand-lg,
body.admin-bar.home .navbar-expand-lg,
body.admin-bar.front-page .navbar-expand-lg,
body.admin-bar.has-home-slider .navbar-expand-lg,
body.admin-bar.page-trasp-no-thumb .navbar-expand-lg {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.has-page-hero .navbar-expand-lg,
  body.admin-bar.home .navbar-expand-lg,
  body.admin-bar.front-page .navbar-expand-lg,
  body.admin-bar.has-home-slider .navbar-expand-lg,
  body.admin-bar.page-trasp-no-thumb .navbar-expand-lg {
    top: 46px;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container-xxl {
    max-width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .fcrf-burger-btn {
    margin-right: 0;
  }
}


.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.navbar-brand {
  width: 190px;
}
.navbar-brand img {
  width: 100%;
  /* Mantiene le proporzioni anche con width/height aggiunti da LiteSpeed. */
  height: auto;
}

@media (max-width:767px) {
.navbar-brand img  {
    width:80%;
  }
}

/* Placeholder solo per input nella navbar (es. ricerca in header) */
.navbar ::placeholder {
  color: #999;
}

/* Link di navigazione con navbar-light */
.navbar-light .navbar-nav .nav-link {
  color: #fff;
  text-decoration: none;
  text-underline-offset: .28em;
  font-weight:500;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
  text-decoration: underline;
}

.navbar-light .navbar-nav .nav-link.active {
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}
.navbar-light .navbar-nav .current-menu-item > .nav-link,
.navbar-light .navbar-nav .current_page_item > .nav-link,
.navbar-light .navbar-nav .current-menu-ancestor > .nav-link,
.navbar-light .navbar-nav .nav-link[aria-current="page"] {
  text-decoration: underline;
}
.navbar-light .navbar-nav .nav-link.active:hover {
  text-decoration: underline;
}

/* Link di navigazione con navbar-dark */
.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  text-decoration: none;
  text-underline-offset: .28em;
  font-weight:500;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
  text-decoration: underline;
}

.navbar-dark .navbar-nav .nav-link.active {
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}
.navbar-dark .navbar-nav .current-menu-item > .nav-link,
.navbar-dark .navbar-nav .current_page_item > .nav-link,
.navbar-dark .navbar-nav .current-menu-ancestor > .nav-link,
.navbar-dark .navbar-nav .nav-link[aria-current="page"] {
  text-decoration: underline;
}
.navbar-dark .navbar-nav .nav-link.active:hover {
  text-decoration: underline;
}


/* MENU DROPDOWN
-------------------------------------*/

.dropdown-menu {
  background: #fff;
  border-radius: 6px;
  min-width: 270px;
  box-shadow: 0 0 40px rgb(29 58 83 / 10%);
  border: none;
  padding: 15px 0;
}

/* Colori item dropdown */
.dropdown-menu .dropdown-item {
  color: #333;
  width: 95%;
  margin: 0 auto;
  border-radius: 6px;
}

/* Hover solo su desktop (evita conflitti touch/mobile) */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.dropdown-menu .dropdown-item:hover {
  color: #7F1F1C;
  background: #f2f2f2;
}

/* Stato active */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: #fff;
  color: #333;
}


/* PAGE
-------------------------------------*/

.pagina-title-image {
  font-weight: 600;
  font-size: 2.5em;
  line-height: 1;
  color: #fff;
}

.page-hero-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.1;
  text-transform: uppercase;
}

.page-header-hero__divider {
  display: block;
  width: 60px;
  height: 3px;
  margin: 0 auto;
  background: #ed3491;
}

.page-hero-subtitle {
  color: #fff;
  font-size: 6rem;
  line-height: 0.9;
}

.page-hero-subtitle > :last-child {
  margin-bottom: 0;
}

.page-hero-description {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
}

.page-hero-description > :last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .page-hero-container {
    padding-top: 4rem;
  }

  .page-hero-subtitle {
    font-size: 3.5rem;
  }

  .page-hero-description {
    font-size: 1.6rem;
  }
}

@media (max-width:767px) {
  .pagina-title-image {
    font-size: 2.3rem;
    }
  }


@media (max-width:767px) {
.pagina-title {
  font-size: 2.0rem;
  }
}

.immagine-testata {
    min-height: 500px;     /* regola base */
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .immagine-testata {
    min-height: 420px;
  }
}



/* =====================================
  SEZIONE ABOUT
   ===================================== */

   /* rotazione immagini */


  .photo-rotate-a { transform: rotate(-2.5deg); }
  .photo-rotate-b { transform: rotate(3deg); }
  .photo-rotate-c { transform: rotate(-1deg); }

  @media (max-width: 768px) {
    .photo-rotate-a,
    .photo-rotate-b,
    .photo-rotate-c { transform: rotate(0); }
  }


/* =====================================
  HOME SLIDER
   ===================================== */

.fcrf-home-slider {
  position: relative;
  overflow-x: clip;
  margin-top: 0;
  background: #020202;
  color: #fff;
}

body.has-home-slider {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.has-home-slider #page,
body.has-home-slider .site,
body.has-home-slider .main-content,
.fcrf-home-slider,
.fcrf-home-slider__carousel,
.fcrf-home-slider__inner,
.fcrf-home-slider__item {
  max-width: 100%;
  overflow-x: hidden;
}

.fcrf-home-slider .carousel.fcrf-home-slider__carousel,
.fcrf-home-slider .carousel-inner.fcrf-home-slider__inner,
.fcrf-home-slider .carousel-item.fcrf-home-slider__item {
  min-height: 760px;
  height: 100svh;
}

.fcrf-home-slider__item {
  position: relative;
  overflow: hidden;
}

.fcrf-home-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fcrf-home-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.52);
}

.fcrf-home-slider__content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 8rem;
}

.fcrf-home-slider__content {
  width: 100%;
  max-width: 980px;
  min-width: 0;
}

.fcrf-home-slider__eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 2rem;
  padding-bottom: 0.85rem;
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.fcrf-home-slider__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: #ec3391;
}

.fcrf-home-slider__title {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

/* Extend the gradient over descenders without increasing line spacing. */
.fcrf-home-slider__title .text-gradient {
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

.fcrf-home-slider__title strong {
  display: block;
  max-width: 100%;
  font-weight: 700;
  white-space: normal;
}

.fcrf-home-slider__text {
  max-width: 980px;
  margin: 2rem 0 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 300;
  line-height: 1.35;
}

.fcrf-home-slider__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.fcrf-home-slider__primary-cta {
  min-width: 220px;
  padding: 1.15rem 2.25rem;
  border-radius: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
}

.fcrf-home-slider__secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-size: 1em;
  line-height: 1.2;
  text-decoration: underline;
}

.fcrf-home-slider__secondary-cta:hover,
.fcrf-home-slider__secondary-cta:focus {
  color: #fff;
  text-decoration: underline;
}

.fcrf-home-slider__primary-cta:focus-visible,
.fcrf-home-slider__secondary-cta:focus-visible,
.fcrf-home-slider__indicators button:focus-visible,
.fcrf-home-slider__control:focus-visible {
  outline: 3px solid #ec3391;
  outline-offset: 4px;
}

.fcrf-home-slider__indicators {
  z-index: 3;
  margin-bottom: 2rem;
}

.fcrf-home-slider__control {
  z-index: 3;
}

.fcrf-home-slider .carousel-fade .carousel-item {
  transition-duration: 1.1s;
}

@media (prefers-reduced-motion: reduce) {
  .fcrf-home-slider .carousel-fade .carousel-item {
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .fcrf-home-slider .carousel.fcrf-home-slider__carousel,
  .fcrf-home-slider .carousel-inner.fcrf-home-slider__inner,
  .fcrf-home-slider .carousel-item.fcrf-home-slider__item {
    min-height: 720px;
  }

  .fcrf-home-slider__content {
    max-width: 760px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .fcrf-home-slider__content {
    max-width: 640px;
  }

  .fcrf-home-slider__title {
    font-size: clamp(4.4rem, 7.2vw, 5.3rem);
    line-height: 0.95;
  }

  .fcrf-home-slider__title,
  .fcrf-home-slider__title strong {
    white-space: normal !important;
  }

  .fcrf-home-slider__text {
    max-width: 640px;
    font-size: 1.45rem;
  }
}

@media (max-width: 767.98px) {
  .fcrf-home-slider .container {
    max-width: 100%;
  }

  .fcrf-home-slider .carousel.fcrf-home-slider__carousel,
  .fcrf-home-slider .carousel-inner.fcrf-home-slider__inner,
  .fcrf-home-slider .carousel-item.fcrf-home-slider__item {
    min-height: 100svh;
    height: auto;
  }

  .fcrf-home-slider__image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .fcrf-home-slider__content-wrap {
    position: relative;
    box-sizing: border-box;
    min-height: 100svh;
    align-items: flex-end;
    padding-top: 8.5rem;
    padding-bottom: 7rem;
  }

  .fcrf-home-slider__eyebrow {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .fcrf-home-slider__title {
    font-size: clamp(3rem, 13vw, 4.2rem);
    line-height: 0.95;
  }

  .fcrf-home-slider__text {
    margin-top: 1rem;
    font-size: 1.25rem;
  }

  .fcrf-home-slider__actions {
    justify-content: center;
    gap: 1rem;
    margin-top: 1.4rem;
  }

  .fcrf-home-slider__primary-cta {
    min-width: 0;
    width: 100%;
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
  }

  .fcrf-home-slider__secondary-cta {
    width: 100%;
    justify-content: center;
  }
}

  /*box ammissione */

.step-marker {
  position: relative;
  height: 40px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.step-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  background: white;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.step-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  right: 0;
  height: 1px;
  background: #d0d0d0;
  transform: translateY(-50%);
  z-index: 1;
}

.step-card .step-marker::before,
.step-card .step-marker::after {
  transition: all 0.3s ease;
}

.step-card:hover .step-marker::before {
  border-color: #96A3EB;
}

.step-card:hover .step-marker::after {
  background: #96A3EB;
}




/* PAGINA BLOG
-------------------------------------*/

.titoli-news {
  font-weight: 700;
}

.imm-articolo {
  border-radius: 20px;
}

.imm-articolo-blog {
  border-radius: 8px;
}

.testo-news {
  line-height: 24px;
}

@media (max-width:767px) {
.sezione-news  {
    margin-top:66px;
  }
}


/* PAGINA ARCHIVIO CATEGORIA
-------------------------------------*/

.category .testata-news {
  padding-top: 220px;
}

.category .testata-news h1 {
  margin-bottom: 15px;
}


/* SINGLE
-------------------------------------*/

.single-classic {
  background:
    radial-gradient(800px circle at 15% 30%, rgba(0, 200, 230, 0.10), transparent 60%),
    radial-gradient(600px circle at 92% 42%, rgba(236, 51, 145, 0.07), transparent 58%),
    radial-gradient(850px circle at 50% 82%, rgba(120, 120, 255, 0.06), transparent 65%),
    #FAFAFA;
}

.single-article-wrap {
  max-width: 1080px;
}

.single-classic .entry-header {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.single-classic .entry-title {
  font-size: 3rem;
}

.data-classic {
  font-size: 1.3rem;
}

.single-featured-image {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.single-featured-image img {
  width: 100%;
}

.single-classic .entry-content {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.single-post-tools {
  margin-right: auto;
  margin-left: auto;
  border: 1px solid rgba(0, 0, 0, .10);
}

.single-post-tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  column-gap: 0;
  row-gap: 1.75rem;
}

.single-post-tools-title {
  grid-column: 1;
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 1.1;
}

.single-post-tools .sidebar-articolo {
  display: grid;
}

.single-post-tools .widget {
  order: 10;
  min-width: 0;
  padding: 0 !important;
  border-right: 0;
}

.single-post-tools .widget h2,
.single-post-tools .widget .wp-block-heading {
  margin-bottom: .75rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.single-post-tools .widget:first-child {
  grid-column: 1;
  grid-row: 2;
}

.single-post-tools-title + .widget {
  grid-column: 1;
  grid-row: 2;
  margin-right: 3rem;
}

.single-post-tools .widget_recent_entries {
  order: 1;
}

.single-post-tools .widget_archive {
  order: 3;
  grid-column: 2;
  grid-row: 2;
  padding: 1.5rem 0 0 3rem !important;
  border-left: 1px solid rgba(0, 0, 0, .10);
}

.single-post-tools .widget_search {
  order: 2;
  grid-column: 2;
  grid-row: 1;
  padding: .35rem 0 0 3rem !important;
  border-left: 1px solid rgba(0, 0, 0, .10);
}

.single-post-tools .widget:last-child {
  border-right: 0;
}

.single-post-tools .widget ul {
  padding-left: 0;
  margin-bottom: 0;
}

.single-post-tools .widget ul li {
  border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.single-post-tools .widget ul li:last-child {
  border-bottom: 0;
}

.single-post-tools .widget ul a {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  color: inherit;
  text-decoration: none;
}

.single-post-tools .widget ul a::after {
  content: "\203A";
  flex: 0 0 auto;
  color: #666;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
}

.single-post-tools .widget ul a:hover,
.single-post-tools .widget ul a:focus-visible {
  text-decoration: underline;
}

.single-post-tools .widget select {
  width: 100%;
  min-height: 3.5rem;
  border-color: rgba(0, 0, 0, .16);
  border-radius: 8px;
  background-color: #fff;
}

.single-classic .post-navigation {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width:767px) {
  .single-classic .entry-title {
    font-size: 2rem;
    }

  .single-post-tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .single-post-tools .widget,
  .single-post-tools .widget:first-child,
  .single-post-tools-title + .widget,
  .single-post-tools .widget_archive,
  .single-post-tools .widget_search {
    grid-column: auto;
    grid-row: auto;
  }

  .single-post-tools-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .single-post-tools-title {
    margin-bottom: 0;
    font-size: 1.6rem;
  }

  .single-post-tools .widget {
    border-right: 0;
    border-bottom: 0;
  }

  .single-post-tools .widget_archive {
    padding: 1.5rem 0 0 !important;
    border-left: 0;
  }

  .single-post-tools-title + .widget {
    margin-right: 0;
  }

  .single-post-tools .widget_search {
    padding: 1.75rem 0 0 !important;
    border-top: 1px solid rgba(0, 0, 0, .10);
    border-left: 0;
  }

  .single-post-tools .widget:last-child {
    border-bottom: 0;
  }
  }

.margin-single {
  margin-top: 100px;
}

@media (max-width:767px) {
  .margin-single {
    margin-top: 70px;
    }
  }

.tags-articolo {
  margin-bottom: 40px;
}

.tags-articolo a {
  padding: 0.3rem 1rem;
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
  margin: 5px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
}

@media (max-width:767px) {
  .tags-articolo a {
    padding: 3px;
    margin: 5px;
    font-size: 14px;
    font-weight: 600;
  }
}


.tags-articolo a:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.single-classic h3 {
  font-size: 1.5em;
  line-height: 1.2;
}

.img-classic {
  border-radius: 20px;
}

.categoria-classic a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  margin-left: 5px;
}

.next-previous-classic {
  font-size: 1em;
  line-height: 1.2;
}

.next-previous-classic a {
  text-decoration: none;
}

.prec-succ-classic {
  font-size: 0.9em;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 5px !important;
}

.icona-tag {
  color: #333;
}

.titolo-tag {
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 10px;
}


/* COMMENTI
-------------------------------------*/

.comments textarea {
  width: 100%;
}

.comments label {
  min-width: 80px;
}

.comments ul,
.comments ol {
  list-style-type: none;
}

.comment .reply {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.comment-author img {
  border-radius: 999px;
}


/* WIDGETS SIDEBAR
-------------------------------------*/

.widget li {
  list-style-type: none;
  line-height: 1.4;
}

.widget a {
  text-decoration: underline;
}

.sidebar .widget a:hover,
.footer .widget a:hover {
  opacity: .85;
  text-decoration: underline;
}

.widg_tit {
  position: relative;
  overflow: hidden;
}

.titolo-widget {
  display: block;
  font-size: 1em;
  border-left: 3px solid #7F1F1C;
  padding-left: 15px;
}

.widget select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px;
}


/* PAGINAZIONE
-------------------------------------*/

.pagination-blog {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* FOOTER
-------------------------------------*/


@media (max-width:767px) {
  .footer-basso {
    text-align:center;
    }
  }

  .footer-basso p {
    color:#fff;
    font-size: 1.4rem;
    line-height: 1.3;
  }

.footer-basso a {
  color:#fff;
  text-decoration: none;
}

.footer-basso h1,
.footer-basso h2,
.footer-basso h3,
.footer-basso h4,
.footer-basso h5,
.footer-basso h6 {
  color: #fff;
}

.footer-alto h1,
.footer-alto h2,
.footer-alto h3,
.footer-alto h4,
.footer-alto h5,
.footer-alto h6 {
  color: #fff;
}

.footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
  radial-gradient(800px circle at 15% 30%, rgba(0,220,255,.22), transparent 60%),
  radial-gradient(600px circle at 92% 42%, rgba(236,51,145,.18), transparent 58%),
  radial-gradient(850px circle at 50% 82%, rgba(120,120,255,.16), transparent 65%),
  #020202;
}


.footer ul {
  padding-left: 0;
}

@media (max-width:767px) {
  .footer ul {
    text-align:center;
    }
  }

.menu-main-menu-footer-container ul li {
  font-size: 1.4rem;
}


.footer .titolo-widget {
  border-left: none;
  font-size: 1.4rem;
  padding-left: 0;
}

.footer-alto,
.footer-basso {
  font-size: 1.4rem;
}

.footer .trattino-titolo {
  border-color: #fff;
}

.margin-footer {
  margin-bottom: 40px;
}

@media (max-width:767px) {
  .margin-footer {
    margin-top:20px;
    margin-bottom:20px;
    }
  }

.footer label {
  font-size: 1em;
  line-height: 1.2;
}

.footer input {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

@media (max-width:767px) {
.footer input {
  font-size:16px;
  }
}


.footer #email {
  width: 100% !important;
  border-radius: 10px;
  height: 45px;
  border: none !important;
}

.footer .btn-primary {
  border: none;
  background: #fff;
  color: #212121;
}

.footer-menu {
  background: #005584;
  border-top: 1px solid #fff;
}

.footer-menu a {
  color: #fff;
}


/*** MENU MOBILE ****/

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}


/***** FOOTER *****/


.fcrf-footer-credits a:hover {
  text-decoration: underline !important;
}


/***** ARCHICVE *******/

.archive-title { font-weight: 600; }
.archive-description { max-width: 70ch; }
