/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/

@font-face {
  font-family: "verlagFont";
  src: url(../font/verlagfont/Verlag-Book.otf);
}

@font-face {
  font-family: "adobeGaramond";
  src: url(../font/adobeGaramond/AGaramondPro-Regular.otf);
}

@font-face {
  font-family: "verlagA";
  src: url(../font/verlagfont/Verlag-Book.otf);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Noto Sans", sans-serif;
  color: #0d1e2d;
}

#main {
  margin: 50px 30px;
  margin-top: 25px;
}

a:hover {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: "verlagFont";
}

h3 {
  font-size: 30px;
  margin-top: 20px;
  font-family: "verlagFont";
  font-weight: bold;
}

.h2Page {
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-weight: 700;
  font-stretch: normal;
  font-size: 3rem;
  line-height: 1.1;
  font-family: "verlagFont", sans-serif;
  padding-bottom: 30px;
  letter-spacing: -0.0625rem;
  margin-top: 70px !important;
}

.contactPage {
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-weight: 700;
  font-stretch: normal;
  font-size: 3rem;
  line-height: 1.1;
  font-family: "verlagFont", sans-serif;
  padding-bottom: 30px;
  letter-spacing: -0.0625rem;
}

a.contactPageRef:hover {
  text-decoration: underline;
}

.h1SliderText {
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-weight: 700;
  font-stretch: normal;
  font-size: 4rem;
  color: white;
  line-height: 1.1;
  font-family: "verlagFont", sans-serif;
  padding-bottom: 30px;
  letter-spacing: -0.0625rem;
}

.pSliderSubText {
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-weight: 700;
  font-stretch: normal;
  font-size: 3rem;
  color: black;
  line-height: 1.1;
  font-family: "verlagFont", sans-serif;
  padding-bottom: 30px;
  letter-spacing: -0.0625rem;
}

p,
.liPage {
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 25px;
  line-height: 1.4;
  font-family: "adobeGaramond", sans-serif;
  color: #000;
  /* text-align: justify; */
  /* word-break: break-all; */
}

.h4Home {
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-weight: 700;
  font-stretch: normal;
  font-size: 25px;
  line-height: 1.1;
  font-family: "verlagFont";
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #000;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.filters a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.filters a:hover,
.filters a:focus,
.filters a:active {
  text-decoration: none;
}

.filters a:hover:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background-color: #000;
}

.filters a.active {
  color: #000;
}

.filters a.active:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background-color: #000;
}

.item {
  border: none;
  margin-bottom: 30px;
}

.item .item-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.item .item-wrap:after {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.item .item-wrap img {
  transition: 0.3s transform ease;
  transform: scale(1);
}

.item .item-wrap > .work-info {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  z-index: 3;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  transition: 0.3s all ease;
}

.item .item-wrap > .work-info h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.item .item-wrap > .work-info span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.item .item-wrap:hover {
  text-decoration: none;
}

.item .item-wrap:hover img {
  transform: scale(1.05);
}

.item .item-wrap:hover:after {
  opacity: 1;
  visibility: visible;
}

.item .item-wrap:hover .work-info {
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
}

.h3 {
  font-size: 20px;
}

.h4 {
  font-size: 16px;
}

.heading {
  font-size: 28px;
}

.readmore {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-family: "verlagA", sans-serif;
  font-size: 16px;
  background: #2b292b;
  color: #fff;
  border: 1px solid #fff;
  line-height: 1;
  padding: 15px 20px;
  transition: 0.2s all ease;
  font-weight: 700;
  margin-top: 20px;
}

.readmore:active,
.readmore:focus,
.readmore:hover {
  outline: none;
}

.readmore:hover {
  color: #000;
  text-decoration: none;
  background: #ececec;
}

.sticky-content {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  /* required */
}

.list-line li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.list-line li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 10px;
  height: 2px;
  background: #000;
}

.form-control {
  border-radius: 0;
  background: #f8f9fa;
  border: 1px solid transparent;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.form-control:active,
.form-control:focus {
  background: #eff1f4;
  outline: none;
  box-shadow: none;
  border: 1px solid transparent;
}

.custom-progress {
  height: 7px;
  border-radius: 0;
}

.custom-progress .progress-bar {
  background: #000;
}

/*cookie banner*/
.cookiealert {
  background: #2b292b;
  margin-top: 0;
  width: 100%;
  z-index: 999;
  opacity: 0.8;
  height: fit-content;
  border-radius: 0%;
  opacity: 0.7;
}

.btn_cookie_accept,
.btn_cookie_refuse {
  background-color: #2b292b;
  margin-left: 5px;
  color: #ececec;
  border: 1px solid white;
  font-size: 13px;
  margin-top: 10px;
}

@media (max-width: 780px) {
  #main {
    margin: 10px;
  }

  .cookiealert {
    height: fit-content;
  }
}

/* Contact Form */
.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .error-message br + br {
  margin-top: 25px;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header */

.titleOne {
  font-size: 35px;
  font-weight: bold;

  font: 700 3rem/1.1 Verlag A, Verlag B, sans-serif;
  letter-spacing: -0.0625rem;
}

/* Custom Navmenu */

#alf__menu {
  position: fixed;
  z-index: 700;

  margin-left: -85px;
  margin-top: 30px;
}

.menuPrimary {
  display: grid;
  grid-template-columns: 76px 1fr;
  padding-top: 10px;
  width: 300px;
  background-color: #ecececec;

  letter-spacing: 0.02em;
}

#menua {
  padding-right: 15px;
}

@media (max-width: 780px) {
  .menuPrimary {
    display: none;
  }
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  font-family: "verlagFont";
}

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.menu__navigation {
  border-left: 1px solid #000;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  padding-left: 15px;
}

li {
  display: list-item;
  font-family: "verlagA", sans-serif;
  font-size: 20px;
}

.li_menu {
  cursor: pointer;
  margin-bottom: 8px;
  list-style: none;
  text-align: left;
  --s: 0.1em;
  /* the thickness of the line */
  --c: #000;
  /* the color */
  color: #0000;
  padding-bottom: var(--s);
  background: linear-gradient(90deg, var(--c) 50%, #000 0)
      calc(100% - var(--_p, 0%)) / 200% 100%,
    linear-gradient(var(--c) 0 0) 0% 100% / var(--_p, 0%) var(--s) no-repeat;
  -webkit-background-clip: text, padding-box;
  background-clip: text, padding-box;
  transition: 0.5s;
  font-family: "verlagA", sans-serif;
  font-size: 20px;
}

.li_menu:not(.attiva):hover {
  --_p: 100%;
}

.li_menu > button {
  background: transparent;
  border: none;
  overflow: visible;
  padding: 0;
  width: auto;
  text-align: inherit;
}

.div_button {
  grid-column: span 2;
  position: relative;
}

.button_menu {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-family: "verlagA", sans-serif;
  font-size: 20px;
  background: #2b292b;
  color: #fff;
  border: 1px solid #fff;
  line-height: 1;
  margin: 0;
  padding: 10px 8px;
  width: 100%;
}

._logo_nasox_197 {
  margin-left: 15px;
  align-items: center;
  display: flex;
  justify-content: center;
}

._logo_nasox_197 img {
  pointer-events: none;
  width: 70px;
}

.custom-navmenu {
  background: #ececec;
  display: none;
  padding-top: 30px;
}

.custom-navmenu .custom-menu,
.custom-navmenu .custom-menu li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.custom-navmenu .custom-menu li {
  margin-bottom: 0;
  font-size: 25px;
  text-align: center;
  padding-bottom: 15px;
  padding-top: 15px;
}

.custom-navmenu .custom-menu li a {
  color: #000;
  padding: 15px 0 !important;
  font-family: "Cabin", sans-serif;
  text-decoration: none;
}

.custom-navmenu .custom-menu li a:hover {
  text-decoration: none;
}

.custom-navmenu .custom-menu li.active a {
  text-decoration: none;
}

.custom-navmenu h3 {
  font-size: 20px;
  color: #fff;
}

.custom-navmenu p {
  color: rgba(255, 255, 255, 0.6);
}

.custom-navmenu a {
  color: rgba(255, 255, 255, 0.7);
}

.custom-navmenu a:hover {
  color: #fff;
}

.attiva {
  border: 2px solid #000;
  width: auto;
  padding-left: 5px;
}

.firstImg {
  width: 100%;
  display: block;
  object-fit: contain;
}

.custom-button-navbar {
  width: 100%;
}

.custom-button-navbar > .container {
  justify-content: flex-end;
}

/* Custom Navbar */
.custom-navbar {
  padding-top: 50px;
  width: 100%;
  display: none;
}

@media (max-width: 780px) {
  .firstImg {
    height: 235px;
  }

  .custom-button-navbar {
    display: none;
  }

  .custom-navbar {
    display: block;
  }

  .custom-navmenu {
    display: block;
    padding: 0px 5px;
    /* height: 100vh; */
  }

  .custom-navbar > .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.custom-navbar .navbar-brand {
  font-size: 1.7rem;
  margin-left: auto;
  margin-right: auto;
}

/* Burger */
.burger {
  width: 28px;
  height: 32px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.logoBurger {
  width: 170px;
  height: 70px;
}

.burger:before,
.burger span,
.burger:after {
  width: 100%;
  height: 2px;
  display: block;
  background: #000;
  border-radius: 2px;
  position: absolute;
  opacity: 1;
}

.burger:before,
.burger:after {
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  content: "";
}

.burger:before {
  top: 4px;
}

.burger span {
  top: 15px;
}

.burger:after {
  top: 26px;
}

/* Hover */
.burger:hover:before {
  top: 7px;
}

.burger:hover:after {
  top: 23px;
}

/* Click */
.burger.active span {
  opacity: 0;
}

.burger.active:before,
.burger.active:after {
  top: 40%;
}

.burger.active:before {
  transform: rotate(45deg);
}

.burger.active:after {
  transform: rotate(-45deg);
}

.burger:focus {
  outline: none;
}

@media (max-width: 780px) {
  .container {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .colGrid {
    width: 50%;
  }

  .brochureImg {
    width: 100%;
    padding: 0;
  }
}

.buttonL {
  cursor: pointer;
  text-align: center;
  font-family: "verlagA", sans-serif;
  font-size: 16px;
  background: #2b292b;
  color: #fff;
  border: 1px solid #fff;
  line-height: 1;
  padding: 15px 20px;
  transition: 0.2s all ease;
  font-weight: 700;
  margin-top: 20px;
  float: right;
}

.buttonL:active,
.buttonL:focus,
.buttonL:hover {
  outline: none;
}

.buttonL:hover {
  color: #000;
  text-decoration: none;
  background: #ececec;
}

/*-----------------------------------------------------------
#Contact Form
------------------------------------------------------------*/

.row {
  width: 100%;
}

.rowHome {
  margin-bottom: 80px;
  margin-top: 20px;
}

.list-unstyled {
  padding-left: 50px;
}

@media (max-width: 780px) {
  .row {
    width: 100%;
  }

  .list-unstyled {
    padding-left: 0px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.container_wrap {
  clear: both;
  position: relative;
  border-top-style: solid;
  border-top-width: 1px;
}

.responsive .container {
  max-width: 1310px;
}

@media only screen and (min-width: 768px) and (max-width: 989px) {
  .responsive .container {
    max-width: 782px;
  }
}

.container {
  width: 100%;

  position: relative;
  margin: 0 auto;
  clear: both;
}

body div .first,
body div .no_margin {
  margin-left: 0;
}

body .unit.alpha,
body .units.alpha,
body div .first {
  margin-left: 145px;
  clear: left;
}

@media (max-width: 1300px) {
  body div .first {
    margin-left: 90px;
    clear: left;
  }
}

div .av_one_fourth {
  margin-left: 8px;
  width: 21% !important;
}

div .flex_column {
  z-index: 1;
  float: left;
  position: relative;
  min-height: 1px;
  width: 100%;
}

.clearfix:before,
.clearfix:after,
.flex_column:before,
.flex_column:after,
.widget:before,
.widget:after {
  content: "\0020";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.alignnone {
  height: auto;
  width: 160px;
}

#footer .widget {
  padding: 0;
  margin: 30px 0 30px 0;
  overflow: hidden;
}

.flex_column .widget:first-child,
.content .widget:first-child {
  padding-top: 0;
  border-top: none;
}

.widget {
  clear: both;
  position: relative;
  padding: 30px 0 30px 0;
  float: none;
}

.widgettitle {
  font-family: "verlagFont";
  font-size: 19px;
  color: #fff;
}

.container:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#footer {
  padding: 15px 0 0 225px;
  z-index: 1;
  background-color: #2b292b;
}

.p_footer,
.p_footer a {
  color: #898989;
  font-family: "verlagA";
  font-size: 18px;
}

.pCopyright {
  color: #fff;
  font-size: 14px;
  font-family: "verlagA";
  margin-left: 150px;
}

.text_footer {
  font-size: 15px;
  font-weight: bold;
  color: #898989;
  font-family: "adobeGaramond";
}

.text_policy {
  font-size: 15px;
  font-weight: bold;
  color: #898989;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .responsive #top #wrap_all .container {
    width: 85%;
    max-width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    float: none;
  }

  .responsive #top .container .av-content-small,
  .responsive #top #wrap_all .flex_column,
  .responsive #top #wrap_all .av-flex-cells .no_margin {
    margin: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  div .flex_column {
    display: contents;
  }

  #footer {
    padding-left: 10px;
  }

  #footer .widget {
    margin: 0;
  }
}

.row_footer {
  display: flex;
  margin-left: 160px;
  max-width: 1350px;
}

@media (max-width: 1300px) {
  .row_footer {
    display: flex;
    margin-left: 0px;
    max-width: 1350px;
  }
}

.col_footer {
  margin-right: 15px;
}

.socialFooter {
  padding: 10px;
  background-color: #ececec;
  width: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 40%;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .row_footer {
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .col_footer {
    width: 100%;
  }
}

.footer {
  padding: 0 0 0 0;
}

.footer a {
  color: #000;
}

.social a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f8f9fa;
  position: relative;
  text-align: center;
  color: #0d1e2d;
}

.social a span {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.social a:hover {
  color: #000;
}

.rowPolicy {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-left: 150px;
}

.rowPolicy a {
  text-decoration: underline;
  position: relative;
  font-size: 13px;
  color: hsla(0, 0%, 100%, 0.75);
  transition: all 0.25s linear;
}

/*Area Servizi*/

.service a {
  color: #5b7abb;
  display: block;
}

.service h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #56ceba;
  font-size: 1.3rem;
  margin: 1rem 0 0.6rem;
}

.services-grid {
  margin: 20px 0;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 30px;
}

.service {
  background: #fff;
  padding: 25px;
  border-radius: 4px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #e7e7e7;
  transition: all 0.3s ease;
}

.service:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.service i {
  font-size: 3.45rem;
  margin: 1rem 0;
}

.service1 i,
.service1 h4,
.service1 .cta {
  color: #2b292b;
}

.service1:hover {
  border: 2px solid #2b292b;
}

.service2 i,
.service2 h4,
.service2 .cta {
  color: #2b292b;
}

.service2:hover {
  border: 2px solid #2b292b;
}

.service3 i,
.service3 h4,
.service3 .cta {
  color: #2b292b;
}

.service3:hover {
  border: 2px solid #2b292b;
}

.service .cta span {
  font-size: 0.6rem;
}

.service > * {
  flex: 1 1 100%;
}

.service .cta {
  font-size: 20px;
  align-self: flex-end;
}

@media all and (max-width: 900px) {
  .services-grid {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 30px;
  }

  .service {
    padding: 15px;
  }

  section.section {
    padding-left: 0px !important;
  }

  .h1SliderText {
    font-size: 2rem;
    padding-bottom: 0px;
  }

  .pSliderSubText {
    font-size: 1.5rem;
    padding-bottom: 0px;
  }
}

section.section {
  padding-left: 225px;
}
