/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

@font-face {
  font-family: Berkeley Mono;
  src : url('../font/BerkeleyMonoVariable-Regular.woff2')
}

@font-face {
  font-family: Berkeley Mono-italic;
  src : url('../font/BerkeleyMonoVariable-Italic.woff2')
}

*{
  font-family: "Berkeley Mono", sans-serif;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

body{
  margin: 0;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}


/* ==========================================================================
   Variables
   ========================================================================== */

:root {
  /*Colors*/
  --Colore-Primario: #7467FF;
  --Overlay-Primario: rgba(116, 103, 255, 0.50);
  --Gradient-Primario: linear-gradient(180deg, #3B2FB5 0%, #7467FF 100%);;
  --Secondario: #F6681C;
  --Gradient-Secondario: linear-gradient(180deg, #C35215 0%, #F6681C 100%);;
  --HOVER-LINEAR-DARK: linear-gradient(180deg, #151515 0%, #333 100%);
  --HOVER-GRADIENT: linear-gradient(0deg, #FEFEFE 0%, #DDD 100%);
  --Nero: #151515;
  --Bianco: #FEFEFE;
  --GRAY2: #EEE;
  --GRAY3: #DDD;
  --GRAY1: #D9D9D9;
  --Beige: #D9DAD6;
  --GRIGIO: #999;


  /* Dimensions */
  --Size-s: 12px;
  --Size-sm: 14px;
  --Size-m: 16px;
  --Size-l: 24px;
  --Size-2xl: 36px;
  --Size-4xl: 48px;
}

h1, h2, h3, h4, h5, p{
  margin: 0;
}

a{
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
}

/* ==========================================================================
   Mobile
   ========================================================================== */
.menu{
  border-bottom: 1px solid var(--Beige);
  width: 100%;
  height: 60px;
  background: var(--Bianco);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 2;
}

.page{
  position: relative;
  top: 40px;
}

.menu .menuButton{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu  .menuButton.mailTo span{
  display: none;
}

.menu .menuButton.open{
  border-right: 1px solid var(--Beige);
}

.menu .menuButton.mailTo{
  border-left: 1px solid var(--Beige);
}

.mobileMenu{
  width: 100%;
  height: calc(100vh);
  position: fixed;
  background: var(--Bianco);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  left: -100vw;
  transition: left ease .5s;
  z-index: 3;
}

.mobileMenu.active{
  left: 0;
}

.mobileMenu .closeMenu{
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.mobileMenu .menuFooter{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.mobileMenu nav{
  width: 100%;
  border-top: 1px solid var(--Beige);
}

.mobileMenu .menuItem{
  width: 100%;
  color: var(--Nero);
  height: 60px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--Size-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--Beige);
}

.mobileMenu a{
  text-decoration: none;
}

.desktopMenu{
  display: none;
}

.homeCover{
  background: url("../img/home_cover.webp") no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.homeCover:before{
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  background: var(--Overlay-Primario);
}

.homeCover .coverContent{
  padding: 45px;
  z-index: 1;
  border: none;
  position: relative;
  text-align: center;
  color: var(--Bianco);

  display: flex;
  flex-direction: column;
  gap: 30px;
}

.homeCover .coverContent a{
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-family: "Berkeley Mono", sans-serif;
  font-size: var(--Size-4xl, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}

h4{
  font-family: "Berkeley Mono", sans-serif;
  font-size: var(--Size-s, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
  text-transform: uppercase;
}

p{
  color: var(--Nero, #151515);
  /* p */
  font-family: "Berkeley Mono", sans-serif;
  font-size: var(--Size-sm, 14px);
  font-style: normal;
  font-weight: 100;
  line-height: 120%; /* 16.8px */
}

.standardButton{
  padding: 10px 15px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px;
  border-bottom: solid 5px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.lite{
  border-color: var(--Bianco);
  color: var(--Bianco);
}

.lite:hover{
  border-color: var(--Colore-Primario);
  background: var(--HOVER-LINEAR-DARK);
}

.standardButton.lite:after{
  content: url("../img/fregio_w.svg");
}

.columnBlock{
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.divider{
  width: 100%;
  height: 5px;
  background: var(--Beige);
  border-top: 1px solid #ccc;
}

.columnBlock h2, .portfolio h2{
  color: var(--Colore-Primario, #7467FF);
  /* H2 */
  font-family: "Berkeley Mono", sans-serif;
  font-size: var(--Size-2xl, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 43.2px */
  text-transform: uppercase;
}

.columnBlock h3, .portfolio h3{
  color: var(--Colore-Primario, #7467FF);
  font-family: "Berkeley Mono", sans-serif;
  font-size: var(--Size-m, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}

.columnBlock .titleHeader, .portfolio .titleHeader{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.columnBlock .col{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.columnBlock .col .txtContent{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.decorationArrows{
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.decorationArrows img:nth-child(even){
  transform: rotate(180deg);
}

.decorationOrange{
  width: fit-content;
  display: flex;
  gap: 5px;
  padding-right: 15px;
}

.row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.columnBlock .item{
  display: flex;
  padding: 15px;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  border: 1px solid var(--Colore-Primario, #7467FF);

  color: var(--Colore-Primario, #7467FF);

  font-family: "Berkeley Mono", sans-serif;
  font-size: var(--Size-s, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  text-transform: uppercase;
}

.col.list{
  gap: 15px;
}

.colorContainer{
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--Bianco);
}

.colorContainer p{
  color: var(--Bianco);
}

.colorContainer .colorHeader{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.colorContainer .colorHeader h2{
  font-family: "Berkeley Mono", sans-serif;
  font-size: var(--Size-2xl, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.colorContainer .colorHeader h2:before{
  content: url("../img/fregio_w.svg");
  transform: rotate(-90deg);
  padding-bottom: 12px;
}

.colorContainer .colorHeader p{
  font-size: var(--Size-sm, 14px);
  font-style: normal;
  font-weight: 100;
  line-height: 120%;
}

.colorContainer .bullets{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
}

.colorContainer .bullets .bullet{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  padding-bottom: 15px;

  font-size: var(--Size-s, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;

  max-width: 250px;
  text-align: center;

  margin-left: auto;
  margin-right: auto;

  width: 100%;
}

.colorContainer .bullets .bullet .decorationArrows{
  opacity: .5;
}

.colorContainer .bullets .bullet .decorationArrows img:nth-child(odd){
  transform: rotate(180deg);
}

.colorContainer .bullets .bullet .decorationArrows img:nth-child(even){
  transform: rotate(0);
}

.colorContainer.philosophy{
  background: var(--Gradient-Secondario);
}

.colorContainer.strengths{
  background: var(--Gradient-Primario);
}

.capabilities{
  background: var(--HOVER-GRADIENT);
  display: flex;
  padding: 30px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.capabilities h2{
  color: var(--Nero, #151515);
  text-align: center;

  font-size: var(--Size-4xl, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 43.2px */
  text-transform: uppercase;
}

.capabilities .capabilitiesList{
  display: flex;
  padding: 5px 0;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  align-self: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.capabilities .capabilitiesList .standardButton{
  padding: 30px;
  text-transform: uppercase;
  color: var(--Nero);
  font-size: 16px;
  width: calc(50vw - 80px);
  text-align: center;
  justify-content: center;
}

.capabilities .capabilitiesList .standardButton:hover{
  border-color: var(--Colore-Primario);
  background: var(--HOVER-LINEAR-DARK);
  color: var(--Colore-Primario);
}

.portfolio .titleHeader{
  margin-bottom: 30px;
}

.portfolio .topPortfolio{
  padding: 45px 30px;
}

.portfolio .standardButton{
  border-color: var(--Nero);
  display: flex;
  height: 45px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--Nero);
  margin-left: 0;
}

.portfolio .standardButton:hover{
  border-color: var(--Colore-Primario);
  color: var(--Bianco);
  background: var(--HOVER-LINEAR-DARK);
}

.portfolio .standardButton:after{
  content: url("../img/fregio_b.svg");
  padding-top: 5px;
}

.portfolio .standardButton:hover:after {
  content: url("../img/fregio_w.svg");
  padding-top: 5px;
  transform: rotate(-90deg);
}

.portfolio .portfolioList .portfolioItem:hover{
  /*background: var(--HOVER-GRADIENT);*/
}

.portfolio .portfolioList .portfolioItem{
  padding: 30px;
  border-bottom: 1px solid var(--Beige, #D9DAD6);
  background: var(--Bianco, #FEFEFE);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.portfolio .portfolioList .portfolioItem .headerItem h4{
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  width: fit-content;
  background: var(--Colore-Primario, #7467FF);

  color: var(--Bianco, #FEFEFE);
  /* Details */
  font-size: var(--Size-s, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
  text-transform: uppercase;
  margin-bottom: 15px;
}

.portfolio .portfolioList .portfolioItem .headerItem h3{
  color: var(--Nero, #151515);
  /* H3 */
  font-size: var(--Size-l, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  text-transform: uppercase;
  margin-bottom: 15px;
}

.portfolio .portfolioList .portfolioItem:hover .headerItem h3{
  text-decoration: underline;
}

.post .postContent .postTxtContent .leggiAnche .leggiContainer .itemMore:hover h3{
  text-decoration: underline;
}

.portfolio .portfolioList .portfolioItem .data, .portfolio .portfolioList .portfolioItem .excerptTitle{
  color: var(--Nero, #151515);
  /* Details */
  font-size: var(--Size-s, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
  text-transform: uppercase;
}

.portfolio .portfolioList .portfolioItem .contentItem .excerptTitle{
  margin-bottom: 15px;
}

.portfolio .portfolioList .readMore{
  display: flex;
  padding: 30px 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  align-self: stretch;
}

.footer{
  padding: 60px 30px;
  background: var(--Nero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.portfolio.page h1{
  flex: 1 0 0;
  color: var(--Colore-Primario, #7467FF);
  text-align: center;
  /* H0 */
  font-size: var(--Size-4xl, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 43.2px */
  text-transform: uppercase;
  padding-top: 60px;
  padding-bottom: 60px;
}

.portfolio.page .paging{
  padding: 30px 60px;
}

.capabilitiesPage h1{
  flex: 1 0 0;
  color: var(--Secondario);
  text-align: center;
  font-size: var(--Size-4xl, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  padding-top: 60px;
  padding-bottom: 60px;
}

.capabilitiesPage .capabilitiesList{
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-bottom: 60px;
}

.capabilitiesPage .capabilitiesList .capabilitiesItem{
  /*max-width: calc(100% - 60px);*/
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.capabilitiesPage .capabilitiesList .capabilitiesItem h2{
  color: var(--Secondario, #F6681C);
  font-size: var(--Size-4xl, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 75%;
  text-transform: uppercase;
}

.capabilitiesPage .capabilitiesList .capabilitiesItem h3{
  color: var(--Nero, #151515);
  font-size: var(--Size-m, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 85%;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.capabilitiesPage .capabilitiesList .capabilitiesItem h3:before{
  content: url("../img/arrowTitle.svg");
}

.capabilitiesPage .capabilitiesList .capabilitiesItem .capabilitiesImg{
  max-width: 100%;
  width: 100%;
  height: 150px;
  border-radius: 5px;
  overflow: hidden;
}

.capabilitiesPage .capabilitiesList .capabilitiesItem .capHeader{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.capabilitiesPage .capabilitiesList .capabilitiesItem  .capabilitiesContent{
  border-left: 5px solid var(--GRAY2, #EEE);
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--Nero, #151515);

  font-size: var(--Size-sm, 14px);
  font-style: normal;
  font-weight: 100;
  line-height: 120%;
}

.content404{
  text-align: center;
  height: calc(100vh - 250px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.post .postContent{
  padding: 30px;
  margin-bottom: 30px;
}

.badge h3{
  color: var(--Bianco, #FEFEFE);
  font-size: var(--Size-s, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
  text-transform: uppercase;
  background: var(--Colore-Primario);
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.post .postContent .postHeader .badge{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin-bottom: 15px;
}

.post .postContent .postHeader h1{
  color: var(--Nero, #151515);
  text-align: center;
  font-size: var(--Size-2xl, 36px);
  font-style: normal;
  font-weight: 200;
  line-height: 120%; /* 43.2px */
  text-transform: uppercase;
  margin-bottom: 45px;
}

.post .postContent .postHeader h5{
  color: var(--Nero, #151515);
  font-size: var(--Size-s, 12px);
  font-style: normal;
  font-weight: 200;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}

.post .postContent .postHeader .imgExcerpt{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post .postContent .postHeader .imgExcerpt .postCover{
  max-width: 100%;
  height: 360px;
  border-radius: 5px;
  overflow: hidden;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.post .postContent .postHeader .imgExcerpt h2{
  color: var(--Nero, #151515);
  font-size: var(--Size-m, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.post .postContent .postHeader{
  margin-bottom: 30px;
}

.post .postContent .postTxtContent p{
  display: flex;
  padding: 30px 0 30px 30px;
  flex-direction: column;
  align-items: flex-end;
  gap: 60px;
  flex: 1 0 0;
  border-left: 5px solid var(--GRAY2, #EEE);
  margin: 0;

  color: var(--Nero, #151515);
  font-size: var(--Size-sm, 14px);
  font-style: normal;
  font-weight: 100;
  line-height: 120%;
}

.post .postContent .postTxtContent h2{
  color: var(--Colore-Primario, #7467FF);

  font-size: var(--Size-2xl, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 43.2px */
  text-transform: uppercase;

  display: flex;
  padding: 15px 0 15px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex: 1 0 0;

  border-left: 5px solid var(--Colore-Primario, #7467FF);

}

.post .postContent .postTxtContent blockquote{
  display: flex;
  padding: 30px 0 30px 30px;
  flex-direction: column;
  align-items: flex-end;
  gap: 60px;
  flex: 1 0 0;

  border-left: 5px solid var(--GRAY2, #EEE);

  color: var(--Nero, #151515);
  font-size: var(--Size-m, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;

  margin: 0;
}

.post .postContent .postTxtContent figure{
  margin: 0;
  display: flex;
  padding: 30px 0 30px 30px;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  flex: 1 0 0;

  border-left: 5px solid var(--GRAY2, #EEE);
}

.post .postContent .postTxtContent figure img {
  max-width: 100%;
  border-radius: 5px;
}

.post .postContent .postTxtContent figure figcaption{
  color: var(--GRIGIO, #999);
  text-align: center;
  font-size: var(--Size-s, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
  text-transform: uppercase;
}

.post .postContent .postTxtContent .leggiAnche{
  display: flex;
  padding: 30px 0 30px 30px;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  flex: 1 0 0;

  border-left: 5px solid var(--GRIGIO, #999);
}

.post .postContent .postTxtContent .leggiAnche .leggiContainer{
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  align-self: stretch;

  border-radius: 15px;
  background: var(--GRAY2, #EEE);
}

.post .postContent .postTxtContent .leggiAnche .leggiContainer h5{
  color: var(--GRIGIO, #999);
  text-align: center;
  font-size: var(--Size-m, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.post .postContent .postTxtContent .leggiAnche .leggiContainer .itemMore{
  display: flex;
  padding: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;

  border-radius: 5px;
  border-top: 1px solid var(--GRAY3, #DDD);
  border-right: 1px solid var(--GRAY3, #DDD);
  border-bottom: 5px solid var(--GRAY3, #DDD);
  border-left: 1px solid var(--GRAY3, #DDD);
  background: var(--Bianco, #FEFEFE);

  width: calc(100% - 30px);

  gap: 15px;
}

.post .postContent .postTxtContent .leggiAnche .leggiContainer .itemMore h3{
  color: var(--Nero, #151515);
  font-size: var(--Size-l, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.post .postContent .postTxtContent .leggiAnche .leggiContainer .itemMore .moreDetails .iconMore{
  width: 90px;
  aspect-ratio: 1;
  border-radius: 5px;
  background-size: cover !important;
  background-position: center !important;
}

.post .postContent .postTxtContent .leggiAnche .leggiContainer .itemMore .moreDetails{
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.post .postContent .postTxtContent .leggiAnche .leggiContainer .itemMore h4{
  color: var(--Nero, #151515);
  overflow: hidden;
  text-overflow: ellipsis;

  font-size: var(--Size-sm, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

@media only screen and (min-width: 800px) {
  /* Desktop */
  .menuButton.open, .mobileMenu{
    display: none;
  }

  .menu{
    padding-left: 60px;
    box-sizing: border-box;
  }

  .desktopMenu{
    display: flex;
    flex-direction: row;
     /*gap: 30px;*/
  }

  .menu a{
    text-decoration: none;
    color: var(--Nero);
    text-transform: uppercase;
    font-weight: 700;
    font-size: var(--Size-sm);

  }

  .menuButton.mailTo{
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    display: flex;
    gap: 15px;
    width: fit-content;
  }

  .menu .menuButton.mailTo span{
    display: flex;
  }

  .homeCover .coverContent{
    min-height: 600px;
    align-items: center;
    justify-content: center;
  }

  .columnBlock{
    padding: 45px 120px;
    flex-direction: row;
    gap: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .col{
    width: 50%;
    justify-content: center;
  }

  .colorContainer{
    padding: 45px 30px;
  }

  .colorContainer .colorHeader{
    flex-direction: row;
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .colorContainer .bullets{
    flex-direction: row;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .colorContainer .colorHeader h2{
    padding-left: 60px;
    padding-right: 60px;
  }

  .capabilitiesList{
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .capabilities .capabilitiesList .standardButton{
    width: auto;
    padding: 30px 60px;
  }

  .capabilities{
    padding: 45px 10px;
  }

  .portfolio .titleHeader{
    margin-bottom: 0;
  }

  .topPortfolio{
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 45px 0;
  }

  .portfolioItem .headerItem,.portfolioItem .data,.portfolioItem .contentItem{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .capabilitiesPage .capabilitiesList{
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    padding-left: 120px;
    padding-right: 120px;
  }

  .capabilitiesPage .capabilitiesList .capabilitiesItem .capHeader{
    flex-direction: row;
  }

  .capabilitiesPage .capabilitiesList .capabilitiesItem .capabilitiesImg{
    max-width: 770px;
  }

  .capabilitiesActive{
    border-bottom: 3px solid var(--Secondario, #F6681C);
    background: var(--HOVER-LINEAR-DARK, linear-gradient(180deg, #151515 0%, #333 100%));
    color: var(--Bianco);
  }

  .blogActive{
    border-bottom: 3px solid var(--Colore-Primario);
    background: var(--HOVER-LINEAR-DARK, linear-gradient(180deg, #151515 0%, #333 100%));
    color: var(--Bianco);
  }

  .desktopMenu{
    height: 100%;
  }

  .desktopMenu .menuItem{
    height: 100%;
    line-height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    box-sizing: border-box;
  }

  .content404{
    text-align: center;
    height: calc(100vh - 250px);
  }

  .post .postContent{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 0;
  }

  .post .postContent .postHeader h1{
    color: var(--Nero, #151515);
    text-align: center;

    font-size: var(--Size-4xl, 48px);
    font-style: normal;
    font-weight: 200;
    line-height: 120%; /* 57.6px */
    text-transform: uppercase;

    margin-bottom: 60px;
  }

  .post .postContent .postHeader h5{

    color: var(--Nero, #151515);
    font-size: var(--Size-s, 12px);
    font-style: normal;
    font-weight: 200;
    line-height: 120%;
    text-transform: uppercase;

    margin-bottom: 60px;
  }

  .post .postContent .postHeader .imgExcerpt{
    flex-direction: row;
    gap: 60px;
  }

  .post .postContent .postHeader .imgExcerpt h2 {
    width: calc(50% - 60px);

    font-size: var(--Size-m, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 21.6px */
    text-transform: uppercase;
  }

  .post .postContent .postHeader{
    margin-bottom: 60px;
  }

  .post .postContent .postTxtContent figure img, .post .postContent .postTxtContent figure figcaption{
    width: 100%;
  }

  .post .postContent .postHeader .imgExcerpt .postCover{
    width: calc(50% - 60px);
  }

  .post .postContent .leggiContainer a{
    width: calc(100% - 60px);
  }

  .post .postContent .postTxtContent .leggiAnche .leggiContainer .itemMore{
    padding: 30px;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    width: auto;
  }

  .post .postContent .postTxtContent .leggiAnche .leggiContainer .itemMore .moreDetails{
    gap: 15px;
    align-items: center;
  }

  .post .postContent .postTxtContent .leggiAnche .leggiContainer .itemMore h3{
    max-width: 400px;
  }

  .portfolio .portfolioList .portfolioItem .portfolioContent{
    display: flex;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 60px;
  }

  .portfolio .portfolioList .readMore{
    flex-direction: row;
    gap: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/**
  Correzioni temporanee per avere solo home
 */

.mobileMenu, .portfolio, .capabilities, .desktopMenu{
  display: none !important;
}

.menuButton.open{
  opacity: 0;
}
