/* ===========================
    main.scss
   =========================== */
/* ===========================
   abstracts/_index.scss
   =========================== */
/* Funzione px-to-rem: converte i px in rem di default base 16 ma puoi cambiare la base se vuoi */
/*****************************************
*               VARIABLES                *
*****************************************/
/* ===========================
    base/_index.scss
   =========================== */
/* ===========================
    main.scss
   =========================== */
/*----------------------------------------------------------------------------- */
/*  base/_base_settings.scss */
/*----------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: #FE252D;
}

body,
input,
textarea,
select {
  font-family: "Sofia Sans", sans-serif;
}

input[type=submit] {
  -webkit-appearance: button;
} /* For IOS */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix::after {
  clear: both;
}

.ar-content {
  width: 1160px;
  margin: 0 auto;
}

.ar-col-1 {
  width: 8.33333%;
}

.ar-col-2 {
  width: 16.66666%;
}

.ar-col-3 {
  width: 25%;
}

.ar-col-4 {
  width: 33.33333%;
}

.ar-col-6 {
  width: 50%;
}

.ar-col-8 {
  width: 66.66666%;
}

.ar-col-10 {
  width: 83.33333%;
}

.ar-divider {
  padding: 20px 0;
}

.ar-spacer {
  padding: 70px 0;
}

.ar-spacer-top {
  padding-top: 70px;
}

.ar-spacer-bottom {
  padding-bottom: 70px;
}

.ar-mb-10 {
  margin-bottom: 10px;
}

.ar-ml-30 {
  margin-right: 30px;
}

.ar-responsive {
  height: auto;
  width: 100%;
}

.ar-center {
  text-align: center;
}

/* Apertura - Chiusura menu mobile */
nav.nav.ar_show_menu_mobile {
  transform: translateY(0);
}

/* Animate */
.ar-hidden {
  opacity: 0;
}

.ar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ar-flex-no-centred {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.ar-d-flex {
  display: flex;
}

/*****************************************
*               FONTS DEL SITO           *
*****************************************/
/* sofia-sans-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Sofia Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/sofia-sans-v16-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sofia-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Sofia Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/sofia-sans-v16-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sofia-sans-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Sofia Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/sofia-sans-v16-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sofia-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Sofia Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/sofia-sans-v16-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sofia-sans-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Sofia Sans";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/sofia-sans-v16-latin-900.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ===========================
    main.scss
   =========================== */
/* ===========================
    base/_typography.scss
   =========================== */
h1 {
  font-size: 60px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  font-weight: 700;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
}

p {
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

strong {
  color: #F4E485;
}

/*
    Fontawesome pseudo-elementnt exemple in free plan
    h1::before{
    content: 'cod icon';
    font: var(--fa-font-brands);  for brand icon
    font-family: 'Font Awesome 6 Brands'; for brand icon
    or
    font: var(--fa-font-solid);   for solid icon    
    }
*/
.ar-title-background {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ar-title-background h2 {
  font-size: 132px;
  letter-spacing: 20px;
  color: #6c757d;
  text-transform: uppercase;
  opacity: 0.1;
}
.ar-title-background p {
  font-size: 36px;
  font-weight: 600;
  position: absolute;
}
.ar-title-background__line {
  display: block;
  width: 85px;
  border: 2px solid #ffffff;
  margin: 15px auto 0;
}

/* ===========================
    components/_index.scss
   =========================== */
/*****************************************
*                GLOBAL STYLE            *
*****************************************/
body {
  background-color: #222222;
}

header {
  padding: 10px 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: transparent;
  transition: all 0.3s;
}

header img {
  display: block;
}

.admin-bar header {
  top: 32px;
}

/* Menus */
.menu {
  list-style: none;
  display: flex;
}
.menu li {
  position: relative;
  font-size: 14px;
}
.menu a {
  text-decoration: none;
  padding: 20px;
  color: #ffffff;
  transition: 0.3s;
  display: block;
}
.menu a:hover {
  color: #FE252D;
}

.current-menu-item a {
  color: #FE252D;
}

.navbar {
  cursor: pointer;
  z-index: 99999;
  display: none;
}

.icon-bar {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 5px;
  display: block;
}

.sub-menu {
  width: 200px;
  background-color: #3D3D3D;
  list-style: none;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 99999;
  display: none;
}
.sub-menu li {
  width: 100%;
  border-bottom: 1px solid #ffffff;
}
.sub-menu li:last-child {
  border-bottom: none;
}

/* Attiva Disattiva una il display in js */
.ar_show {
  display: block;
}

/* Hero */
.main {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../img/hero.png) no-repeat center center;
  background-size: cover;
}

.hero {
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mainPage,
.mainPage .hero {
  padding: 40px 0 0 0;
  height: auto;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../img/portfolio.png) no-repeat center center;
}

.mainPage .hero {
  padding: 116px 0 60px;
}

.ar_sticky {
  background-color: #222222;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero h1 {
  color: #ffffff;
  text-transform: uppercase;
}

.hero h2 {
  color: #ffffff;
  text-transform: capitalize;
  text-align: left;
}

.breadcrumps a,
.rank-math-breadcrumb a {
  text-decoration: none;
  color: #FE252D;
  transition: 0.3s;
}

.breadcrumps a:hover,
.rank-math-breadcrumb a:hover {
  color: #F4E485;
}

.breadcrumps p,
.rank-math-breadcrumb p {
  margin-bottom: 0;
  letter-spacing: 3px;
  font-size: 13px;
}

.title_section {
  padding-bottom: 70px;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

article h2 {
  color: white;
  margin-bottom: 15px;
}

/*****************************************
*                  FORM                  *
*****************************************/
.ar-form-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_contatti {
  color: #ffffff;
  margin-left: 25%;
}

.header_contatti h1 {
  font-size: 36px;
}

.header_contatti h2 {
  text-align: center;
  font-size: 30px;
}

label {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
}

.input,
select,
textarea {
  width: 400px;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 0;
  border: 1px solid black;
}

.input:focus,
textarea:focus {
  border-radius: 0;
  border: 1px solid #FE252D;
}

textarea {
  height: 200px;
  resize: none;
}

[type=submit] {
  display: inline-block;
  padding: 12px 30px;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0;
  border: 1px solid black;
  font-weight: 500;
  background: #ffffff;
  transition: 0.3s;
  cursor: pointer;
}

[type=submit]:hover {
  background: #F4E485;
  color: black;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/*****************************************
*            GRIDS AND CARDS             *
*****************************************/
/* .ar-grid {
    display: grid;
    grid-template-columns: 25% 25% auto;
    grid-template-rows: 90px 60px auto auto;
}

.ar-grid-title {
    grid-column: 2/4;
    grid-row: 2;
    z-index: 1;
}

.ar-paragraph {
    grid-column: 3/5;
    grid-row: 3;
    z-index: 1;
}

.ar-paragraph p {
    font-size: 20px !important;
}


.ar-grid-image {
    grid-column: 1/4;
    grid-row: 1/4;
}

.ar-grid h2 {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
}

.ar-grid p {
    font-size: 16px;
    line-height: 25px;
    padding: 20px 30px 20px 0;
}

.ar-grid img {
    display: block;
    box-shadow: 0 12px 50px rgba(0, 0, 0, .4);
} */
/* Cards */
.article {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.title_article {
  padding: 70px 0 70px;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  color: #F4E485;
}

.servizi {
  display: flex;
  gap: 50px;
}

.card {
  position: relative;
  width: calc(33.333% - 20px);
  overflow: hidden;
}
.card__image {
  display: block;
  aspect-ratio: 16/9;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__image {
  /*   &__contenitore {
      padding: 30px;
      color: ab.$white;
  }         */
}
.card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.card__overlay > * {
  transform: translateY(20px);
  transition: transform 0.25s;
}
.card__overlay:hover {
  opacity: 1;
}
.card__overlay:hover > * {
  transform: translateY(0);
}
.card__overlay__blur {
  backdrop-filter: blur(5px);
}
.card__title {
  font-size: 25px;
  font-weight: 700;
  transition: all 0.5s;
}
.card__title a {
  color: white;
}
.card__title a:hover {
  color: #F4E485;
}
.card__description {
  font-size: 18px !important;
  margin-top: 10px;
  line-height: 1.4;
  margin-top: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.categorie-lavori {
  margin-bottom: 60px;
}
.categorie-lavori ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 1rem;
}
.categorie-lavori .ar-current-category > a {
  background-color: #FE252D;
  color: white;
}
.categorie-lavori a {
  display: inline-block;
  border: 1px solid #F4E485;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 20px;
  margin: 0;
  transition: all 0.3s;
}
.categorie-lavori a:hover {
  background-color: #FE252D;
  color: #F4E485;
}

.info {
  display: flex;
  justify-content: flex-end;
  color: #ffffff;
}
.info__works p {
  margin-bottom: 25px;
}

.cat {
  font-size: 14px;
  font-style: italic;
  margin: 20px 0 20px;
}
.cat a {
  color: #F4E485;
  transition: 0.3s;
}
.cat a:hover {
  color: #FE252D;
}

.title_card {
  text-align: center;
  padding: 24px 0 24px;
}
.title_card a {
  color: #ffffff;
  transition: 0.3s;
}
.title_card a:hover {
  color: #F4E485;
}

.ar-art {
  margin: 0 auto;
  padding-top: 120px;
  display: flex;
  justify-content: space-between;
}
.ar-art li {
  color: #ffffff;
  font-size: 20px;
}
.ar-art a {
  color: #F4E485;
}
.ar-art a:hover {
  color: #FE252D;
}

.wrapper {
  min-height: 900px;
}
.wrapper img {
  overflow: hidden;
}
.wrapper h3 {
  color: #F4E485;
}
.wrapper p {
  color: white;
}
.wrapper ul {
  margin-left: 18px;
  color: white;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}
.wrapper a {
  transition: 0.3s;
}

/*--------------------------------------------------------------------------------*/
/* Media-Text compositore visivo */
/*--------------------------------------------------------------------------------*/
.media-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
}
.media-text--dx {
  flex-direction: row-reverse;
}
.media-text__image {
  flex: 1;
  position: relative;
  /*  &::before {
             content: '';
             position: absolute;
             left: -30px;
             bottom: -30px;
             width: 100%;
             height: 100%;
             border: 4px solid $arancione;
         }
  */
}
.media-text__image img {
  position: relative;
}
.media-text__content {
  flex: 1;
}
.media-text h2 {
  color: #F4E485;
}
.media-text p {
  color: #ffffff;
}

/* .occhiello {
    text-transform: uppercase;
    color: ab.$yellow !important;
    font-size: 16px;
    margin: 0;
    font-weight: 700;
} */
/* ===========================
   layouts/_index.scss
   =========================== */
/*****************************************
*               FOOTER                   *
*****************************************/
.footer {
  width: 100%;
  padding: 20px 0 20px;
  background-color: black;
}

.ar-footer-card {
  width: 32%;
}

.footer ul {
  list-style-type: none;
}

.footer li {
  font-size: 13px;
  line-height: 20px;
  color: #bbb;
}

.footer a {
  color: #bbb;
}
.footer a:hover {
  color: #F4E485;
}

li.termini {
  font-size: 16px;
  line-height: 24px;
}

.ar-flex-no-centred {
  align-items: center;
}

/* .ar-flex-logo-footer{
    display: flex;
    justify-content:left;
    align-items: center;
} */
.ar-footer-personal-datas {
  color: white;
  padding: 7px 0 0 10px;
}

.footer .fa-linkedin-in,
.footer .fa-facebook-f {
  padding: 5px 56px 0 0;
  font-size: 16px;
}

.credits {
  padding: 20px;
  background-color: black;
  text-align: center;
}

.credits p {
  font-size: 10px;
}

/*****************************************
*               GUTENBERG                *
*****************************************/
.alignwide {
  max-width: 1400px;
  width: 1400px;
  margin: 0 -120px;
}

.alignfull {
  max-width: 100vw;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.is-style-occhiello {
  text-transform: uppercase;
  color: #F4E485;
  font-size: 14px;
  margin: 0;
  font-weight: 700;
}

.wp-block-media-text {
  gap: 70px;
  grid-template-columns: 1fr 1fr;
}
.wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 1fr;
}
.wp-block-media-text .wp-block-heading {
  color: #FE252D;
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
.wp-block-media-text .wp-block-media-text__media {
  box-shadow: 1px 4px 9px 8px #3D3D3D;
  border-radius: 10px;
}
.wp-block-media-text .wp-block-media-text__media img {
  border-radius: 10px;
}

/* Grid */
.ar-relative {
  position: relative;
}

.ar-absolute {
  position: absolute;
  top: 175px;
  right: 70px;
  width: 45%;
}
.ar-absolute p {
  font-size: 26px;
  color: #FE252D;
}

/*****************************************
*               BUTTONS                  *
*****************************************/
.heroButton,
.button,
.wp-block-button__link {
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid #F4E485;
  text-transform: lowercase;
  background-color: transparent;
  margin-top: 15px;
  font-size: 16px;
  padding: 15px 40px;
  transition: 0.3s;
}
.heroButton span,
.button span,
.wp-block-button__link span {
  text-transform: uppercase;
}
.heroButton:hover,
.button:hover,
.wp-block-button__link:hover {
  background-color: #FE252D;
  color: #F4E485;
}

.button {
  border: 1px solid #FE252D;
  background-color: #FE252D;
}

/*****************************************
*               ARTICLE                  *
*****************************************/
.wp-block-image {
  border-radius: 10px;
}

.wp-block-column h2 {
  color: #FE252D;
}

.block-editor-block-list__block {
  line-height: 50px;
}

.wp-block-heading {
  color: #FE252D;
}

#cmplz-document {
  color: #FE252D;
}
#cmplz-document a {
  color: #F4E485;
}
#cmplz-document a:hover {
  color: #FE252D;
}

/*****************************************
*               BREAKPOINTS              *
*****************************************/
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .ar-content {
    margin: 0 2%;
    width: 96%;
  }
}
@media only screen and (max-width: 1024px) {
  .ar-content {
    margin: 0 2%;
    width: 96%;
  }
}
@media only screen and (max-width: 768px) {
  .ar-col-1,
  .ar-col-2,
  .ar-col-3,
  .ar-col-4,
  .ar-col-6,
  .ar-col-8,
  .ar-col-10 {
    width: 100%;
  }
  .navbar {
    display: block;
  }
  nav:not(.categorie-lavori) {
    width: 25%;
    height: auto;
    position: fixed;
    top: 0;
    left: 80%;
    background-color: rgba(34, 34, 34, 0.8);
    transform: translateY(-110%);
    z-index: 99998;
    transition: all ease 0.3s;
  }
  .hero h1 {
    font-size: 40px;
  }
  .menu {
    flex-direction: column;
    padding: 70px 0;
  }
  .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    background-color: #3D3D3D;
  }
  .sub-menu li {
    border-bottom: none;
    margin-left: 10px;
  }
  .sub-menu a {
    color: white;
  }
  .servizi {
    flex-direction: column;
  }
  .card {
    width: 100%;
  }
  .ar-flex-logo-footer {
    align-items: center;
  }
  .ar-form-flex {
    flex-direction: column;
    text-align: center;
  }
  .header_contatti {
    margin: 0 0 50px 0;
  }
  .footer h4 {
    margin-top: 20px;
  }
  .fa-instagram {
    padding: 0;
    margin-top: 20px;
  }
  .ar-wrapper {
    background-attachment: scroll;
  }
  body.page-id-19 .wp-block-columns .wp-block-column:last-child {
    border-left: none;
    padding: 0 15px;
  }
  input[type=submit] {
    text-align: center;
  }
  body.page-id-19 .ar-title-background h2 {
    font-size: 60px;
  }
  .article {
    flex-direction: column;
  }
  .card {
    width: 100%;
  }
  .ar-title-background h2 {
    font-size: 100px;
  }
  /* .wp-block-media-text.is-stacked-on-mobile {  
      grid-template-columns: 100% !important;
  } */
}
/*****************************************
*                 SOCIAL                 *
*****************************************/
.ar-wrapper {
  width: 100%;
  padding: 150px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../img/hero.png) no-repeat center center fixed;
  background-size: cover;
}

.ar-wrapper h2 {
  color: white;
  font-size: 60px;
  padding-bottom: 20px;
}

.ar-wrapper .fa-brands {
  font-size: 60px;
  padding: 0 50px 0 50px;
}

.ar-wrapper a .fa-brands {
  color: #F4E485;
  transition: 0.3s;
}

.ar-wrapper a:hover .fa-brands {
  color: #FE252D;
}

/* ----------------------------------------------------------------------------- */
/* SOLO PAGINA CONTATTI (ID 19) - STRUTTURA E LINEA DIVISORIA */
/* ----------------------------------------------------------------------------- */
.wpcf7-list-item-label a {
  color: #F4E485;
}
.wpcf7-list-item-label a:hover {
  color: #FE252D;
}

/* Ridimensiona ar-title-background nella colonna sinistra contatti */
.page-id-19 .ar-title-background h2 {
  font-size: 48px;
  letter-spacing: 8px;
  color: #6c757d;
}
.page-id-19 .ar-title-background p {
  font-size: 20px;
  letter-spacing: 6px;
}
.page-id-19 .ar-title-background__line {
  width: 50px;
  margin: 8px auto 0;
}

/* 1. Contenitore colonne: togliamo il gap per gestire la linea a mano */
.page-id-19 .wp-block-columns {
  align-items: stretch;
  gap: 0;
}

/* 2. Colonna Sinistra: Centratura e bordo destro (linea verticale) */
.page-id-19 .wp-block-columns .wp-block-column:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-right: 1px solid #F4E485;
  padding-right: 60px;
  margin-right: -1px; /* Sovrappone le linee per pulizia */
}

/* 3. Colonna Destra: Spazio e bordo sinistro (chiusura linea) */
.page-id-19 .wp-block-columns .wp-block-column:last-child {
  display: flex;
  flex-direction: column;
  padding-left: 60px;
  border-left: 1px solid #F4E485;
}

/* 4. Mappa: Forza la centratura nella colonna sinistra */
.page-id-19 .wp-block-columns .wp-block-column:first-child iframe {
  margin: 20px auto 0 auto;
  display: block;
  width: 100%;
}

/* ----------------------------------------------------------------------------- */
/* CONTACT FORM 7 - ALTEZZE E CAMPI (SOLO PAGINA 19) */
/* ----------------------------------------------------------------------------- */
/* Pareggia altezza Nome, Email e Quiz */
.page-id-19 div.wpcf7 form input[type=text],
.page-id-19 div.wpcf7 form input[type=email],
.page-id-19 div.wpcf7 form input[type=tel],
.page-id-19 div.wpcf7 form .wpcf7-quiz {
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 1px solid #F4E485;
}

/* Area Messaggio */
.page-id-19 div.wpcf7 form textarea {
  padding: 10px 15px;
  margin-top: 10px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 190px;
  border: 2px solid #F4E485;
}

/* Pulizia: toglie i BR e gestisce lo spazio delle label */
.page-id-19 .wpcf7-form br {
  display: none;
}

.page-id-19 .wpcf7-form label {
  display: block;
  margin-top: 15px;
}

/*# sourceMappingURL=main.css.map */
