/* Normalizzazione */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  cursor: default;
  font-family: "Plus Jakarta Sans", sans-serif;
}

input, textarea {
  cursor: text;
}

.w100 {
  width: 100%;
}

.w50 {
  width: 50%;
}

.vw100 {
  width: 100vw;
}

.mt20 {
  margin-top: min(20px, 5%);
}

.mt100 {
  margin-top: min(100px, 10%);
}

.p20 {
  padding: 20px;
}

.p60 {
  padding: 60px;
}

.flex {
  display: flex;
  justify-content: center;
}

.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.gap30 {
  gap: 30px;
}

.gap60 {
  gap: 60px;
}

.bgBlack {
  background-color: #000;
}

.bgWhite {
  background-color: #fff;
}

.bgRed {
  background-color: #BE1522;
}

/* Colori */
/* Defaults */
h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  color: #fff;
}

h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
}

h3 {
  font-size: 1.5rem;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.txtl {
  text-align: left;
}

.txtc {
  text-align: center;
}

.txtr {
  text-align: right;
}

.black {
  color: #000;
}

.white {
  color: #fff;
}

.red {
  color: #BE1522;
}

a, :visited {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: 0.2s;
}
a:hover, :visited:hover {
  color: #BE1522;
  cursor: pointer;
}

/* Media querys */
@media (min-width: 1024px) {
  nav,
  section,
  h1 {
    width: 1000px;
  }
}
@media (min-width: 1280px) {
  nav,
  section,
  h1 {
    width: 1200px;
  }
}
@media (min-width: 1440px) {
  nav,
  section,
  h1 {
    width: 1400px;
  }
}

@media (min-width: 850px) {
  nav {
    height: 100px;
  }
}
nav > .navBtn {
  display: flex;
}
@media (min-width: 850px) {
  nav > .navBtn {
    display: none;
  }
}
nav > .navMenu {
  transition: 0.3s ease-in-out;
}
@media (max-width: 850px) {
  nav > .navMenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    gap: 20px;
    top: 90px;
    right: -100%;
    height: max-content;
    width: calc(100% - 20px);
    margin: 0;
    padding: 40px 20px;
    background-color: #f9f9f9;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    text-align: center;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .cardBox .cards {
    flex-direction: column;
  }
}

.about {
  grid-template-columns: 1fr 150px;
  grid-template-rows: 1fr min-content;
  text-align: left;
}
@media (max-width: 850px) {
  .about {
    text-align: center;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, max-content);
    text-align: center;
    gap: 20px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  z-index: 9999;
  border-radius: 0 0 32px 32px;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
  padding: 40px;
  height: 80px;
}
header nav .logo img {
  width: 150px;
  cursor: pointer;
}
header nav > .navBtn {
  padding: 10px;
  background: transparent;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}
header nav > .navBtn.active {
  transform: rotate(180deg);
}
header nav > .navBtn > img {
  cursor: pointer;
  width: 40px;
}
header nav > .navMenu.active {
  right: 10px;
}
header nav > .navMenu > li {
  display: inline-block;
}
header nav > .navMenu > li > a {
  padding: 10px;
}
header nav > .navMenu > li > a.active {
  color: #BE1522;
  font-weight: 900;
  font-size: 1.5rem;
}

footer {
  background-color: #000;
  padding: 40px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.cardBox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 10px;
}
.cards .card {
  height: 350px;
  width: 100%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: default;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 1;
  transition: 0.2s;
}
.cards .card > h3 {
  position: absolute;
  top: 0;
  display: flex;
  width: 100%;
  height: 15%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px;
}
.cards .card > img {
  display: block;
  height: 100%;
  width: 100%;
  transition: 0.2s;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.cards .card:hover, .cards .card:active {
  transform: scale(1.05);
}
.cards .card:hover .overlay, .cards .card:active .overlay {
  height: 85%;
}
.cards .card:hover img, .cards .card:active img {
  filter: blur(2px);
}
.cards .card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
  background-color: #f9f9f9;
  overflow: hidden;
  transition: height 0.3s;
  font-size: 0.9rem;
  font-weight: 500;
}
.cards .card .overlay > ul > li {
  padding: 5px;
  border-bottom: 1px solid #DDE1E6;
}
.cards .card .overlay > ul > li:first-letter {
  text-transform: capitalize;
}
.cards .card:hover.overlay {
  height: 85%;
}
.cards .contactCard {
  width: 300px;
  padding: min(30px, 10%) 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  user-select: none;
}
.cards .contactCard h2 {
  width: max-content;
  color: #BE1522;
  padding-bottom: 20px;
  border-bottom: 1px solid #DDE1E6;
}
.cards .contactCard > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cards .contactCard > div > p {
  padding: 10px 20px;
  cursor: text;
  user-select: text;
}
.cards .contactCard > div > p::selection {
  background-color: #BE1522;
  color: #fff;
}

.btnBox {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 50px;
}
.btnBox .btn {
  position: absolute;
  padding: 10px;
  font-size: 1.5rem;
}
.btnBox .btn:before, .btnBox a.btn:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}
.btnBox .btn:before {
  top: -2.5%;
  left: -1%;
  border-top: 3px solid #BE1522;
  border-left: 3px solid #BE1522;
  border-radius: 3px;
}
.btnBox .btn:after {
  bottom: -2.5%;
  right: -1%;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  mix-blend-mode: difference;
}
.btnBox .btn:hover:before, .btnBox .btn:hover:after {
  width: 20%;
  height: 70%;
  transition: all 0.3s ease;
}

.send {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  padding: 10px;
  margin: 0 auto;
  border: none;
  border-radius: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.2s;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.send > img {
  cursor: pointer;
}
.send:hover {
  background-color: #BE1522;
  transform: scale(1.05);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.send:hover > img {
  filter: invert(1);
}

#home .wrapper {
  background-color: #000;
  border-radius: 0 0 32px 32px;
}
#home .hero {
  padding: min(100px, 10%) 10px;
  border-radius: 0;
}
#home .about {
  display: grid;
  gap: 60px;
  border: none;
  padding: min(100px, 15%);
}
#home .about > div {
  color: #fff;
}
#home .about > img {
  width: 150px;
  margin: auto;
}
#home .about .btnBox {
  grid-column: 1/-1;
  justify-self: center;
  width: 100px;
}
#home .about .btnBox > a:not(.about) {
  color: #fff;
}
#home .cards {
  padding: min(100px, 10%) 0;
  align-items: center;
}
#home .counter {
  background-color: #BE1522;
  width: 100%;
  padding: min(100px, 10%) 10px;
}
#home .counter > .display {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
#home .counter > .display > .flex > * {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  width: 200px;
  height: 200px;
  color: #BE1522;
  border-radius: 16px;
}
#home .counter > .display > .flex > * > p {
  padding: 0 10px;
  color: #000;
  font-weight: 500;
}
#home .counter > .display > .flex > *.first {
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}
#home .counter > .display > .flex > *.second {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
#home .counter > .display > .flex > *.third {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
#home .contact {
  padding: min(100px, 10%) 0;
  gap: 50px;
}
#home .contact > h2 {
  margin: 0 auto;
}
#home .contact .btn {
  width: max-content;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 24px;
  font-size: 1.5rem;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
#home .contact .btn:hover {
  color: #fff;
  background-color: #BE1522;
  transform: scale(1.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

#about > h2 {
  margin-top: min(100px, 10%);
}
#about > p {
  max-width: 80%;
  margin-top: 50px;
}
#about .contactCards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: min(100px, 10%) 0;
  border-bottom: 1px solid #DDE1E6;
  padding: 0 10px min(100px, 10%) 10px;
}
#about .contactCards:last-of-type {
  margin-bottom: 0;
}
#about .contactCards .contactCard {
  width: 350px;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(96, 47, 47, 0.25) 0px 20px 50px -10px, rgba(0, 0, 0, 0.3) 0px 30px 60px -20px;
}
#about .contactCards .contactCard > img {
  background-color: #000;
  padding: 10px;
  border-radius: 100%;
  margin: 10px;
}
#about .contactCards .contactCard .cardText {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #DDE1E6;
  border-radius: 0 0 24px 24px;
}
#about .contactCards .contactCard .cardText > * {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contacts .cards {
  flex-direction: row;
  justify-content: center;
}
#contacts .cards div:not(:last-of-type) {
  border-bottom: 1px solid #DDE1E6;
}
#contacts h2 {
  padding: min(100px, 10%) 10px;
}
#contacts h3 {
  display: flex;
  justify-content: center;
  gap: 10px;
}

#forms .container {
  padding: min(100px, 10%) 10px;
}
#forms .docTable {
  width: 100%;
  padding: min(100px, 10%) 10px;
  display: flex;
  justify-content: center;
}
#forms .docTable .docType ul, #forms .docTable .docLink ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#forms .docTable .docType li, #forms .docTable .docLink li {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 10px;
  gap: 10px;
  border-bottom: 1px solid #DDE1E6;
}
#forms .docTable .docType {
  width: 75%;
}
#forms .docTable .docType li {
  border-radius: 8px 0 0 8px;
}
#forms .docTable .docLink {
  width: 25%;
}
#forms .docTable .docLink li {
  justify-content: center;
  border-radius: 0 8px 8px 0;
  border-bottom: 1px solid #DDE1E6;
}
#forms .docTable .docLink li > p {
  color: #000;
  font-weight: 600;
}
#forms .docTable .docLink a {
  display: flex;
  align-items: center;
  height: 40px;
  width: max-content;
  padding: 0 10px;
  border-radius: 8px;
  cursor: pointer;
}
#forms .docTable .docLink a:hover {
  background-color: #BE1522;
}
#forms .docTable .docLink a:hover > img {
  filter: invert(1);
}
#forms .docTable .docLink a > img {
  transition: 0.2s;
  cursor: pointer;
}

#services .container {
  padding: min(100px, 10%) 0;
  margin: 0;
}
#services .container > p {
  font-size: 1.2rem;
  padding-bottom: min(50px, 5%);
}
#services .container .btn {
  width: max-content;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 24px;
  font-size: 1.5rem;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
#services .container .btn:hover {
  color: #fff;
  background-color: #BE1522;
  transform: scale(1.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
#services h2 {
  color: #BE1522;
  margin-top: min(100px, 10%);
  padding: 0 10px;
}
#services .cards {
  padding: 0 40px;
}
#services .card {
  height: 350px;
  max-height: max-content;
  max-width: 250px;
}
#services .display {
  padding: min(100px, 10%) 0;
}
#services .display > h3 {
  padding-bottom: min(100px, 10%);
}
#services .display:first-of-type {
  background-color: #000;
}
#services .display:first-of-type h3 {
  color: #fff;
}
#services .display:first-of-type .card {
  box-shadow: none;
}
#services .display:first-of-type .card > h3 {
  color: #000;
  background-color: #fff;
  border-bottom: 1px solid #DDE1E6;
}

#workWithUs {
  background-color: #fff;
}
#workWithUs .wrapper {
  background-color: #000;
  border-radius: 24px;
}
#workWithUs h2 {
  color: #fff;
  padding: min(100px, 10%);
}
#workWithUs form {
  display: flex;
  flex-direction: column;
  gap: calc(30px + 10%);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
}
#workWithUs form > div {
  padding: 0 10px;
  width: 100%;
}
#workWithUs h3 {
  text-align: center;
  padding-bottom: 10px;
  color: #BE1522;
}
#workWithUs label {
  display: block;
  color: #f9f9f9;
  padding: 20px 0;
}
#workWithUs input,
#workWithUs textarea {
  width: 100%;
  padding: 20px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}
#workWithUs input::placeholder,
#workWithUs textarea::placeholder {
  color: #9e9e9e;
}
#workWithUs input:focus,
#workWithUs textarea:focus {
  border-color: #BE1522;
  outline: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}
#workWithUs textarea {
  max-width: 100%;
  max-height: max-content;
  height: 150px;
  resize: none;
}
#workWithUs textarea:focus {
  box-shadow: inset 0px 0px 10px 5px #9e9e9e;
}

body {
  min-height: 100vh;
  background-color: #f9f9f9;
}
body main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
body main .hero {
  width: 100vw;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%), url("../../Assets/img/example.jpg");
  background-blend-mode: multiply;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 32px 32px;
}
body main .hero > h1 {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
  padding: min(200px, 10%) 10px;
}
body main .container {
  display: flex;
  justify-content: space-between;
  padding: min(100px, 10%) 0;
}
body main .container:not(:first-of-type) {
  border-bottom: 1px solid #DDE1E6;
}/*# sourceMappingURL=style.css.map */