html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
em,
img,
strong,
u,
i,
ol,
ul,
li,
form,
label,
table,
tbody,
thead,
tr,
th,
td,
article,
aside,
canvas,
embed,
footer,
header,
menu,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a img, a amp-img {
  border: none;
}

article,
aside,
details,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

.title, .inner-title {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body, a, a:link {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a.generic-btn, a.generic-btn:link, input.generic-btn, button.generic-btn {
  background: #F67251;
  border: solid 1px #F67251;
  color: #fff;
  padding: 8px 20px;
  border-radius: 27px;
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(clamp(1rem, 0.518vw + 0.879rem, 1.5rem));
  transition: all 0.6s ease;
  cursor: pointer;
  line-height: normal;
}

a.generic-btn:hover, input.generic-btn:hover, button.generic-btn:hover {
  background: #fff;
  color: #F67251;
  text-decoration: none;
}

.toolbar {
  position: relative;
  z-index: 200;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline: 0;
}

:focus-visible {
  box-shadow: inset 0 0 0 3px #ff5a00 !important;
}

* {
  scrollbar-color: #496180 #f5f5f5;
  scrollbar-height: thin;
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #f5f5f5;
  border-radius: 6px;
  background-color: transparent;
}

*::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px #f5f5f5;
  background-color: #496180;
  border-right: none;
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #496180;
}
*::-webkit-scrollbar-thumb:active {
  background-color: #496180;
}

.bg {
  background: linear-gradient(to bottom, #232f3e 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 40vh;
}

:focus-visible {
  box-shadow: inset 0 0 0 3px #FF5C5C !important;
}

html, body, #Form1, .wrapper {
  height: 100%;
  position: relative;
}

body {
  /*  font-size: $size;*/
  font-size: 1rem;
  color: #1C1C1C;
  line-height: 1.5;
}

a, a:link {
  text-decoration: none;
  color: #1C1C1C;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  background: #232F3E;
  padding: 0 10px;
  position: fixed;
  z-index: 200;
  width: 100%;
  left: 0;
  top: 0;
}
.main-header .width-cnt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo img {
  width: auto;
  height: 40px;
}

.width-cnt {
  width: 100%;
  max-width: 1368px;
  margin: auto;
}

.full-width {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.full-width-img {
  width: 100%;
  height: auto;
}

.content {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  max-width: 1368px;
  width: 100%;
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.main-cnt {
  margin-top: 60px;
  padding: 30px 0;
  width: 100%;
  position: relative;
}
.interne .main-cnt {
  margin-top: 60px;
}
.main-cnt article {
  padding: 0 20px 40px 20px;
}

.intro-txt .row-btn {
  justify-content: center;
  padding-top: 20px;
}

.title {
  font-size: calc(clamp(1.875rem, 0.647vw + 1.723rem, 2.5rem));
  padding-bottom: 40px;
  color: #232F3E;
}

.inner-title {
  font-size: calc(clamp(1.5rem, 0.388vw + 1.409rem, 1.875rem));
  padding-bottom: 15px;
}

footer {
  background: #232F3E;
  font-weight: 300;
  padding: 20px;
  color: #FFF;
}
footer strong {
  font-weight: 700;
}
footer a, footer a:link, footer a:hover {
  color: #FFF;
}
footer ul {
  margin-top: 20px;
}
footer .logo-footer {
  text-align: center;
  display: flex;
  justify-content: center;
}
footer .logo-footer img {
  width: 60%;
  height: auto;
  max-width: 248px;
}

.home {
  display: none;
}

.cnt-txt p {
  padding-bottom: 24px;
}

.generic-list li {
  margin-bottom: 24px;
  padding-left: 15px;
  position: relative;
}
.generic-list li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
  background: #1C1C1C;
}

.row-btn {
  display: flex;
  flex-wrap: wrap;
}

.desktop {
  display: none;
}

.doc-list {
  margin-top: 70px;
}

.paragraph {
  margin-bottom: 40px;
}

.title-paragraph {
  font-weight: 600;
  font-size: calc(clamp(1.125rem, 0.388vw + 1.034rem, 1.5rem));
  color: #232F3E;
}

a.download, a:link.download {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  background: #DEEDE3;
  padding: 16px 30px;
  color: #1C1C1C;
  border-radius: 8px;
  font-size: 18px;
  transition: all 0.6s ease;
}
a.download:after, a:link.download:after {
  content: "PDF";
  color: #fff;
  background: #232F3E;
  margin-left: 12px;
  border-radius: 16px;
  padding: 4px 10px;
  font-weight: 600;
  font-size: 14px;
}

a:hover.download {
  text-decoration: none;
  background: #232F3E;
  color: #fff;
}

.cnt-img {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cnt-img img {
  width: 100% !important;
  height: auto !important;
  max-width: 720px;
}
.cnt-img p {
  color: #a3aab5;
  padding-bottom: 20px;
  padding-top: 20px;
  width: 100%;
  max-width: 720px;
}
.inner-box.box-03 .cnt-img p, .inner-box.box-04 .cnt-img p, .inner-box.box-05 .cnt-img p {
  color: #fff;
}

.inner-box {
  border-radius: 16px;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  overflow: hidden;
}
.inner-box.single-card {
  padding: 0;
  -webkit-box-shadow: 0px 0px 13px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 13px 4px rgba(0, 0, 0, 0.15);
}
.inner-box.single-card .txt {
  padding: 20px;
  color: #1C1C1C;
}
.inner-box.single-card.no-shadow {
  -webkit-box-shadow: none;
  box-shadow: none;
  text-align: center;
}

.inner-box:has(.no-shadow) {
  padding: 30px 0;
}

.single-card {
  margin-bottom: 30px;
}
.single-card .inner-title {
  font-size: calc(clamp(1.125rem, 0.259vw + 1.064rem, 1.375rem));
  line-height: calc(clamp(1.688rem, 0.388vw + 1.596rem, 2.063rem));
  padding-bottom: 10px;
}
.single-card .inner-title.big-title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: calc(clamp(4.375rem, 2.589vw + 3.768rem, 6.875rem));
  line-height: calc(clamp(4.375rem, 2.589vw + 3.768rem, 6.875rem));
  gap: 20px;
}
.single-card .inner-title.big-title span {
  font-size: calc(clamp(1.875rem, 1.942vw + 1.42rem, 3.75rem));
  line-height: calc(clamp(1.875rem, 1.942vw + 1.42rem, 3.75rem));
}

.social-share {
  position: fixed;
  bottom: 50%;
  margin-bottom: -78px;
  left: 0;
  padding: .5rem;
  z-index: 250;
  background-color: #fff;
}
.social-share li {
  margin-bottom: 20px;
}

ul.social-share span {
  display: none;
}

ul.social-share li a:after, ul.social-share li a:link:after {
  content: "";
  width: 26px;
  height: 26px;
  display: block;
}

ul.social-share li a.facebook:after, ul.social-share li a:link.facebook:after {
  background: url("/media/7/846/ico-fb.png");
  background-size: contain;
}

ul.social-share li a.twitter:after, ul.social-share li a:link.twitter:after {
  background: url("/media/7/846/ico-x.png");
  background-size: contain;
}

ul.social-share li a.linkedin:after, ul.social-share li a:link.linkedin:after {
  background: url("/media/7/846/ico-link.png");
  background-size: contain;
}

ul.social-share li a.wa:after, ul.social-share li a:link.wa:after {
  background: url("/media/7/846/ico-wa.png");
  background-size: contain;
}

.cnt-video {
  border-radius: 16px;
  overflow: hidden;
}
.cnt-video video, .cnt-video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}
@supports not (aspect-ratio: 16/9) {
  .cnt-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  }
  .cnt-video video, .cnt-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (min-width: 660px) {
  footer .logo-footer {
    width: 35%;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .logo-cliente {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .three-column {
    display: flex;
    justify-content: space-between;
  }
  .three-column .single-card {
    width: 30%;
    margin-bottom: 0;
  }

  .inner-box.single-card.no-shadow {
    margin: 0;
  }

  footer .logo-footer {
    width: auto;
  }

  footer .logo-footer div {
    display: flex;
    justify-content: center;
  }

  .cnt-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1024px) {
  .inner-box:has(.offcanvas) {
    overflow: visible;
    padding-right: 0;
    padding-bottom: 0;
  }

  .cnt-img.offcanvas {
    margin: 0;
    transform: translateX(61px);
  }

  .two-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .two-column .left-side {
    width: 46%;
  }
  .two-column .right-side {
    width: 42%;
  }

  .intro-txt, .inner-title {
    text-align: left;
  }

  .intro-txt .row-btn {
    justify-content: flex-start;
  }

  .intro-txt.service-page .row-btn {
    justify-content: center;
  }

  .attivita-list li a, .attivita-list li a:link, .attivita-list li a:hover {
    padding: 30px;
  }

  .logo img {
    height: auto;
    max-width: 160px;
  }

  .main-cnt {
    padding: 60px 0 30px 0;
  }
}
@media only screen and (min-width: 1366px) {
  .content {
    padding: 60px;
  }
}

.mweb-col-1{width:8.333333%}.mweb-col-2{width:16.666667%}.mweb-col-3{width:25%}.mweb-col-4{width:33.333333%}.mweb-col-5{width:41.666667%}.mweb-col-6{width:50%}.mweb-col-7{width:58.333333%}.mweb-col-8{width:66.666667%}.mweb-col-9{width:75%}.mweb-col-10{width:83.333333%}.mweb-col-11{width:91.666667%}.mweb-col-12{width:100%}@media (min-width:576px){.mweb-col-sm-1{width:8.333333%}.mweb-col-sm-2{width:16.666667%}.mweb-col-sm-3{width:25%}.mweb-col-sm-4{width:33.333333%}.mweb-col-sm-5{width:41.666667%}.mweb-col-sm-6{width:50%}.mweb-col-sm-7{width:58.333333%}.mweb-col-sm-8{width:66.666667%}.mweb-col-sm-9{width:75%}.mweb-col-sm-10{width:83.333333%}.mweb-col-sm-11{width:91.666667%}.mweb-col-sm-12{width:100%}}@media (min-width:768px){.mweb-col-md-1{width:8.333333%}.mweb-col-md-2{width:16.666667%}.mweb-col-md-3{width:25%}.mweb-col-md-4{width:33.333333%}.mweb-col-md-5{width:41.666667%}.mweb-col-md-6{width:50%}.mweb-col-md-7{width:58.333333%}.mweb-col-md-8{width:66.666667%}.mweb-col-md-9{width:75%}.mweb-col-md-10{width:83.333333%}.mweb-col-md-11{width:91.666667%}.mweb-col-md-12{width:100%}}@media (min-width:992px){.mweb-col-lg-1{width:8.333333%}.mweb-col-lg-2{width:16.666667%}.mweb-col-lg-3{width:25%}.mweb-col-lg-4{width:33.333333%}.mweb-col-lg-5{width:41.666667%}.mweb-col-lg-6{width:50%}.mweb-col-lg-7{width:58.333333%}.mweb-col-lg-8{width:66.666667%}.mweb-col-lg-9{width:75%}.mweb-col-lg-10{width:83.333333%}.mweb-col-lg-11{width:91.666667%}.mweb-col-lg-12{width:100%}}@media (min-width:1200px){.mweb-col-xl-1{width:8.333333%}.mweb-col-xl-2{width:16.666667%}.mweb-col-xl-3{width:25%}.mweb-col-xl-4{width:33.333333%}.mweb-col-xl-5{width:41.666667%}.mweb-col-xl-6{width:50%}.mweb-col-xl-7{width:58.333333%}.mweb-col-xl-8{width:66.666667%}.mweb-col-xl-9{width:75%}.mweb-col-xl-10{width:83.333333%}.mweb-col-xl-11{width:91.666667%}.mweb-col-xl-12{width:100%}}
