html {
  font-size: 16px;
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  background-color: #F5EFF6;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
body * {
  box-sizing: border-box;
}

/* Tipografia base */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1em;
  font-size: 1rem;
}

/* Link */
a {
  color: #3A527F;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

/* Testo enfatico */
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* Liste */
ul,
ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
  list-style-position: outside;
}

li {
  margin-bottom: 0.5em;
}

/* Immagini e media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Tabelle base */
table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  text-align: left;
  padding: 0.5em;
  border: 1px solid #ccc;
}

/* Form */
input,
button,
textarea,
select {
  font: inherit;
  line-height: inherit;
}

/* Pulsanti */
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5em 1em;
  font-size: 1rem;
}

.cta {
  background-color: #E78D1E;
  border-radius: 20px;
  padding: 0.3125rem 1.125rem;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.35s ease;
  transform-origin: center;
  position: relative;
}
.cta a {
  color: #ffffff;
  text-decoration: none;
}
.cta:hover {
  background-color: #3A527F;
  transform: scale(1.1);
}
.cta:hover a {
  text-decoration: none;
}

.text-truncate {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: unset;
  white-space: unset;
}
.text-truncate--two-lines {
  -webkit-line-clamp: 2;
}
.text-truncate--three-lines {
  -webkit-line-clamp: 3;
}
.text-truncate--four-lines {
  -webkit-line-clamp: 4;
}
.text-truncate--five-lines {
  -webkit-line-clamp: 5;
}

section {
  padding: 3.125rem 0;
}
@media (max-width: 35.9375em) {
  section {
    padding: 1.5625rem 0;
  }
}
section .section--header {
  margin-bottom: 1.5625rem;
}
section .section--header__title {
  color: #3A527F;
}
section .section-title {
  color: #3A527F;
}

.categories-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.625rem;
}
.categories-container .category-pills {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 0.9375rem;
  border-radius: 20px;
}
.categories-container .category-pills a {
  color: #ffffff;
  text-decoration: none;
}
.categories-container .category-pills.current-area {
  opacity: 0.5;
}
.categories-container .category-pills.current-area a {
  cursor: none;
  pointer-events: none;
}
.categories-container.categories-filters {
  margin-bottom: 3.125rem;
}

.content:has(#wpmem_login),
.content:has(#wpmem_reg),
.content:has(.wpmem_mxsg) {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content:has(#wpmem_login) *,
.content:has(#wpmem_reg) *,
.content:has(.wpmem_mxsg) * {
  font-family: "Montserrat", sans-serif;
}
.content:has(#wpmem_login) legend,
.content:has(#wpmem_reg) legend,
.content:has(.wpmem_mxsg) legend {
  color: #3A527F;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1.5625rem;
}

.dashboard-tools {
  width: 100%;
}
.dashboard-tools #wpmem_reg, .dashboard-tools #wpmem_login {
  width: 100%;
}
.dashboard-tools a {
  color: #3A527F;
  font-weight: 500;
  display: block;
  margin: 0 0 1.25rem;
}
.dashboard-tools ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dashboard-tools .section-title {
  margin-bottom: 3rem;
}

.dashboard-block {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 1.5625rem;
  max-width: 46.875rem;
  margin-left: auto;
  margin-right: auto;
}

button, .buttons {
  background-color: #E78D1E;
  border-radius: 20px;
  padding: 0.3125rem 1.125rem;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.35s ease;
  transform-origin: center;
  position: relative;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #E78D1E;
  box-shadow: none;
}
button:hover, .buttons:hover {
  background-color: #3A527F;
  transform: scale(1.1);
  border: 1px solid #3A527F;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1100px;
  }
}
.article {
  padding: 3.125rem 0;
}
.article--title {
  color: #3A527F;
  text-align: center;
}
.article--excerpt {
  font-weight: 500;
  margin-bottom: 1.5625rem;
  font-size: 1.25rem;
}
.article--img {
  max-width: 21.875rem;
  margin: 0 auto;
  margin-bottom: 1.5625rem;
  border-radius: 20px;
}
.article--img img {
  max-width: 100%;
  border-radius: 20px;
}

.partner-sidebar {
  margin-bottom: 3.125rem;
  position: sticky;
  top: 3.125rem;
}
.partner-sidebar--logo {
  max-width: 15.625rem;
  display: flex;
  justify-content: center;
  width: 100%;
  aspect-ratio: 2/1;
  margin-bottom: 1.25rem;
}
.partner-sidebar--logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.partner-sidebar--website {
  margin-bottom: 1.25rem;
}
.partner-sidebar--social {
  display: flex;
  gap: 0.9375rem;
  flex-wrap: wrap;
  margin: 1.5625rem 0 3.125rem;
}
.partner-sidebar--social--icon {
  height: 1.75rem;
  aspect-ratio: 1;
}
.partner-sidebar--social--icon img {
  height: 1.75rem;
}
.partner-sidebar--map {
  width: 100%;
  aspect-ratio: 1;
}
.partner-sidebar--map iframe {
  max-width: 100%;
  height: 100%;
}
.partner-card {
  background-color: #ffffff;
  padding: 1.25rem;
  text-align: center;
  border-radius: 20px;
  transition: all 0.3s ease;
  transform-origin: center;
  margin-bottom: 1.5625rem;
}
.partner-card:hover {
  transform: scale(1.05);
}
.partner-card a {
  text-decoration: none;
}
.partner-card--logo {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}
.partner-card--title {
  color: #3A527F;
}

.partner--card {
  border-radius: 20px;
  border: 2px solid #3A527F;
  padding: 1.25rem;
  background-color: #ffffff;
  height: 100%;
  transition: all 0.4s ease;
}
.partner--card:hover {
  transform: scale(1.03);
}
.partner--card__container {
  margin-bottom: 1.25rem;
}
.partner--card__info__single .partner--card__info-area {
  margin-bottom: 1.25rem;
}
.partner--card__info__single .partner--card__info-area .categories-container {
  margin-top: 0;
}
.partner--card__info__single .partner--card__info-nome {
  font-size: 1.125rem;
  font-weight: bold;
  color: #3A527F;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}
.partner--card__info__single .partner--card__info-tipologia {
  font-size: 1rem;
  margin-bottom: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
}
.partner--card__info__single .partner--card__info-indirizzo {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
.partner--card__info__single .partner--card__info-indirizzo p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.partner--card__info__single .partner--card__info-indirizzo p + p {
  margin-top: 0.25rem;
}
.partner--card__info__single .partner--card__info-contatti p {
  margin-bottom: 0;
}
.partner--card__info__single .partner--card__info-contatti p + p {
  margin-top: 0.25rem;
}
.partner--card__info__single .partner--card__info-contatti {
  margin-bottom: 1.5625rem;
}
.partner--card__info__single .partner--card__info iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
}
.partner--card__info-area {
  margin-bottom: 1.25rem;
}
.partner--card__info-area .categories-container {
  margin-top: 0;
}
.partner--card__info-nome {
  font-size: 1.125rem;
  font-weight: bold;
  color: #3A527F;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}
.partner--card__info-tipologia {
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
}
.partner--card__info-indirizzo {
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
.partner--card__info-indirizzo p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.partner--card__info-indirizzo p + p {
  margin-top: 0.25rem;
}
.partner--card__info-contatti p {
  margin-bottom: 0;
}
.partner--card__info-contatti p + p {
  margin-top: 0.25rem;
}

iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
}

.page-open {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5625rem 0;
}
.page-open.w-image {
  padding: 3.125rem 0;
}
.page-open.w-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3A527F;
  opacity: 0.7;
  z-index: 0;
}
.page-open.w-image h1 {
  color: #ffffff;
}
.page-open h1 {
  color: #3A527F;
  z-index: 1;
  position: relative;
  margin-bottom: 0;
}

header {
  box-shadow: 0px 0px 5px #BCD3F2;
  background-color: #ffffff;
}
header .navbar-brand img {
  width: 8.125rem;
}
header .navbar .navbar-nav .menu-item {
  margin-bottom: 0;
}
header .navbar .navbar-nav .menu-item .nav-link {
  color: #3A527F;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.4s ease;
  line-height: 1;
  padding: 0.625rem;
}
header .navbar .navbar-nav .menu-item .nav-link:hover {
  color: #E78D1E;
  text-decoration: none;
}
header .navbar .navbar-nav .menu-item.current-menu-item .nav-link {
  color: #E78D1E;
  text-decoration: none;
}

footer {
  background-color: #3A527F;
  color: #ffffff;
  padding: 3.125rem 0;
}
footer .footer--column {
  margin-bottom: 1.5625rem;
}
@media (max-width: 47.9375em) {
  footer .footer--column {
    margin-bottom: 3.125rem;
  }
}
footer .footer--column__logo {
  padding-bottom: 1.5625rem;
  width: 8.125rem;
}
footer .footer--column__content a {
  color: #ffffff;
  text-decoration: underline;
}
footer .footer--column__content a {
  text-decoration: none;
  font-weight: 500;
}
footer .footer--column__content a:hover {
  text-decoration: none;
}
footer .footer--column__content .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .footer--column__social {
  display: flex;
  gap: 0.9375rem;
  margin-top: 1.5625rem;
  flex-wrap: wrap;
}
footer .footer--column__social--title {
  width: 100%;
}
footer .footer--column__social--icon img {
  height: 1.75rem;
}

.hero {
  min-height: 31.25rem;
  position: relative;
  color: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.125rem 1.5625rem;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #000000;
  opacity: 0.6;
  z-index: 0;
}
.hero--content {
  z-index: 1;
  max-width: 43.75rem;
}
.hero--content h1 {
  margin-bottom: 0;
}
.hero--content__testo {
  margin-top: 1.5625rem;
  font-size: 1.25rem;
}
.hero--content__testo p {
  font-size: 1.25rem;
}
.hero--content__cta {
  margin-top: 1.5625rem;
  display: flex;
  justify-content: center;
}

.card {
  border-radius: 20px;
  transition: all 0.3s ease;
  transform-origin: center;
  margin-bottom: 1.25rem;
}
.card:hover {
  transform: scale(1.05);
}
.card:hover a {
  text-decoration: none;
}
.card a {
  color: inherit;
}
.card--title {
  border-radius: 20px 20px 0 0;
  padding: 0.3125rem 0.9375rem;
}
@media (min-width: 36em) {
  .card--title {
    min-height: 3.625rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.card--title h3 {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
}
.card--img {
  width: 100%;
  aspect-ratio: 2;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.card--img img {
  height: 100%;
  width: 100%;
}
.card--excerpt {
  padding: 0.9375rem;
  min-height: 6.375rem;
}

.imprese--card {
  margin-bottom: 3.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.imprese--card__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  max-width: 180px;
}
.imprese--card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}
.imprese--card__img {
  margin-bottom: 1.25rem;
}
.imprese--card__nome {
  font-weight: bold;
  color: #3A527F;
  margin-bottom: 1.25rem;
}
.imprese--card__indirizzo {
  margin-bottom: 0.3125rem;
}
.imprese--card__citta {
  font-weight: 500;
  margin-bottom: 0;
}

.section--immagine-testo__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.5625rem;
}
.section--immagine-testo__content img {
  border-radius: 20px;
}

.risorsa--card__container .risorsa--card {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #3A527F;
}
.risorsa--card__container:first-of-type .risorsa--card {
  padding-top: 0;
}
.risorsa--card__container:last-of-type .risorsa--card {
  border-bottom: none;
}
.risorsa--card {
  position: relative;
}
.risorsa--card a {
  color: inherit;
}
.risorsa--card h3 {
  color: #3A527F;
}
.risorsa--card div p:last-of-type {
  margin-bottom: 0;
}
.risorsa--card__info {
  position: relative;
  padding-left: 3.4375rem;
}
.risorsa--card__info:before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  border: 2px solid #3A527F;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%23000000'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3E%3C/title%3E%3Cg id='Complete'%3E%3Cg id='download'%3E%3Cg%3E%3Cpath d='M3,12.3v7a2,2,0,0,0,2,2H19a2,2,0,0,0,2-2v-7' fill='none' stroke='%233A527F' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3C/path%3E%3Cg%3E%3Cpolyline data-name='Right' fill='none' id='Right-2' points='7.9 12.3 12 16.3 16.1 12.3' stroke='%233A527F' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3C/polyline%3E%3Cline fill='none' stroke='%233A527F' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' x1='12' x2='12' y1='2.7' y2='14.2'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: 1.5625rem;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  transform-origin: center;
}
.risorsa--card:hover .risorsa--card__info:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%23000000'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3E%3C/title%3E%3Cg id='Complete'%3E%3Cg id='download'%3E%3Cg%3E%3Cpath d='M3,12.3v7a2,2,0,0,0,2,2H19a2,2,0,0,0,2-2v-7' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3C/path%3E%3Cg%3E%3Cpolyline data-name='Right' fill='none' id='Right-2' points='7.9 12.3 12 16.3 16.1 12.3' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3C/polyline%3E%3Cline fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' x1='12' x2='12' y1='2.7' y2='14.2'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: #3A527F;
  transform: scale(1.2);
}
.risorsa--card:hover .risorsa--card__info a {
  text-decoration: none;
}

.banner {
  position: relative;
  color: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.125rem 1.5625rem;
}
.banner:not(.w-overlay):before {
  display: none;
}
.banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #000000;
  opacity: 0.6;
  z-index: 0;
}
.banner.banner--onlyimage::before {
  display: none;
}
.banner--content {
  z-index: 1;
  max-width: 43.75rem;
}
.banner--content h1 {
  margin-bottom: 0;
}
.banner--content__testo {
  margin-top: 1.5625rem;
  font-size: 1.25rem;
}
.banner--content__testo p {
  font-size: 1.25rem;
}
.banner--content__cta {
  margin-top: 1.5625rem;
  display: flex;
  justify-content: center;
}

.banner:not(.w-overlay):before {
  display: none;
}/*# sourceMappingURL=node_style.css.map */