@charset "UTF-8";
@keyframes defaultRotation {
  from {
    transform: rotate(450deg);
  }
  to {
    transform: rotate(90deg);
  }
}
@keyframes fullRotation {
  0% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(450deg);
  }
}
header.header-menu .menu-container {
  width: 100%;
  height: 110px;
  background-color: #ffffff;
  padding: 15px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0px 1px 4px 0px #363a3b3b;
  -moz-box-shadow: 0px 1px 4px 0px #363a3b3b;
  -o-box-shadow: 0px 1px 4px 0px #363a3b3b;
  box-shadow: 0px 1px 4px 0px #363a3b3b;
}
header.header-menu .menu-container nav ul {
  line-height: 24px;
  display: flex;
}
header.header-menu .menu-container nav ul li {
  margin-right: 20px;
}
header.header-menu .menu-container nav ul li a {
  font-size: 16px;
  line-height: 24px;
  font-family: Roboto;
  color: #005da8;
  text-align: center;
  text-decoration: none;
  padding: 0px 4px;
}
header.header-menu .menu-container nav ul li a.active {
  border-bottom: 3px solid #005da8;
  font-weight: 700;
}
header.header-menu .menu-container nav ul li a img {
  margin-left: 9px;
  position: relative;
  top: 3px;
}
header.header-menu .menu-container nav ul li .sub-menu {
  display: none;
}
header.header-menu .menu-container nav.language-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
header.header-menu .menu-container nav.language-menu ul li {
  color: #005da8;
}
header.header-menu .menu-container nav.language-menu .logo-tes img {
  height: 80px;
}
header.header-menu .menu-container .logo .logo-icon {
  height: 80px;
}
header.header-menu .submenu-container {
  width: 100%;
  height: 73px;
  background-color: #005da8;
  padding: 0px 64px;
  transition: all 0.5s allow-discrete;
  position: relative;
  top: -73px;
  -webkit-box-shadow: 0px 1px 4px 0px #363a3b3b;
  -moz-box-shadow: 0px 1px 4px 0px #363a3b3b;
  -o-box-shadow: 0px 1px 4px 0px #363a3b3b;
  box-shadow: 0px 1px 4px 0px #363a3b3b;
}
header.header-menu .submenu-container.submenu-container--hidden {
  top: -73px;
}
header.header-menu .submenu-container.submenu-container--shown {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0px;
}
header.header-menu .submenu-container ul {
  line-height: 24px;
  display: flex;
}
header.header-menu .submenu-container ul li {
  margin-right: 20px;
}
header.header-menu .submenu-container ul li a {
  font-size: 16px;
  line-height: 24px;
  font-family: Roboto;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  padding: 0px 4px;
}
header.header-menu .submenu-container ul li a.active {
  border-bottom: 3px solid #ffffff;
  font-weight: 700;
}
header.header-menu .submenu-container ul li a:focus {
  outline: 1px solid #ffffff;
  outline-offset: 5px;
}
header.header-menu .submenu-container ul li a img {
  margin-left: 9px;
  position: relative;
  top: 3px;
}
/* Mobile Styles */
@media (max-width: 767px) {
  /* Stili per dispositivi mobili */
}
/* Tablet Styles */
@media (min-width: 768px) {
  /* Stili per tablet */
}
/* Desktop Styles */
@media (min-width: 992px) {
  /* Stili per desktop */
}
.hero-image {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /* 12 colonne uguali */
  gap: 16px;
  /* Distanza tra le colonne */
  padding: 0 48px;
}
.hero-image__gradient {
  width: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(123, 151, 174, 0.08) 24.5%, rgba(0, 37, 66, 0.6) 49.5%, rgba(0, 20, 36, 0.8) 70%);
  height: 100%;
}
.hero-image__text {
  grid-column: 2 / 12;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  gap: 24px;
  text-align: left;
  font-size: 24px;
  color: #fff;
  font-family: Roboto;
  grid-column: 2 / 12;
}
.hero-image__title {
  align-self: stretch;
  position: relative;
  font-size: 64px;
  line-height: 110px;
  font-family: Oswald;
}
/* Mobile Styles */
@media (max-width: 767px) {
  /* Stili per dispositivi mobili */
}
/* Tablet Styles */
@media (min-width: 768px) {
  /* Stili per tablet */
  .hero-image {
    height: 650px;
  }
  .hero-image__text {
    top: 300px;
  }
}
/* Desktop Styles */
@media (min-width: 992px) {
  /* Stili per desktop */
  .hero-image {
    height: 800px;
  }
  .hero-image__text {
    top: 260px;
  }
}
footer.footer-wrapper {
  background-color: #2F2F2F;
  color: white;
  line-height: 21px;
  font-size: 14px;
  font-family: Roboto;
}
footer.footer-wrapper a {
  text-decoration: none;
  color: white;
}
footer .footer-body {
  display: flex;
  justify-content: space-between;
}
footer .footer-body .footer-left {
  width: 343px;
}
footer .footer-body .footer-right {
  width: auto;
  column-gap: 50px;
}
footer .footer-body .footer-left p {
  margin-bottom: 20px;
}
footer .footer-body .footer-left p a::after {
  content: "›";
  color: #ffffff;
  margin-left: 12px;
  font-size: 28px;
  position: relative;
  top: 2px;
}
footer .footer-body .footer-right {
  display: flex;
  justify-content: space-between;
}
footer .footer-body .footer-right ul li a {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 24px;
}
footer .footer-bottom > * {
  flex: auto;
}
footer .footer-social {
  margin-top: 0;
}
footer .footer-social a img {
  width: auto;
  height: auto;
  max-width: 80px;
  max-height: 20px;
}
footer .footer-top {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
footer .footer-top img {
  max-width: 150px;
}
footer .footer-top .logo-tes-footer img {
  height: 58px;
  max-width: none;
}
footer .footer-bottom {
  display: flex;
  align-items: center;
}
footer .footer-bottom .footer-copyright p {
  text-align: right;
}
footer .footer-bottom p {
  text-align: center;
}
.anchors-nav {
  position: relative;
  top: 0px;
  z-index: 9;
  padding-bottom: 0;
}
.anchors-nav nav ul {
  display: flex;
  overflow-x: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
.anchors-nav nav ul li a {
  letter-spacing: 0.5px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: Oswald;
  font-size: 20px;
}
.anchors-nav nav ul li a.very-active, .anchors-nav nav ul li a.active {
  color: var(--ntt);
  font-style: normal;
  font-family: Oswald;
  text-decoration: underline;
}
.content-item-with-illustration .left h2 strong {
  font-size: 32px;
  line-height: 49px;
  display: inline-block;
  font-family: Oswald !important;
  color: #005da8;
  text-align: left;
}
.cards-entrypoint {
  background-color: var(--background-color);
  color: var(--foreground-color);
  margin-top: 0px;
  padding-top: 50px;
  grid-template-rows: auto;
  margin-bottom: 160px;
}
.cards-entrypoint .cards-entrypoint-card-container {
  grid-template-rows: auto;
  gap: 40px 72px;
}
.cards-entrypoint .cards-entrypoint-header h2 {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  color: #005da8;
  margin-bottom: 80px;
}
.cards-entrypoint h2, .cards-entrypoint .cards-entrypoint p {
  font-style: normal;
  color: var(--foreground-color);
}
.cards-entrypoint .cards-entrypoint-card {
  background-color: #d4dff1;
  grid-row: auto;
  grid-column: auto;
  margin-top: 0;
}
.cards-entrypoint .cards-entrypoint-card .body {
  background-color: #d4dff1;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
}
.cards-entrypoint .cards-entrypoint-card .body button.card-title {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  font-style: normal;
}
.cards-entrypoint .cards-entrypoint-card .body p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  margin-bottom: 72px;
}
.cards-entrypoint .cards-entrypoint-card .body .ntt-button.no-border:hover span.icon {
  color: #000000;
  background-image: url(/wp-content/themes/tamini/img/arrow-color-black.svg);
}
.cards-entrypoint .cards-entrypoint-card .body .ntt-button span {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
}
.light-grey {
  background-color: #f4f7f8;
}
.dark-blue {
  background-color: #002542;
}
.white {
  background-color: #fff;
}
.content-card-title .your-power-our {
  flex: 1;
  position: relative;
  line-height: 72px;
}
.content-card-title {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 48px 64px;
}
.content-card-title .title {
  color: #005da8;
  font-family: Oswald;
}
.dark-blue .title {
  color: #fff;
  font-family: Oswald;
}
.content-card-title .lorem-ipsum-dolor {
  align-self: stretch;
  position: relative;
  line-height: 30px;
}
.content-card-title .lorem-ipsum-dolor1 {
  align-self: stretch;
  position: relative;
  font-size: 24px;
  line-height: 32px;
  font-family: "Roboto Serif";
}
.content-card-title .body {
  width: 100%;
  position: relative;
  line-height: 24px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 16px;
  row-gap: 24px;
}
.content-card-title__text {
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  font-size: 48px;
}
.content-card-title__text h2 {
  font-size: 48px;
  line-height: 72px;
  margin-top: 56px;
}
.content-card-title__text h3 {
  font-size: 32px;
  line-height: 49px;
}
.content-card-title__text h4 {
  font-size: 28px;
  line-height: 45px;
}
.content-card-title__text .body p {
  font-size: 20px;
  line-height: 30px;
}
.content-card-title__text .body b, .content-card-title__text .body strong {
  font-weight: 700;
}
.content-card-title .call-to-action {
  position: relative;
  line-height: 24px;
}
.content-card-title .call-to-action:focus {
  outline: 1px solid #ffffff;
  outline-offset: 5px;
}
.content-card-title .icon {
  width: 24px;
  position: relative;
  height: 24px;
}
.content-card-title__block {
  width: 100%;
  grid-column: 2 / 12;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  gap: 40px;
  text-align: left;
  font-size: 48px;
  color: #000;
  font-family: Roboto;
}
.content-card-title__block .no-border {
  border: none !important;
  padding-left: 0px !important;
  border-radius: unset !important;
}
.dark-blue > .content-card-title__block {
  width: 100%;
  grid-column: 2 / 12;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  gap: 40px;
  text-align: left;
  font-size: 16px;
  color: #fff;
  font-family: Roboto;
}
.content-card-title__title-label {
  position: relative;
  line-height: 24px;
  font-weight: 600;
  border-radius: 4px;
  background-color: #d4dff1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  color: #005da8;
  font-size: 16px;
}
.tamini__button-primary-light > a {
  color: #000000 !important;
  font-size: 16px;
}
.tamini__button-primary-light > a:focus {
  outline: 1px solid #000000 !important;
  outline-offset: 5px;
}
.tamini__button-secondary-blue > a {
  color: #005da8 !important;
  font-size: 2.2rem;
  font-weight: 600;
}
.tamini__button-secondary > a {
  color: #000000 !important;
  font-size: 16px;
  font-weight: 600;
}
.content-card__container {
  width: 100%;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  text-align: left;
  font-size: 48px;
  color: #fff;
  background-color: #005da8;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  font-family: Oswald;
}
.content-card__text-cta {
  grid-column: 2 / 9;
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  gap: 40px;
  padding: 0px 48px 0px 55px;
}
.content-card__text-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.content-card__title {
  position: relative;
  line-height: 72px;
  display: inline-block;
}
.content-card__body {
  align-self: stretch;
  position: relative;
  font-size: 20px;
  line-height: 30px;
  font-family: Roboto;
}
.content-card__cta-group {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-family: Roboto;
}
.content-card__cta-group:focus {
  outline: 1px solid #ffffff;
  outline-offset: 5px;
}
.content-card__button-label {
  position: relative;
  line-height: 24px;
}
.content-card__image {
  grid-column: 9 / 13;
  height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.card-with-icon__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  box-sizing: border-box;
  gap: 40px;
  font-size: 14px;
  padding: 48px 64px;
  background-color: #d4dff1;
}
.card-with-icon__parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 40px;
}
.card-with-icon__blockwith_ico {
  grid-column: 2 / 12;
  width: 100%;
  background-color: #d4dff1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 100px;
  font-size: 24px;
  color: #000;
}
.card-with-icon__header {
  width: 100%;
  background-color: #d4dff1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  z-index: 0;
  font-size: 48px;
  color: #005da8;
  font-family: Oswald;
}
.card-with-icon__text1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.card-with-icon__title4 {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.card-with-icon__title {
  flex: 1;
  position: relative;
  line-height: 72px;
}
.card-with-icon__body1 {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 16px;
  color: #000;
  font-family: Roboto;
}
.card-with-icon__subtitle {
  flex: 1;
  position: relative;
  line-height: 30px;
  font-size: 20px;
}
.card-with-icon__cards_container {
  width: 100%;
  margin: 0 auto;
  background-color: #d4dff1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  box-sizing: border-box;
  z-index: 1;
}
.card-with-icon__card {
  width: 100%;
  grid-column: span 6;
  background-color: #d4dff1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.card-with-icon__card_title {
  align-self: stretch;
  position: relative;
  line-height: 32px;
  font-weight: bold;
}
.card-with-icon__card_body {
  align-self: stretch;
  position: relative;
  font-size: 16px;
  line-height: 24px;
}
.card-with-icon__card_icon {
  width: 80px;
  position: relative;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0;
}
.desktop-cards__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  padding: 48px 64px;
  background-color: #f4f7f8;
}
.desktop-cards__group-parent {
  grid-column: 2 / 12;
}
.desktop-cards {
  background-color: #fff;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  padding: 0px 0px 0px 40px;
  box-sizing: border-box;
}
.desktop-cards-left {
  background-color: #fff;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  padding-right: 40px;
  box-sizing: border-box;
}
.desktop-cards__text-cta {
  width: 100%;
  grid-column: 1 / 9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.desktop-cards__text-cta-left {
  width: 100%;
  grid-column: 5 / 13;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.desktop-cards__title-label {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  font-family: "Noto Sans";
}
.desktop-cards__label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
}
.desktop-cards__label-text {
  position: relative;
  line-height: 24px;
  text-transform: uppercase;
}
.desktop-cards__title-sans {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2;
  font-size: 32px;
  color: #005da8;
  font-family: Oswald;
}
.desktop-cards__title-sans-text {
  flex: 1;
  position: relative;
  line-height: 49px;
}
.desktop-card__image {
  grid-column: 10 / 13;
  flex: 1;
  height: 355px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.desktop-card__image-left {
  grid-column: 1 / 4;
  flex: 1;
  height: 355px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.desktop-cards__home {
  position: relative;
  line-height: 24px;
  font-weight: bold;
}
.desktop-cards__separator {
  grid-column: 9 / 10;
  justify-self: end;
  background-color: #def1ff;
  width: 30px;
  height: 355px;
}
.desktop-cards__separator-left {
  grid-column: 4 / 5;
  justify-self: start;
  background-color: #def1ff;
  width: 30px;
  height: 355px;
}
.three-cards__wrapper.splide {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 48px 64px 128px 64px;
  gap: 40px;
  background-color: #002542;
  overflow: hidden;
}
.three-cards__wrapper.splide .splide__track {
  grid-column: 2 / 12;
  overflow: visible;
}
.three-cards__wrapper.splide .splide__track .splide__list {
  gap: 1.5%;
}
.three-cards__wrapper.splide .splide__track .splide__list .splide__slide {
  max-width: 434px;
  height: 540px;
  min-width: 37%;
}
.three-cards__wrapper.splide .splide__pagination {
  bottom: 47px;
}
.three-cards__wrapper.splide .splide__pagination .splide__pagination__page {
  height: 10px;
  width: 10px;
  background-color: #ffffff;
  opacity: 1;
  margin: 12px;
}
.three-cards__wrapper.splide .splide__pagination .splide__pagination__page.is-active {
  background-color: transparent;
  border: 2px solid #ffffff;
  transform: none;
}
.three-cards__wrapper.splide .splide__arrows {
  position: absolute;
  bottom: 38px;
  left: 0px;
  right: 0px;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.three-cards__wrapper.splide .splide__arrows .splide__arrow {
  background: none;
  opacity: 1;
  position: relative;
  margin: 0px;
}
.three-cards__wrapper.splide .splide__arrows .splide__arrow svg {
  fill: #ffffff;
  height: 1em;
  width: 1em;
}
.three-cards__container {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.three-cards__card-small {
  width: 90%;
  background-color: #d4dff1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.three-cards__card-title {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 0px;
  font-weight: 600;
}
.three-cards__body {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0px 32px;
}
.three-cards__cta {
  display: grid;
  grid-template-columns: 1fr;
  padding: 40px 0px;
  text-align: left;
}
.three-cards__cta-text {
  display: grid;
  grid-template-columns: 1fr;
  text-decoration: none;
  color: #000;
  gap: 8px;
  position: relative;
  line-height: 24px;
  font-weight: 600;
}
.three-cards__cta-text b svg {
  margin-left: 8px;
  position: relative;
  top: 3px;
}
.three-cards__hidden {
  background-color: var(--background-color);
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
#card-1 {
  justify-self: start;
}
#card-2 {
  justify-self: center;
}
#card-3 {
  justify-self: end;
}
.three-cards__card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.separator-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 0px 64px 0px 64px;
  width: 100%;
  background-color: #F4F7F8;
}
.separator-wrapper.separator-wrapper--white-background {
  background-color: #ffffff;
}
.separator-wrapper.separator-wrapper--white-background .tamini-separator {
  width: calc(100% + 16px);
}
.tamini-separator {
  grid-column: 2 / 12;
  width: 100%;
  background-color: black;
  height: 3px;
}
.footer-text-block__wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 48px 64px;
  width: 100%;
  gap: 40px;
  background-color: #005da8;
}
.footer-text-block__wrapper .footer-text-block__container {
  grid-column: 2 / 12;
}
.footer-text-block__wrapper .footer-text-block__title {
  width: 100%;
  position: relative;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  font-family: Roboto !important;
  color: #fff;
  text-align: left;
  padding-bottom: 16px;
}
.footer-text-block__wrapper .footer-text-block__body {
  width: 100%;
  position: relative;
  font-size: 20px;
  line-height: 30px;
  color: #fff !important;
  text-align: left;
  display: inline-block;
  font-family: Roboto;
  padding-bottom: 48px;
}
.footer-text-block__wrapper .footer-text-block__body > a {
  color: #fff !important;
}
.footer-text-block__wrapper .footer-text-block__body > a:focus {
  outline: 1px solid #ffffff;
  outline-offset: 5px;
}
.footer-text-block__wrapper .footer-text-block__cta {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  font-family: Roboto;
  line-height: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.footer-text-block__wrapper .footer-text-block__cta:focus {
  outline: 1px solid #ffffff;
  outline-offset: 5px;
}
.footer-text-block__wrapper .footer-text-block__cta.footer-text-block__cta--rounded {
  border-radius: 50px;
  border: 1px solid #ffffff;
  overflow: hidden;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 24px;
  gap: 8px;
  background-color: #ffffff;
  color: #005da8;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.footer-text-block__wrapper .footer-text-block__cta.footer-text-block__cta--rounded svg {
  transform: rotate(-90deg);
  margin-left: 10px;
}
.new-anchors-title {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 48px 64px;
  gap: 40px;
}
.new-anchors-title__title {
  grid-column: 2 / 12;
  font-size: 48px;
  line-height: 72px;
  font-family: Oswald;
  color: #005da8;
  text-align: left;
  height: 72px;
}
.new-anchors-title__subtitle {
  grid-column: 2 / 12;
  font-size: 20px;
  line-height: 30px;
  font-family: Roboto;
  color: #000;
}
.new-anchors-title__subtitle b, .new-anchors-title__subtitle strong {
  font-weight: 700;
}
.anchors-nav nav ul li a.active {
  text-decoration: underline;
}
.anchors-nav a.anchors-link {
  white-space: pre-wrap;
}
.anchors-nav a.anchors-link span {
  line-height: 28px;
}
.anchors-nav nav.wrapper ul {
  column-gap: 80px;
}
.anchors-nav nav.wrapper ul li {
  margin-right: 0px;
}
.story-carousel {
  padding-bottom: 140px;
}
.story-carousel h2 {
  margin-bottom: 40px;
}
.story-carousel h2 strong {
  font-size: 48px;
  color: #005da8;
  font-family: "OSWALD";
}
.story-carousel .carousel .slide .slide-content h3 {
  font-family: "Oswald";
  font-size: 26px;
  line-height: 40px;
  font-style: normal;
}
.story-carousel .carousel ul.slick-dots {
  justify-content: center;
  margin-top: 65px;
}
.story-carousel .carousel ul.slick-dots li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
  padding: 0px;
}
.story-carousel .carousel ul.slick-dots li button {
  height: 10px;
  width: 10px;
  opacity: 1;
  margin: 12px;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  cursor: pointer;
}
.story-carousel .carousel ul.slick-dots li.slick-active button {
  background-color: transparent;
  border: 2px solid #000000;
  transform: none;
}
.story-carousel .carousel-pagination {
  position: absolute;
  top: auto;
  bottom: 2px;
  left: 0px;
  right: 0px;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 126px;
}
.story-carousel .carousel-pagination .slick-arrow.slick-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
  visibility: visible;
}
.story-carousel .carousel-pagination button {
  z-index: 1;
}
.story-carousel .carousel-pagination button.slick-next img {
  display: none;
}
.story-carousel .carousel-pagination button.slick-next::after {
  content: "❯";
  color: #000000;
  margin-right: 12px;
  font-size: 24px;
  position: relative;
  top: -3px;
}
.story-carousel .carousel-pagination button.slick-prev img {
  display: none;
}
.story-carousel .carousel-pagination button.slick-prev::before {
  content: "❮";
  color: #000000;
  margin-left: 12px;
  font-size: 24px;
  position: relative;
  top: -3px;
}
.titolo-sottotitolo {
  display: grid;
  grid-template-columns: 48px repeat(12, 1fr) 48px;
  grid-template-rows: 1fr;
  gap: 16px;
  align-items: center;
}
.titolo-sottotitolo h3 {
  color: #005da8;
  font-size: 48px;
  font-weight: 700;
  line-height: 72px;
}
.titolo-sottotitolo h2 {
  color: #005da8;
  font-size: 48px;
  font-weight: 700;
  line-height: 72px;
}
.tmc-wrapper {
  grid-column: 3 / 12;
  grid-row: 1;
  height: 100%;
  padding: 32px 0 32px 0;
}
@media (max-width: 1024px) {
  .titolo-sottotitolo {
    grid-template-columns: 8px repeat(12, 1fr) 8px;
    grid-template-rows: auto;
    min-height: auto;
  }
}
@media (max-width: 1200px) {
  .tmc-wrapper {
    padding: 60px 60px;
  }
}
@media (max-width: 1024px) {
  .tmc-wrapper {
    grid-column: 1/-1;
    grid-row: 1;
    padding: 60px 30px 40px 30px;
  }
}
.titolo-sottotitolo p {
  padding-top: 24px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.titolo-sottotitolo b, strong {
  font-weight: 700;
}
.wp-block-image.size-full {
  text-align: center;
}
.wp-block-image.size-full img {
  width: 100%;
}
.titolo-sottotitolo ul {
  list-style: disc;
}
.titolo-sottotitolo ul {
  padding-top: 30px;
  padding-left: 20px;
}
.cards-carousel.grey-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 48px 64px;
}
.cards-carousel.grey-cards .horizontal-cards {
  width: 100%;
  grid-column: 2 / 12;
  padding: 0px;
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-label {
  font-size: 24px;
  line-height: 32px;
  font-family: "Roboto";
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-label * {
  font-size: 24px;
  line-height: 32px;
  font-family: "Roboto";
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card-title {
  font-size: 16px;
  line-height: 24px;
  font-family: "Roboto";
  display: flex;
  flex-direction: column;
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card-title * {
  font-size: 18px;
  line-height: 24px;
  font-family: "Roboto";
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card-title span.cta {
  font-size: 14px;
  line-height: 24px;
  font-family: "Roboto";
  font-weight: 700;
  display: inline-block;
  padding: 0px 28px 5px 0px !important;
}
.cards-carousel.grey-cards .horizontal-cards ul li {
  height: auto;
}
.cards-carousel.grey-cards .horizontal-cards ul li:first-child {
  padding-left: 0 !important;
}
.cards-carousel.grey-cards .horizontal-cards ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  overflow: hidden;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cards-carousel.grey-cards .horizontal-cards ul li {
  flex: 0 0 33.3333333333%;
  width: 33.3333333333%;
  padding-left: 16px;
}
.cards-carousel.grey-cards.two .horizontal-cards ul li {
  flex: 0 0 50%;
  width: 50%;
  padding-left: 16px;
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card {
  display: block;
  height: 100%;
  text-decoration: none;
  background-color: #eff1f3;
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card .horizontal-label {
  width: 100%;
  padding: 28px 28px 10px 28px;
  background-color: transparent;
  z-index: 1;
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card .horizontal-label p {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card .horizontal-card-title {
  font-size: 1.4rem;
  line-height: 3.2rem;
  font-style: normal;
  padding: 0px 28px 28px 28px;
  position: relative;
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card .horizontal-card-title .cta {
  padding: 45px 28px 28px 0px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card .horizontal-card-title .arrow {
  height: 15px;
  vertical-align: text-center;
}
.cards-carousel.grey-cards .horizontal-cards .horizontal-card .horizontal-card-title .arrow.arrow-download {
  rotate: 90deg;
}
.cards-carousel.grey-cards .horizontal-cards ul li {
  height: auto;
}
.cards-carousel.grey-cards.two span.cta img.arrow-two {
  vertical-align: middle;
  width: 24px;
}
.go-back + .anchor-card-wrapper {
  width: auto;
}
.anchor-card-wrapper {
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 48px 64px;
  gap: 40px;
}
.anchor-card-container {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.text-container {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 131px;
}
.anchor-card-title {
  font-size: 32px;
  line-height: 49px;
  font-family: Oswald;
  color: #005da8;
  padding-bottom: 16px;
}
.anchor-card-subtitle {
  width: 100%;
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: 700;
  font-family: Roboto;
  color: #000;
  padding-bottom: 16px;
}
.anchor-card-text {
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  font-family: Roboto;
  color: #000;
}
.anchor-card-text h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  padding-bottom: 16px;
}
.anchor-card-text h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  padding-bottom: 16px;
}
.anchor-card-text ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 24px;
}
.anchor-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-column: span 1;
}
.wp-block-acf-history-container {
  min-height: 451px;
  overflow: hidden;
  position: relative;
}
.acf-innerblocks-container {
  min-height: 451px;
  position: absolute;
  display: flex;
  flex-direction: row;
  transition: all 0.35s ease-in-out;
  left: 0px;
}
.six-cards-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 48px 64px 110px 64px;
}
.six-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.six-cards-card {
  background-color: #eff1f3;
}
.six-cards-title {
  font-size: 48px;
  line-height: 72px;
  font-family: Oswald;
  color: #005da8;
  padding-bottom: 16px;
}
.six-cards-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-family: Roboto;
  color: #000;
  padding-bottom: 64px;
}
.six-cards-card-title {
  font-size: 24px;
  line-height: 32px;
  font-family: Roboto;
  font-weight: bold;
  color: #000;
  padding-bottom: 16px;
}
.six-cards-card-description {
  font-size: 16px;
  line-height: 24px;
  font-family: Roboto;
  color: #000;
}
.six-cards-image {
  width: 100%;
  /* o la dimensione desiderata */
  height: auto;
  object-fit: contain;
  object-position: top;
  vertical-align: top;
  /* Elimina lo spazio inferiore */
}
.six-cards-text-block {
  padding: 32px;
}
.content-card.tamini-content-card {
  align-items: flex-start;
}
.content-card.tamini-content-card .content-card-body p {
  font-size: 20px;
}
.content-card.tamini-content-card .content-card-body b, .content-card.tamini-content-card .content-card-body strong {
  font-weight: 700;
}
.content-card.tamini-content-card .content-card-body .ntt-button.color-blue-dark {
  color: #005da8;
}
.content-card.tamini-content-card .content-card-body .ntt-button.color-blue-dark span {
  color: #005da8;
}
.content-card.tamini-content-card .content-card-body .ntt-button.color-blue-dark span.icon {
  background-image: url(/wp-content/themes/tamini/img/arrow-color-blue-dark.svg);
  vertical-align: middle;
  animation: defaultRotation 0.5s linear both alternate;
  margin-left: 11px;
}
.content-card.tamini-content-card .content-card-body .ntt-button.color-blue-dark:hover span.icon {
  animation: fullRotation 0.35s linear both alternate;
}
.title-block {
  padding-top: 0px !important;
}
.title-block h2 {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  color: #005da8;
  font-style: normal;
}
.title-block p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}
.title-block b, .title-block strong {
  font-weight: 700;
}
.anchors-nav nav ul li {
  margin-right: 80px;
}
.tamini-accordion {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0px 16px;
  padding-left: 64px;
  padding-right: 64px;
  padding-bottom: 110px;
  padding-top: 112px;
}
.tamini-accordion .accordion {
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  padding: 18px 32px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 32px;
  font-family: "Oswald";
  font-weight: 700;
  line-height: 49px;
  transition: 0.4s;
  grid-column: 2 / 12;
  border-top: 1px solid #727375;
}
.tamini-accordion .accordion span {
  position: relative;
  float: right;
  font-size: 30px;
}
.tamini-accordion .accordion span:after {
  content: "+";
  position: absolute;
  right: 0px;
  font-family: "Times New Roman", serif;
}
.tamini-accordion .accordion:last-of-type {
  border-bottom: 1px solid #727375;
}
.tamini-accordion .active {
  border-bottom: none !important;
}
.tamini-accordion .active span:after {
  content: "—";
  font-size: 20px;
  position: relative;
  top: -5px;
}
.tamini-accordion .active + .panel:last-of-type {
  border-bottom: 1px solid #727375;
}
.tamini-accordion .accordion:hover {
  background-color: #005da8;
  color: #ffffff;
}
.tamini-accordion .panel {
  padding: 16px 32px;
  display: none;
  background-color: #ffffff;
  overflow: hidden;
  grid-column: 2 / 12;
}
.tamini-accordion .panel .grey-cards {
  margin-top: 44px;
}
.tamini-accordion .panel .grey-cards ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 40px;
}
.tamini-accordion .panel .grey-cards ul li {
  background-color: #d4dff1;
  padding: 32px;
}
.tamini-accordion .panel .grey-cards ul li .horizontal-label {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin-bottom: 16px;
}
.tamini-accordion .panel .grey-cards ul li .horizontal-label p {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}
.tamini-accordion .panel .grey-cards ul li .horizontal-card-title {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.tamini-accordion .panel .grey-cards ul li .horizontal-card-title span {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.tamini-accordion .panel .grey-cards ul li .horizontal-card-title span.cta {
  margin-top: 16px;
  display: inline-block;
  width: 100%;
}
.tamini-accordion .panel .grey-cards ul li .horizontal-card-title span.cta a {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
}
.tamini-accordion .panel .grey-cards ul li .horizontal-card-title span.cta a img.arrow {
  vertical-align: middle;
  animation: defaultRotation 0.5s linear both alternate;
  width: 24px;
}
.tamini-accordion .panel .grey-cards ul li .horizontal-card-title span.cta a:hover img.arrow {
  animation: fullRotation 0.35s linear both alternate;
}
.tamini-accordion .panel .panel-image {
  width: 100%;
  margin-top: 40px;
}
.tamini-accordion .panel figcaption {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  margin-top: 24px;
  margin-bottom: 16px;
}
.tamini-accordion .panel h4 {
  font-family: "Roboto" !important;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin-bottom: 32px;
}
.tamini-accordion .panel > p {
  font-family: "Roboto" !important;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}
.tamini-accordion .panel > ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 2em;
}
.tamini-accordion .panel > ul li {
  font-family: "Roboto" !important;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}
.tamini-accordion .panel .cta-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.tamini-cards-carousel .scrollbar-cover {
  height: 18px;
}
.tamini-cards-carousel .cards-carousel .horizontal-cards .horizontal-card .horizontal-card-title span {
  margin-right: 0px;
}
.cards-carousel .horizontal-cards ul li {
  height: 440px;
}
.cards-carousel .horizontal-cards .horizontal-card {
  color: black;
  position: relative;
  /*
            &.dark-card{
                .image{
                    .horizontal-label{
                        p{
                            color: white;
                        }
                    }
                }
            }
*/
}
.cards-carousel .horizontal-cards .horizontal-card.calm-blue {
  background-color: #BAD2ED;
}
.cards-carousel .horizontal-cards .horizontal-card.calm-blue .horizontal-card-title {
  background-color: #BAD2ED;
  line-height: 1.5;
}
.cards-carousel .horizontal-cards .horizontal-card.light-gray {
  background-color: #EFF1F3;
}
.cards-carousel .horizontal-cards .horizontal-card.light-gray .horizontal-card-title {
  background-color: #EFF1F3;
  line-height: 1.5;
}
.cards-carousel .horizontal-cards .horizontal-card.dark-gray {
  background-color: #404041;
}
.cards-carousel .horizontal-cards .horizontal-card.dark-gray .horizontal-card-title {
  background-color: #404041;
  line-height: 1.5;
}
.cards-carousel .horizontal-cards .horizontal-card.ntt-blue {
  background-color: #006699;
}
.cards-carousel .horizontal-cards .horizontal-card.ntt-blue .horizontal-card-title {
  background-color: #006699;
  line-height: 1.5;
}
.cards-carousel .horizontal-cards .horizontal-card.dark-card .horizontal-card-title {
  color: white;
}
.cards-carousel .horizontal-cards .horizontal-card.dark-card .horizontal-card-title svg path {
  stroke: white;
}
.cards-carousel .horizontal-cards .horizontal-card .horizontal-card-title {
  color: black;
  position: absolute;
  bottom: 0;
  font-family: Roboto;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 32px;
  font-style: normal;
  padding: 32px 24px;
}
.cards-carousel .horizontal-cards .horizontal-card .horizontal-card-title svg {
  height: 22px;
}
.cards-carousel .horizontal-cards .horizontal-card .horizontal-card-title svg path {
  stroke: black;
}
.cards-carousel .horizontal-cards .horizontal-card .horizontal-label p {
  line-height: 1.5;
}
.cards-carousel .horizontal-cards .horizontal-card .image {
  height: auto;
}
.cards-carousel .horizontal-cards .horizontal-card .image .symbol {
  width: 100%;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: 95.9px;
  margin: 136px auto 0 auto;
}
/* div contenitore del form */
div.wpcf7 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 16px;
  gap: 16px;
  padding-left: 64px;
  padding-right: 64px;
}
/* form */
.custom-form {
  grid-column: 2/12;
  padding-bottom: 100px;
}
/* campi */
.form-element-left {
  clear: both;
  float: left;
  width: 45%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Noto Sans", sans-serif;
}
.form-element-right {
  float: right;
  width: 45%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Noto Sans", sans-serif;
}
.form-element-right input {
  width: 100%;
  padding-left: 10px;
  border-radius: 10px;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 7px;
  border: 1px solid #ccc;
  font-family: "Noto Sans", sans-serif;
}
.form-element-right select {
  width: 100%;
  border-radius: 10px;
  padding-left: 10px;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid #ccc;
  font-family: "Noto Sans", sans-serif;
}
.form-element-left input {
  width: 100%;
  padding-left: 10px;
  border-radius: 10px;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 7px;
  border: 1px solid #ccc;
  font-family: "Noto Sans", sans-serif;
}
.form-element-left select {
  width: 100%;
  padding-left: 10px;
  border-radius: 10px;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid #ccc;
  font-family: "Noto Sans", sans-serif;
}
.form-element-full {
  float: left;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Noto Sans", sans-serif;
}
.form-element-full select {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid #ccc;
  font-family: "Noto Sans", sans-serif;
}
.form-element-full input {
  width: 100%;
  border-radius: 10px;
  padding-left: 10px;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid #ccc;
  font-family: "Noto Sans", sans-serif;
}
.form-element-full textarea {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-family: "Noto Sans", sans-serif;
}
.form-element-check {
  float: left;
  width: auto;
  padding-right: 30px;
}
.form-element-check label {
  font-weight: normal;
  font-family: "Noto Sans", sans-serif;
}
.form-submit-button {
  border-radius: 50px;
  background-color: #005da8;
  padding: 8px 24px;
  font-size: 14px;
  color: #fff;
  float: right;
  border: 1px solid #005da8;
  cursor: pointer;
}
.form-title {
  padding-top: 30px;
  padding-bottom: 30px;
}
.wpcf7-not-valid-tip {
  width: 40%;
  float: left;
  display: none;
}
.wpcf7-response-output {
  display: none;
}
.wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7-not-valid {
  border: 1px solid red !important;
}
.form-radio .wpcf7-list-item {
  display: inline-flex !important;
}
.form-radio .wpcf7-list-item-label {
  padding-left: 10px;
  margin-top: 10px;
}
.form-radio .wpcf7-list-item.last {
  margin-left: 20px !important;
}
.form-radio input {
  width: auto !important;
}
.pd20 {
  clear: both;
  padding-top: 20px;
}
.form-check-left {
  float: left;
  width: 70%;
}
.form-element-file {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  margin: 20px auto;
  position: relative;
}
/* Hide the default file input */
.upload-input {
  display: none;
}
/* Upload icon */
.upload-icon img {
  margin-bottom: 10px;
}
/* Titles and descriptions */
.upload-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}
.upload-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  margin-top: 40px;
}
.upload-size {
  font-size: 12px;
  color: #666;
  margin-bottom: 45px;
}
/* Upload button */
.upload-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #005da8;
  background-color: #ffffff;
  border: 1px solid #005da8;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.upload-button span {
  margin-left: 10px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 18px;
  vertical-align: bottom;
  background-image: url("/wp-content/themes/tamini/img/cloud-upload-icon.png");
}
/* fine campi */
/* classi per pagina di esito */
.status-ok {
  background: #c8e9cd;
  padding: 30px;
}
.status-ko {
  background: #ffd2cb;
  padding: 30px;
}
.pt-10 {
  padding-top: 10px;
}
form label {
  font-weight: bold;
}
.hero-with-breadcrumb {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
  /* 12 colonne uguali */
  gap: 16px;
  /* Distanza tra le colonne */
  padding: 0 48px;
  background-color: #005da8;
  border-top: 1px solid #ffffff;
}
.hero-with-breadcrumb__text {
  grid-column: 2 / 12;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  gap: 24px;
  text-align: left;
  font-size: 24px;
  color: #fff;
  font-family: Roboto;
}
.hero-with-breadcrumb__title {
  align-self: stretch;
  position: relative;
  font-size: 64px;
  line-height: 110px;
  font-family: Oswald;
}
/* Mobile Styles */
@media (max-width: 767px) {
  /* Stili per dispositivi mobili */
}
/* Tablet Styles */
@media (min-width: 768px) {
  /* Stili per tablet */
  .hero-with-breadcrumb {
    height: 500px;
  }
  .hero-with-breadcrumb__text {
    top: 200px;
  }
}
/* Desktop Styles */
@media (min-width: 992px) {
  /* Stili per desktop */
  .hero-with-breadcrumb {
    height: 500px;
  }
  .hero-with-breadcrumb__text {
    top: 200px;
  }
}
nav.breadcrumbs .crumb {
  color: #ffffff;
}
nav.breadcrumbs {
  overflow: visible;
  grid-column: 2 / 12;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  text-align: left;
  color: #fff;
  font-family: Roboto;
}
nav.breadcrumbs .parent:after {
  margin-right: 10px;
  margin-left: 6px;
  content: "|";
}
nav.breadcrumbs a {
  text-underline-offset: 8px;
}
.go-back {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
  /* 12 colonne uguali */
  gap: 16px;
  /* Distanza tra le colonne */
  padding: 50px 48px 100px;
  background-color: #ffffff;
}
nav.breadcrumbs-back {
  overflow: visible;
  grid-column: 2 / 12;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  text-align: left;
}
nav.breadcrumbs-back .parent:before {
  content: "<";
  color: #005da8;
  font-weight: bold;
  padding-right: 10px;
}
nav.breadcrumbs-back a {
  color: #005da8;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}
.titolo-sottotitolo-html {
  display: grid;
  grid-template-columns: 48px repeat(12, 1fr) 48px;
  grid-template-rows: 1fr;
  align-items: center;
}
.titolo-sottotitolo-html h3 {
  color: #005da8;
  font-size: 48px;
  font-weight: 700;
  line-height: 72px;
}
.titolo-sottotitolo-html.tmc-wrapper {
  grid-column: 3 / 12;
  grid-row: 1;
  height: 100%;
  padding: 32px 0 32px 0;
}
.titolo-sottotitolo-html p {
  padding-top: 24px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.33;
}
.titolo-sottotitolo-html ul {
  list-style: disc;
}
.titolo-sottotitolo-html ul {
  padding-left: 20px;
}
.tamini-around-the-world {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0px 16px;
  padding-left: 64px;
  padding-right: 64px;
  padding-bottom: 110px;
  padding-top: 112px;
}
.tamini-around-the-world .tamini-around-the-world__linked-card {
  grid-column: 2 / 12;
  background-color: #d4dff1;
  padding: 40px 16px;
  display: none;
}
.tamini-around-the-world .tamini-around-the-world__linked-card .tamini-around-the-world__linked-card__title {
  font-family: "Roboto";
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
}
.tamini-around-the-world .tamini-around-the-world__linked-card .tamini-around-the-world__linked-card__text {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
}
.container-button-right {
  display: grid;
  grid-template-columns: repeat(6, 2fr);
  grid-gap: 16px;
  gap: 16px;
}
.button-right {
  grid-column: 6/12;
  padding-bottom: 100px;
}
.goto-hp {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 24px;
  gap: 8px;
  font-size: 12px;
  color: #fff;
  width: auto;
  text-decoration: none;
  color: #005da8;
  background: #ffffff;
  border: 2px solid #005da8;
  border-radius: 50px;
}
.goto-hp svg {
  vertical-align: text-top;
}
.article-body {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 0px 64px 80px 64px;
}
.article-body h2 {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  color: #005da8;
}
.article-body h2 + p strong {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin-bottom: 112px;
  display: inline-block;
}
.article-body h3 {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 32px;
  line-height: 49px;
  color: #000000;
  margin-top: 80px;
}
.article-body p, .article-body p:not([class]) {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}
.article-body .wp-block-image.size-full img {
  width: 100%;
  height: auto;
}
.article-body figcaption {
  text-align: left;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.article-body figure img {
  height: auto;
}
.article-body section.report {
  padding-top: 0px;
}
.article-body section.report [role="tabpanel"] {
  padding-top: 10px;
}
.article-body section.report [role="tabpanel"] li p.column-title {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}
.article-body section.report [role="tabpanel"] li > strong {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}
.article-body .wp-block-columns {
  display: flex;
  gap: 16px;
}
.article-body ul {
  list-style: disc;
  list-style-position: outside;
  margin-left: 24px;
}
.article-body ul li {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 15px;
  color: #000000;
}
.article-body .content-card.tamini-content-card {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
.article-body .content-card.picture-right .content-card-body {
  grid-column: 1 / 8;
}
.article-body .content-card.picture-right img, .article-body .content-card.picture-right picture {
  grid-column: 9 / 13;
  width: 100%;
  max-width: 335px;
  justify-self: flex-end;
  margin-bottom: 8px;
}
.article-body .content-card .content-card-body h3 {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}
.article-body .content-card .content-card-body ul:not([class]) {
  grid-gap: 0px;
  margin: 0 32px 32px 1em;
}
.article-body > * {
  grid-column: 2 / 12;
}
.wsp-container ul {
  list-style: none;
}
.wsp-container li {
  padding: 5px;
}
.wsp-container li a {
  font-weight: bold;
}
.children a {
  font-weight: normal !important;
  font-size: 18px;
}
@media (min-width: 1025px) {
  body {
    margin-top: 110px;
    transition: all 0.3s allow-discrete;
  }
  body header.header-menu .menu-container {
    transition: all 0.3s allow-discrete;
  }
  body header.header-menu .menu-container .logo .logo-icon {
    transition: all 0.3s allow-discrete;
  }
  body header.header-menu .menu-container .logo-tes img {
    transition: all 0.3s allow-discrete;
  }
  body header.header-menu .submenu-container {
    transition: all 0.3s allow-discrete;
  }
  body.scrolled {
    margin-top: 80px;
  }
  body.scrolled header.header-menu .menu-container {
    height: 80px;
  }
  body.scrolled header.header-menu .menu-container .logo .logo-icon {
    height: 50px;
  }
  body.scrolled header.header-menu .menu-container .logo-tes img {
    height: 50px;
  }
  body.scrolled header.header-menu .submenu-container {
    height: 50px;
  }
  body .desktop-card__image, body .desktop-card__image-left {
    min-width: 355px;
  }
  header.header-menu {
    position: fixed;
    top: 0px;
    z-index: 999999;
    width: 100%;
  }
  header.header-menu .menu {
    display: none;
  }
}
@media (max-width: 1150px) and (min-width: 1025px) {
  /*
    * Adattamenti per voci di menu
    */
  body.scrolled header.header-menu .menu-container .logo .logo-icon {
    height: 50px;
  }
  header.header-menu .menu-container .logo .logo-icon {
    height: 50px;
  }
  body.scrolled header.header-menu .menu-container .logo-tes img {
    height: 50px;
  }
  header.header-menu .menu-container nav.language-menu .logo-tes img {
    height: 50px;
  }
  header.header-menu .menu-container nav ul li a {
    transition: all 0.3s allow-discrete;
    font-size: 10px !important;
  }
  header.header-menu .submenu-container ul li a {
    transition: all 0.3s allow-discrete;
    font-size: 10px !important;
  }
}
@media (max-width: 1366px) and (min-width: 1025px) {
  /*
    * standard in Tamini's offices
    */
  body {
    margin-top: 80px;
  }
  body header.header-menu .menu-container {
    height: 80px;
  }
  body header.header-menu .menu-container .logo .logo-icon {
    height: 50px;
  }
  body header.header-menu .menu-container nav ul li a {
    font-size: 15px;
    line-height: 20px;
  }
  body header.header-menu .menu-container .logo-tes img {
    height: 50px !important;
  }
  header.header-menu .submenu-container.submenu-container--shown {
    height: 50px;
  }
  header.header-menu .submenu-container ul li a {
    font-size: 15px;
    line-height: 20px;
  }
  .hero-image {
    height: calc(100vh - 80px);
  }
  .splide .splide__slide {
    height: calc(100vh - 80px) !important;
  }
  .hero-image__title {
    font-size: 48px;
    line-height: 56px;
  }
  .hero-image__subtitle {
    font-size: 24px;
    line-height: 36px;
  }
  .hero-image__text {
    top: 35vh;
  }
  footer .footer-bottom p {
    font-size: 1.1rem;
  }
  .anchor-card-image {
    height: 300px;
    width: 300px;
  }
  .three-cards__cta-text b {
    font-size: 12px;
  }
  .three-cards__body {
    padding: 0px 16px;
  }
  .three-cards__wrapper.splide .splide__track {
    grid-column: 2 / 12;
    overflow: visible;
  }
  .three-cards__wrapper.splide .splide__track .splide__list {
    gap: 11%;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide {
    max-width: 434px;
    height: 540px;
    min-width: 45%;
    height: auto !important;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide img {
    height: 100%;
    width: 100%;
  }
}
@media (min-width: 1337px) {
  /*
    * wide screen
    */
  .three-cards__wrapper.splide .splide__track {
    grid-column: 2 / 12;
    overflow: visible;
  }
  .three-cards__wrapper.splide .splide__track .splide__list {
    gap: 8.7%;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide {
    max-width: 434px;
    height: auto;
    min-width: auto;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide img {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 1024px) and (min-width: 480px) {
  /*
    * header
    */
  /*
    * menu mobile tablet
    */
  /*
    * section slide (slider homepage)
    */
  /*
    * section content-card-title
    */
  /*
    * section content-card-title home
    */
  /*
    * section desktop-cards__wrapper
    */
  /*
    * section desktop-cards__wrapper home
    */
  /*
    * section separator-wrapper
    */
  /*
    * section card-with-icon__container
    */
  /*
    * section content-card__container
    */
  /*
    * section three-cards__wrapper
    */
  /*
    * section story-carousel
    */
  /*
    * footer
    */
  /*
    * header submenu
    */
  /*
    * section hero-image
    */
  /*
    * section new-anchors-title
    */
  /*
    * section anchors-nav
    */
  /*
    * div navigation-anchors-wrapper
    */
  /*
    * section video-player
    */
  /*
    * section six-cards-wrapper
    */
  /*
    * section cards-carousel grey-cards
    */
  /*
    * section titolo-sottotitolo
    */
  /*
    * section content-card.tamini-content-card
    */
  /*
    * section title-block
    */
  /*
    * section .content-card.tamini-content-card.picture-right
    */
  /*
    * section tamini-accordion
    */
  /*
    * section tamini-cards-carousel
    */
  /*
    * div wpcf7
    */
  /*
    * section tamini-around-the-world
    */
  /*
    * section cards-entrypoint
    */
  /*
    * section hero-with-breadcrumb
    */
  /*
    * section go-back
    */
  /*
    * pagine project
    */
  /*
    * article footer-text-block__wrapper
    */
  /*
    * section titolo-sottotitolo-html
    */
  /*
    * svg
    */
  header.header-menu .menu-container {
    padding: 24px 32px;
    height: 84px;
  }
  header.header-menu .menu-container .logo .logo-icon {
    height: auto;
    width: 82px !important;
  }
  header.header-menu .menu-container .main-menu {
    display: none;
  }
  header.header-menu .menu-container .language-menu {
    display: none !important;
  }
  header.header-menu .submenu-container.submenu-container--hidden {
    display: none;
  }
  header.header-menu .menu {
    display: inline-block;
  }
  header.header-menu .menu .burger-menu {
    width: 21px;
    height: 18px;
  }
  header.header-menu .menu .burger-menu svg rect {
    fill: #005da8;
  }
  aside {
    background-color: transparent;
  }
  aside .aside-header {
    background-color: #ffffff;
  }
  aside .aside-header .logo img {
    height: auto;
    width: 82px !important;
  }
  aside .aside-header .menu {
    position: relative;
    top: 4px;
  }
  aside .aside-header .menu .close-menu svg path {
    fill: #000000;
  }
  aside .aside-scroll .aside-content {
    display: flex;
    justify-content: space-between;
    background-color: #005da8;
    padding-bottom: 40px;
  }
  aside .aside-scroll .aside-content ul.menu li a {
    font-family: "Roboto";
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    text-decoration: none;
  }
  aside .aside-scroll .aside-content ul.menu li a.active {
    border-bottom: 3px solid #ffffff;
  }
  aside .aside-scroll .aside-content ul.menu li ul.sub-menu {
    padding-left: 24px;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile ul li {
    color: #ffffff;
    text-align: right;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile ul li a {
    font-size: 16px;
    line-height: 24px;
    font-family: Roboto;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 0px 4px;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile ul li a.active {
    border-bottom: 3px solid #ffffff;
    font-weight: 700;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile .logo-tes-mobile img {
    max-height: 30px;
    width: auto;
  }
  .splide .splide__track {
    height: 690px;
  }
  .splide .splide__track .hero-image__text * {
    grid-column: 1 / 13;
  }
  .content-card-title .content-card-title__block {
    grid-column: 1 / 13;
  }
  body.home main > .content-card-title {
    padding-top: 80px;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent {
    grid-column: 1 / 13;
  }
  body.home main .separator-wrapper + .desktop-cards__wrapper {
    padding-bottom: 80px;
  }
  .separator-wrapper .tamini-separator {
    grid-column: 1 / 13;
  }
  .card-with-icon__container {
    padding: 80px 64px;
  }
  .card-with-icon__container .card-with-icon__blockwith_ico {
    grid-column: 1 / 13;
  }
  .content-card__container .content-card__text-cta {
    grid-column: 1 / 7;
  }
  .content-card__container .content-card__image {
    grid-column: 7 / 13;
  }
  .three-cards__wrapper.splide .splide__track {
    grid-column: 1 / 13;
    overflow: visible;
    height: 550px;
  }
  .three-cards__wrapper.splide .splide__track .splide__list {
    gap: 9%;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide {
    width: 48%;
    height: 540px;
    min-width: 422px;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide img {
    height: 100%;
    width: 100%;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide .three-cards__cta-text {
    font-family: "Roboto";
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
  }
  .story-carousel {
    padding: 64px 64px;
  }
  .story-carousel > h2 {
    grid-column: 1 / 7;
  }
  .story-carousel .carousel .slick-track {
    padding-left: 0px;
  }
  footer.footer-wrapper {
    padding-left: 64px;
    padding-right: 64px;
  }
  footer.footer-wrapper .footer-bottom {
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  footer.footer-wrapper .footer-bottom .footer-copyright {
    padding-left: 15%;
  }
  footer.footer-wrapper .footer-bottom .footer-copyright p {
    font-size: 12px;
    text-align: left;
  }
  header.header-menu .submenu-container.submenu-container--shown {
    justify-content: flex-start;
    padding-left: 32px;
    padding-right: 32px;
  }
  header.header-menu .submenu-container.submenu-container--shown ul li {
    display: none;
  }
  header.header-menu .submenu-container.submenu-container--shown ul li.active {
    display: list-item;
  }
  .hero-image {
    padding: 0 64px;
  }
  .hero-image .hero-image__text {
    grid-column: 1 / 13;
  }
  .new-anchors-title {
    padding: 64px;
  }
  .new-anchors-title .new-anchors-title__title {
    grid-column: 1 / 13;
  }
  .new-anchors-title .new-anchors-title__subtitle {
    grid-column: 1 / 13;
  }
  .anchors-nav {
    padding-left: 64px;
    padding-right: 64px;
  }
  .anchors-nav nav {
    grid-column: 1 / 13;
  }
  .navigation-anchors-wrapper .anchor-card-container {
    grid-column: 1 / 13;
    grid-template-columns: repeat(4, 1fr);
  }
  .navigation-anchors-wrapper .anchor-card-container .anchor-card-image {
    grid-column: span 2;
  }
  .navigation-anchors-wrapper .anchor-card-container .text-container {
    padding-right: 20%;
  }
  body.parent-pageid-1044 .navigation-anchors-wrapper .anchor-card-container .text-container, body.parent-pageid-1497 .navigation-anchors-wrapper .anchor-card-container .text-container {
    grid-column: span 4;
  }
  .video-player .video-cover img {
    height: auto;
    width: auto;
  }
  .six-cards-wrapper .six-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-carousel.grey-cards .horizontal-cards {
    grid-column: 1 / 13;
  }
  .titolo-sottotitolo .tmc-wrapper {
    padding: 60px 64px 40px 64px;
  }
  .content-card.tamini-content-card {
    padding-left: 64px;
    padding-right: 64px;
  }
  .content-card.tamini-content-card .content-card-body {
    grid-column: 1 / 13;
  }
  .title-block {
    padding-left: 64px;
    padding-right: 64px;
  }
  .title-block h2 {
    grid-column: 1 / 13;
  }
  .title-block p {
    grid-column: 1 / 13;
  }
  .content-card.tamini-content-card.picture-right img {
    grid-column: 1 / 9;
  }
  .tamini-accordion .accordion {
    grid-column: 1 / 13;
  }
  .tamini-accordion .panel {
    grid-column: 1 / 13;
  }
  .tamini-cards-carousel .cards-carousel .horizontal-cards {
    padding-left: 64px;
    padding-right: 64px;
  }
  .tamini-cards-carousel .cards-carousel .horizontal-cards ul {
    flex-wrap: wrap;
  }
  .tamini-cards-carousel .cards-carousel .horizontal-cards ul li {
    flex-basis: 50%;
    padding-bottom: 16px;
  }
  .tamini-cards-carousel .cards-carousel .horizontal-cards ul li:nth-of-type(odd) {
    padding-left: 0;
  }
  div.wpcf7 .custom-form {
    grid-column: 1 / 13;
  }
  .tamini-around-the-world .tamini-around-the-world__linked-card {
    grid-column: 1 / 13;
  }
  .cards-entrypoint {
    padding-left: 64px;
    padding-right: 64px;
  }
  .cards-entrypoint .cards-entrypoint-card-container {
    grid-column: 1 / 13;
  }
  .hero-with-breadcrumb {
    padding-left: 64px;
    padding-right: 64px;
  }
  .hero-with-breadcrumb nav.breadcrumbs, .hero-with-breadcrumb .hero-with-breadcrumb__text {
    grid-column: 1 / 13;
  }
  .go-back {
    padding-left: 64px;
    padding-right: 64px;
  }
  .go-back nav.breadcrumbs-back {
    grid-column: 1 / 13;
  }
  .article-body > * {
    grid-column: 1 / 13;
  }
  .article-body .content-card.tamini-content-card.picture-right {
    align-items: end;
  }
  .article-body .content-card.tamini-content-card.picture-right img {
    grid-column: 9 / 13;
  }
  .article-body .report .tabs {
    grid-column: 1 / 13;
  }
  .footer-text-block__wrapper .footer-text-block__container {
    grid-column: 1 / 13;
  }
  .titolo-sottotitolo-html .tmc-wrapper {
    padding-left: 64px;
    padding-right: 64px;
  }
  #svg-desktop {
    display: none;
  }
  #svg-tablet {
    display: block !important;
    margin-top: 100px;
    padding-left: 64px;
    padding-right: 64px;
  }
  #svg-smartphone {
    display: none;
  }
}
@media (max-width: 480px) {
  /*
    * main
    */
  /*
    * header
    */
  /*
    * menu mobile tablet
    */
  /*
    * section slide (slider homepage)
    */
  /*
    * section content-card-title
    */
  /*
    * section content-card-title home
    */
  /*
    * section desktop-cards__wrapper
    */
  /*
    * section desktop-cards__wrapper home
    */
  /*
    * section separator-wrapper
    */
  /*
    * section card-with-icon__container
    */
  /*
    * section content-card__container
    */
  /*
    * section three-cards__wrapper
    */
  /*
    * section story-carousel
    */
  /*
    * footer
    */
  /*
    * header submenu
    */
  /*
    * section hero-image
    */
  /*
    * section new-anchors-title
    */
  /*
    * section anchors-nav
    */
  /*
    * div navigation-anchors-wrapper
    */
  /*
    * section video-player
    */
  /*
    * section six-cards-wrapper
    */
  /*
    * section cards-carousel grey-cards
    */
  /*
    * section titolo-sottotitolo
    */
  /*
    * section content-card.tamini-content-card
    */
  /*
    * section title-block
    */
  /*
    * section .content-card.tamini-content-card.picture-right
    */
  /*
    * section tamini-accordion
    */
  /*
    * section tamini-cards-carousel
    */
  /*
    * div wpcf7
    */
  /*
    * section tamini-around-the-world
    */
  /*
    * section cards-entrypoint
    */
  /*
    * section hero-with-breadcrumb
    */
  /*
    * section go-back
    */
  /*
    * pagine project
    */
  /*
    * article footer-text-block__wrapper
    */
  /*
    * section titolo-sottotitolo-html
    */
  /*
    * Pagine di risposta form
    */
  /*
    * svg
    */
  body main {
    overflow-x: hidden;
  }
  header.header-menu .menu-container {
    padding: 24px 32px;
    height: 84px;
  }
  header.header-menu .menu-container .logo .logo-icon {
    height: auto;
    width: 82px !important;
  }
  header.header-menu .menu-container .main-menu {
    display: none;
  }
  header.header-menu .menu-container .language-menu {
    display: none !important;
  }
  header.header-menu .submenu-container.submenu-container--hidden {
    display: none;
  }
  header.header-menu .menu {
    display: inline-block;
  }
  header.header-menu .menu .burger-menu {
    width: 21px;
    height: 18px;
  }
  header.header-menu .menu .burger-menu svg rect {
    fill: #005da8;
  }
  aside {
    background-color: transparent;
  }
  aside .aside-header {
    background-color: #ffffff;
  }
  aside .aside-header .logo img {
    height: auto;
    width: 82px !important;
  }
  aside .aside-header .menu {
    position: relative;
    top: 4px;
  }
  aside .aside-header .menu .close-menu svg path {
    fill: #000000;
  }
  aside .aside-scroll .aside-content {
    display: flex;
    justify-content: space-between;
    background-color: #005da8;
    padding-bottom: 40px;
  }
  aside .aside-scroll .aside-content ul.menu li a {
    font-family: "Roboto";
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
  }
  aside .aside-scroll .aside-content ul.menu li a.active {
    border-bottom: 3px solid #ffffff;
  }
  aside .aside-scroll .aside-content ul.menu li ul.sub-menu {
    padding-left: 24px;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile ul li {
    color: #ffffff;
    text-align: right;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile ul li a {
    font-size: 16px;
    line-height: 24px;
    font-family: Roboto;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 0px 4px;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile ul li a.active {
    border-bottom: 3px solid #ffffff;
    font-weight: 700;
  }
  aside .aside-scroll .aside-content nav.language-menu.language-menu--mobile .logo-tes-mobile img {
    max-height: 30px;
    width: auto;
  }
  .splide .splide__track {
    height: 690px;
  }
  .splide .splide__track .hero-image__text {
    padding: 0px 32px;
  }
  .splide .splide__track .hero-image__text * {
    grid-column: 1 / 13;
  }
  .splide .splide__track .hero-image__title {
    line-height: 72px;
  }
  .content-card-title {
    padding-left: 32px;
    padding-right: 32px;
  }
  .content-card-title .content-card-title__block {
    grid-column: 1 / 13;
  }
  body.home main > .content-card-title {
    padding-top: 80px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .desktop-cards__wrapper {
    padding: 48px 0px;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent {
    grid-column: 1 / 13;
    max-width: 100vw;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent .desktop-cards {
    padding-left: 0px;
    padding-right: 0px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 32px 1fr 32px;
    padding-bottom: 40px;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent .desktop-cards .desktop-cards__text-cta {
    grid-column: 2 / 3;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent .desktop-cards .desktop-cards__text-cta + .desktop-cards__separator {
    grid-column: 1 / 2;
    width: 100%;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent .desktop-cards .desktop-cards__text-cta + .desktop-cards__separator + .desktop-card__image {
    grid-column: 2 / 4;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent .desktop-cards-left {
    padding-left: 0px;
    padding-right: 0px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 32px 1fr 32px;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent .desktop-cards-left .desktop-card__image-left {
    grid-column: 1 / 3;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent .desktop-cards-left .desktop-card__image-left + .desktop-cards__separator-left {
    grid-column: 3 / 4;
  }
  .desktop-cards__wrapper .desktop-cards__group-parent .desktop-cards-left .desktop-card__image-left + .desktop-cards__separator-left + .desktop-cards__text-cta-left {
    grid-column: 2 / 3;
  }
  body.home main .separator-wrapper + .desktop-cards__wrapper {
    padding-bottom: 80px;
  }
  .separator-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
  .separator-wrapper .tamini-separator {
    grid-column: 1 / 13;
  }
  .separator-wrapper hr {
    visibility: hidden;
  }
  .card-with-icon__container {
    padding: 80px 32px;
    gap: 0px;
  }
  .card-with-icon__container .card-with-icon__blockwith_ico {
    grid-column: 1 / 13;
  }
  .card-with-icon__container .card-with-icon__blockwith_ico .card-with-icon__cards_container {
    gap: 0px;
    row-gap: 40px;
  }
  .card-with-icon__container .card-with-icon__blockwith_ico .card-with-icon__cards_container .card-with-icon__card {
    grid-column: span 12;
  }
  .content-card__container {
    grid-template-columns: 32px 1fr 32px;
    grid-template-rows: auto;
  }
  .content-card__container .content-card__text-cta {
    grid-column: 2 / 3;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .content-card__container .content-card__image {
    grid-column: 1 / 4;
  }
  .three-cards__wrapper.splide {
    padding: 64px 32px 96px 32px;
  }
  .three-cards__wrapper.splide .splide__track {
    grid-column: 1 / 13;
    overflow: visible;
    height: auto;
  }
  .three-cards__wrapper.splide .splide__track .splide__list {
    gap: 4%;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide {
    height: auto;
    min-width: 74%;
    justify-content: space-between;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide img {
    height: auto;
    width: 100%;
  }
  .three-cards__wrapper.splide .splide__track .splide__list .splide__slide .three-cards__cta-text {
    font-family: "Roboto";
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
  }
  .story-carousel {
    padding: 64px 32px 96px 32px;
  }
  .story-carousel > h2 {
    grid-column: 1 / 7;
  }
  .story-carousel .carousel .slick-track {
    padding-left: 0px;
  }
  .story-carousel .carousel-pagination {
    bottom: -60px;
  }
  footer.footer-wrapper {
    padding-left: 32px;
    padding-right: 32px;
    gap: 0px;
  }
  footer.footer-wrapper .footer-bottom {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 136px;
  }
  footer.footer-wrapper .footer-bottom .footer-copyright {
    padding-left: 0px;
    width: 100%;
    margin-top: 56px;
  }
  footer.footer-wrapper .footer-bottom .footer-copyright p {
    font-size: 12px;
    text-align: left;
  }
  footer.footer-wrapper .footer-bottom .footer-social {
    width: 100%;
  }
  footer .footer-body {
    flex-wrap: wrap;
    row-gap: 160px;
  }
  footer .footer-body .footer-left, footer .footer-body .footer-right {
    width: 100%;
  }
  footer .footer-top {
    flex-direction: column;
    row-gap: 40px;
  }
  header.header-menu .submenu-container.submenu-container--shown {
    justify-content: flex-start;
    padding-left: 32px;
    padding-right: 32px;
  }
  header.header-menu .submenu-container.submenu-container--shown ul li {
    display: none;
  }
  header.header-menu .submenu-container.submenu-container--shown ul li.active {
    display: list-item;
  }
  .hero-image {
    padding: 0 32px;
    height: 615px;
  }
  .hero-image .hero-image__text {
    grid-column: 1 / 13;
    justify-content: flex-end;
    padding-bottom: 100px;
  }
  .hero-image .hero-image__title {
    line-height: 70px;
  }
  .new-anchors-title {
    padding: 64px;
    padding-left: 32px;
    padding-right: 32px;
    gap: 0px;
  }
  .new-anchors-title .new-anchors-title__title {
    grid-column: 1 / 13;
  }
  .new-anchors-title .new-anchors-title__subtitle {
    grid-column: 1 / 13;
    height: auto;
  }
  .anchors-nav {
    padding-left: 32px;
    padding-right: 32px;
  }
  .anchors-nav nav {
    grid-column: 1 / 13;
  }
  .anchors-nav nav ul {
    flex-flow: wrap;
    row-gap: 32px;
  }
  .anchors-nav nav ul li {
    margin-right: 32px;
  }
  .navigation-anchors-wrapper.wp-block-acf-history-container {
    min-height: 845px;
  }
  .navigation-anchors-wrapper .anchor-card-wrapper {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    gap: 0px;
  }
  .navigation-anchors-wrapper .anchor-card-wrapper .anchor-card-container {
    grid-column: 1 / 13;
    grid-template-columns: repeat(4, 1fr);
  }
  .navigation-anchors-wrapper .anchor-card-wrapper .anchor-card-container .anchor-card-image {
    grid-column: span 4;
  }
  .navigation-anchors-wrapper .anchor-card-wrapper .anchor-card-container .text-container {
    grid-column: span 4;
    padding-left: 32px;
    padding-right: 32px;
  }
  body.parent-pageid-1044 .navigation-anchors-wrapper .anchor-card-container .text-container, body.parent-pageid-1497 .navigation-anchors-wrapper .anchor-card-container .text-container {
    grid-column: span 4;
  }
  .video-player {
    height: 810px;
  }
  .video-player .video-cover img {
    height: auto;
    width: auto;
  }
  .six-cards-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .six-cards-wrapper .six-cards-container {
    grid-template-columns: 1fr;
  }
  .cards-carousel.grey-cards, .cards-carousel.grey-cards.two {
    padding-left: 32px;
    padding-right: 32px;
  }
  .cards-carousel.grey-cards .horizontal-cards, .cards-carousel.grey-cards.two .horizontal-cards {
    grid-column: 1 / 13;
  }
  .cards-carousel.grey-cards .horizontal-cards ul, .cards-carousel.grey-cards.two .horizontal-cards ul {
    display: grid;
  }
  .cards-carousel.grey-cards .horizontal-cards ul li, .cards-carousel.grey-cards.two .horizontal-cards ul li {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 36px;
  }
  .titolo-sottotitolo .tmc-wrapper {
    padding: 60px 32px 40px 32px;
  }
  .titolo-sottotitolo .tmc-wrapper h3 {
    font-size: 39px;
    line-height: 56px;
  }
  .content-card.tamini-content-card {
    padding-left: 32px;
    padding-right: 32px;
  }
  .content-card.tamini-content-card .content-card-body {
    grid-column: 1 / 13;
  }
  .title-block {
    padding-left: 32px;
    padding-right: 32px;
  }
  .title-block h2 {
    grid-column: 1 / 13;
  }
  .title-block p {
    grid-column: 1 / 13;
  }
  .content-card.tamini-content-card.picture-right {
    padding-left: 0px;
    padding-right: 0px;
  }
  .content-card.tamini-content-card.picture-right img {
    grid-column: 1 / 9;
  }
  .content-card.tamini-content-card.picture-right .content-card-body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .tamini-accordion {
    padding-left: 0px;
    padding-right: 0px;
  }
  .tamini-accordion .accordion {
    grid-column: 1 / 13;
  }
  .tamini-accordion .panel {
    grid-column: 1 / 13;
  }
  .tamini-accordion .panel .grey-cards ul {
    grid-template-columns: 1fr;
  }
  .tamini-accordion .panel figure {
    overflow: hidden;
  }
  .tamini-accordion .panel figure img.panel-image {
    height: 797px;
    width: auto;
    transform: translateX(-33%);
  }
  .tamini-accordion .panel .cta-section {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
    row-gap: 16px;
    margin-bottom: 32px;
  }
  .tamini-cards-carousel .cards-carousel .horizontal-cards {
    padding-left: 32px;
    padding-right: 32px;
  }
  .tamini-cards-carousel .cards-carousel .horizontal-cards ul {
    flex-wrap: wrap;
  }
  .tamini-cards-carousel .cards-carousel .horizontal-cards ul li {
    flex-basis: 100%;
    padding-bottom: 16px;
    padding-left: 0px;
  }
  div.wpcf7 {
    padding-left: 32px;
    padding-right: 32px;
  }
  div.wpcf7 .custom-form {
    grid-column: 1 / 13;
  }
  div.wpcf7 .custom-form .form-element-left {
    width: 100%;
  }
  div.wpcf7 .custom-form .form-element-right {
    width: 100%;
  }
  div.wpcf7 .custom-form .form-check-left {
    width: 100%;
  }
  div.wpcf7 .custom-form .form-submit-button {
    float: none;
    margin-top: 40px;
  }
  .tamini-around-the-world {
    padding-left: 32px;
    padding-right: 32px;
  }
  .tamini-around-the-world .tamini-around-the-world__linked-card {
    grid-column: 1 / 13;
  }
  .cards-entrypoint {
    padding-left: 32px;
    padding-right: 32px;
  }
  .cards-entrypoint .cards-entrypoint-card-container {
    grid-column: 1 / 13;
  }
  .hero-with-breadcrumb {
    padding-left: 32px;
    padding-right: 32px;
    min-height: 485px;
  }
  .hero-with-breadcrumb nav.breadcrumbs, .hero-with-breadcrumb .hero-with-breadcrumb__text {
    grid-column: 1 / 13;
  }
  .hero-with-breadcrumb nav.breadcrumbs .hero-with-breadcrumb__title, .hero-with-breadcrumb .hero-with-breadcrumb__text .hero-with-breadcrumb__title {
    line-height: 95px;
  }
  .go-back {
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
  }
  .go-back nav.breadcrumbs-back {
    grid-column: 1 / 13;
  }
  .article-body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .article-body section.report {
    padding-left: 0px;
    padding-right: 0px;
  }
  .article-body figure.wp-block-image.size-full {
    overflow: hidden;
  }
  .article-body figure.wp-block-image.size-full img {
    height: 797px;
    width: auto;
    transform: translateX(-33%);
    max-width: none;
  }
  .article-body .wp-block-columns {
    flex-wrap: wrap;
  }
  .article-body .wp-block-columns .wp-block-column {
    width: 100%;
  }
  .article-body .wp-block-columns .wp-block-column figure.wp-block-image.size-full img {
    height: auto;
    width: 100%;
    max-width: none;
    margin-top: 32px;
    transform: none;
  }
  .article-body .content-card.tamini-content-card.picture-right .content-card-body {
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
  }
  .article-body > * {
    grid-column: 1 / 13;
  }
  .article-body .content-card.tamini-content-card.picture-right {
    align-items: end;
  }
  .article-body .content-card.tamini-content-card.picture-right img {
    grid-column: 9 / 13;
    width: 100%;
    max-width: none;
  }
  .article-body .report .tabs {
    grid-column: 1 / 13;
  }
  .footer-text-block__wrapper {
    padding-left: 32px;
    padding-right: 32px;
    gap: 0px;
  }
  .footer-text-block__wrapper .footer-text-block__container {
    grid-column: 1 / 13;
  }
  .titolo-sottotitolo-html .tmc-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  main > .anchor-card-wrapper {
    padding-left: 0px;
    padding-right: 0px;
    grid-template-columns: 1fr;
  }
  main > .anchor-card-wrapper .anchor-card-container {
    grid-column: 1 / 2;
    margin-left: 32px;
    margin-right: 32px;
  }
  main > .anchor-card-wrapper .anchor-card-container .text-container {
    grid-column: span 3;
    padding-right: 0px;
  }
  main > .container-button-right {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  main > .container-button-right .button-right {
    grid-column: 1 / 2;
    padding-bottom: 100px;
    padding-left: 32px;
    padding-right: 32px;
  }
  #svg-desktop {
    display: none;
  }
  #svg-tablet {
    display: none;
  }
  #svg-smartphone {
    display: block !important;
    margin-top: 80px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.video-player .video-cover, .video-player .video-cover img {
  opacity: 1;
}
.tamini-blocco-html {
  display: grid;
  grid-template-columns: 48px repeat(12, 1fr) 48px;
  grid-template-rows: 1fr;
  gap: 16px;
  align-items: center;
}
.tamini-blocco-html h3 {
  color: #005da8;
  font-size: 48px;
  font-weight: 700;
  line-height: 72px;
}
.tamini-blocco-html.contatti h3 {
  color: black;
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
}
.tamini-blocco-html h2 {
  color: #005da8;
  font-size: 48px;
  font-weight: 700;
  line-height: 72px;
}
@media (max-width: 1024px) {
  .tamini-blocco-html {
    grid-template-columns: 8px repeat(12, 1fr) 8px;
    grid-template-rows: auto;
    min-height: auto;
  }
}
.tamini-blocco-html p {
  padding-top: 24px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
}
.tamini-blocco-html ul {
  list-style: disc;
}
.tamini-blocco-html ul {
  padding-top: 30px;
  padding-left: 20px;
}
html {
  margin-top: 0px !important;
}
.default-white {
  --background-color: var(--white);
  --foreground-color: var(--black);
}
.default-white .ntt-button span:not([class]) {
  color: #000000;
}
.content-card.tamini-content-card .content-card-body .ntt-button.color-blue-dark span:not([class]) {
  font-size: 2.2rem;
}
main {
  padding: 0;
}
h1, h2, h3, h4, h5 {
  font-family: Oswald !important;
}
body {
  line-height: 1.5 !important;
}
.tamini__button-primary {
  border-radius: 50px;
  background-color: #005da8;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 24px;
  gap: 8px;
  font-size: 16px;
  color: #fff;
}
.tamini__button-primary-light {
  border-radius: 50px;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 24px;
  gap: 8px;
  color: #000;
}
.tamini__button-secondary {
  border-radius: 50px;
  border: 1px solid #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 24px;
  gap: 8px;
}
.tamini__button-secondary:focus {
  outline: 1px solid #ffffff;
  outline-offset: 5px;
}
.tamini__button-secondary-blue {
  border-radius: 50px;
  border: 1px solid #005da8;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 24px;
  gap: 16px;
}
.tamini__button-tertiary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: right;
  color: #005da8;
}
/* slider */
.splide .splide__slide {
  height: 800px;
  background-position: center center;
}
.splide .hero-image__text {
  width: auto;
  top: 0px;
  height: 100%;
  display: grid;
  align-content: center;
  grid-template-columns: repeat(12, 1fr);
  padding: 0px 64px;
  position: absolute;
  top: 0px;
  z-index: 1;
}
.splide .hero-image__text * {
  grid-column: 2 / 12;
}
.splide .splide__pagination {
  bottom: 52px;
}
.splide .splide__pagination .splide__pagination__page {
  height: 10px;
  width: 10px;
  background-color: #ffffff;
  opacity: 1;
  margin: 12px;
}
.splide .splide__pagination .splide__pagination__page.is-active {
  background-color: transparent;
  border: 2px solid #ffffff;
  transform: none;
}
.splide .splide__arrows {
  position: absolute;
  bottom: 43px;
  left: 0px;
  right: 0px;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.splide .splide__arrows .splide__arrow {
  background: none;
  opacity: 1;
  position: relative;
  margin: 0px;
}
.splide .splide__arrows .splide__arrow svg {
  fill: #ffffff;
  height: 1em;
  width: 1em;
}
.aside-scroll .aside-content ul.menu li a {
  padding: 5px 0;
}
/*
* svg
*/
#svg-desktop {
  margin-top: 100px;
  padding-left: 64px;
  padding-right: 64px;
  max-height: calc(100vh - 130px);
}
#svg-tablet {
  display: none;
}
#svg-smartphone {
  display: none;
}
/*
* workaround per immagini in certifications
*/
body.page-id-1031 .cards-carousel .horizontal-cards .horizontal-card:hover .image .background, body.page-id-1531 .cards-carousel .horizontal-cards .horizontal-card:hover .image .background {
  opacity: 0 !important;
}
body.page-id-1031 .cards-carousel .horizontal-cards .horizontal-card:hover .image .horizontal-label p, body.page-id-1531 .cards-carousel .horizontal-cards .horizontal-card:hover .image .horizontal-label p {
  color: inherit !important;
}
/*
* workaround per altezza svg
*/
body.page-id-1593 main svg, body.page-id-1039 main svg {
  max-height: calc(100vh - 80px);
}
/*
* mappa progetti
*/
.country-button:focus {
  outline: 3px solid #47d2db;
  outline-offset: 5px;
}
#map-wrapper {
  width: 100%;
  height: auto;
  max-height: calc(100vh + 25px);
}
/*
* immagini pagina gruppo
*/
body.page-id-1603 .content-card.picture-right img, body.page-id-1037 .content-card.picture-right img {
  max-width: 300px;
  margin: 0px auto;
}
.group-image {
  text-align: center;
}
.group-image img {
  max-width: 400px;
  margin: 0px auto;
}
/*
* fix glitch menu
*/
.main-menu {
  height: 25px;
}
header.header-menu .menu-container nav ul li a img {
  width: 17px;
}
body header.header-menu .menu-container .logo .logo-icon {
  width: 187px;
}
body.scrolled header.header-menu .menu-container .logo .logo-icon {
  width: auto;
}
@media (max-width: 1366px) and (min-width: 1025px) {
  body header.header-menu .menu-container .logo .logo-icon {
    width: 117px;
  }
}
header.header-menu .menu-container nav.language-menu .logo-tes img {
  width: 276px;
}
body.scrolled header.header-menu .menu-container .logo-tes img {
  width: auto;
}
@media (max-width: 1366px) and (min-width: 1025px) {
  body header.header-menu .menu-container .logo-tes img {
    width: 173px !important;
  }
}
