/*--- grid ---*/
.grid-container {
  max-width: 1408px !important;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-column-gap: 2rem;
  padding: 0 4rem;
  box-sizing: content-box;
  margin: 0 auto !important;
    grid-template-rows: max-content;
    grid-row-gap: inherit;
}

/* Layout tablet */
@media (max-width: 1279px) and (min-width: 600px) {
    .grid-container {
		padding: 0 2rem;
        grid-template-columns: repeat(8, minmax(0, 1fr));
		grid-column-gap: 2rem;
    }
}

/* Layout mobile */
@media (max-width: 599px) {
    .grid-container {
		padding: 0 1rem;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-column-gap: 1rem;
    }
}

/* breadcrumb */
.breadcrumb ul {
  color: var(--wp--preset--color--custom-base);
}

.breadcrumb li a {
  color: var(--wp--preset--color--custom-base);
}

/* section 1 */
#section-1 {
  padding-bottom: 5rem;
}

#section-1 .page-title {
  grid-column: 1 / 13;
  margin: 4rem 0 3rem;
}

hr {
  grid-column: 1 / 13;
  width: 100%;
  height: 1px;
  border: none;
  background-color: var(--wp--preset--color--custom-base);
}

#section-1 .paragrafo-1, #section-1 .paragrafo-2 {
  grid-column: 1 / 8;
}

#section-1 .paragrafo-1 {
  margin: 4rem 0 1rem;
}

#section-1 .paragrafo-2 {
  margin: 0 0 4rem;
}

#section-1 .contact-item {
  width: 100%;
  margin: 0 0 2rem;
}

#section-1  .contact-item.phone {
  grid-column: 1 / 5;
}

#section-1  .contact-item.mail {
  grid-column: 5 / 9;
}

#section-1  .contact-item.address {
  grid-column: 1 / 5;
}

#section-1  .contact-item.insta {
  grid-column: 5 / 9;
}

#section-1  .contact-item.fb {
  grid-column: 9 / 13;
}

#section-1 .contact-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  width: fit-content;
  padding: 1rem 0;
  transition: color 0.3s;
}

#section-1 .contact-item a:hover {
  color: var(--wp--preset--color--custom-azzurro);
}

#section-1 .contact-item a:focus {
  outline: none;
  box-shadow: 0 0 0 2px #d1ebf6;
  border-radius: 0.5rem !important;
}

#section-1 .contact-item .icon-container {
  display: inline-block;
  box-sizing: border-box;
  padding-right: 1.5rem;
  text-align: center;
  font-size: var(--wp--preset--font-size--custom-7);
}

#section-1 .contact-item .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* section 2 */
#section-2 {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

#section-2 .section-head {
  grid-column: 1 / 13;
  width: 100%;
  margin: 0 0 3rem;
}

#section-2 .paragrafo-1, #section-2 .paragrafo-2 {
  grid-column: 1 / 8;
  margin: 0 0 2rem;
}

/* section 3 */
#section-3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#section-3 .section-head {
  grid-column: 1 / 13;
  width: 100%;
  margin-bottom: 3rem;
}

#section-3 .paragrafo-1 {
  grid-column: 1 / 8;
  margin-bottom: 3rem;
}

/* contact form */
#section-3 .wpcf7 .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}

#section-3 .wpcf7 {
  grid-column: 1 / 13;
}

#section-3 .wpcf7-form {
  max-width: 1408px !important;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-column-gap: 2rem;
  box-sizing: content-box;
  margin: 0 auto !important;
  grid-template-rows: max-content;
  grid-row-gap: inherit;
}

#section-3 .wpcf7-form .wpcf7-text, #section-3 .wpcf7-form textarea {
  width: 100%;
}

#section-3 .wpcf7-form label.nome, #section-3 .wpcf7-form [data-name="your-name"], #section-3 .wpcf7-form label.mail, #section-3 .wpcf7-form [data-name="email"] {
  grid-column: 1 / 7;
}

#section-3 .wpcf7-form label.cognome, #section-3 .wpcf7-form [data-name="surname"], #section-3 .wpcf7-form label.telefono, #section-3 .wpcf7-form [data-name="telephone"] {
  grid-column: 7 / 12;
}

#section-3 .wpcf7-form label.oggetto, #section-3 .wpcf7-form [data-name="subject"], #section-3 .wpcf7-form label.messaggio, #section-3 .wpcf7-form [data-name="message"], #section-3 .wpcf7-form [data-name="consenso-privacy"], #section-3 .wpcf7-form .altcha-widget-wrap, #section-3 .wpcf7-form .send {
  grid-column: 1 / 9;
}

#section-3 .wpcf7-form label.nome, #section-3 .wpcf7-form label.cognome {
  grid-row: 1;
}

#section-3 .wpcf7-form [data-name="name"], #section-3 .wpcf7-form [data-name="surname"] {
  grid-row: 2;
}

#section-3 .wpcf7-form label.mail, #section-3 .wpcf7-form label.telefono {
  grid-row: 3;
}

#section-3 .wpcf7-form [data-name="email"], #section-3 .wpcf7-form [data-name="telephone"] {
  grid-row: 4;
}

#section-3 .wpcf7-form label, #section-3 .wpcf7-form .wpcf7-acceptance {
  color: var(--wp--preset--color--base);
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: var(--wp--preset--font-size--medium);
}

#section-3 .wpcf7-form label {
  margin: 5rem 0 1.5rem;
}

#section-3 .wpcf7-form .wpcf7-text {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 3rem;
  border: none;
  border-radius: 1.5rem;
  padding: 0.25rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 1.5rem;
}

#section-3 .wpcf7-form .wpcf7-text:focus {
  outline: 2px solid #d1ebf6;
}

#section-3 .wpcf7-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 1.5rem;
  padding: 0.5rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 1.5rem;
}

#section-3 .wpcf7-form textarea:focus {
  outline: 2px solid #d1ebf6;
}

/* acceptance */
#section-3 .wpcf7-form .wpcf7-list-item {
  margin: 5rem 0;
}

#section-3 .wpcf7-acceptance label {
  margin: 0;
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  align-items: flex-start;
}

#section-3 .wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--wp--preset--color--custom-base);
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
  margin: 0.25rem;
  aspect-ratio: 1;
}

#section-3 .wpcf7-acceptance input[type="checkbox"]:focus {
  outline-color: var(--wp--preset--color--custom-azzurro);
}

#section-3 .wpcf7-acceptance input[type="checkbox"]:checked {
  background-color: var(--wp--preset--color--custom-azzurro);
  border-color: var(--wp--preset--color--custom-blu);
}

/* altcha */
#section-3 .wpcf7-form .altcha {
  border-radius: 1rem;
  border: 1px solid var(--wp--preset--color--custom-base);
  width: fit-content;
}

#section-3 .wpcf7-form .altcha-label {
  margin: 0.5rem;
  font-family: var(--wp--preset--font-family--dm-sans) !important;
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 400;
}

/* submit btn */
#section-3 .wpcf7 .wpcf7-submit {
  width: 8.5rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid var(--wp--preset--color--custom-base);
  background: var(--wp--preset--color--custom-azzurro);
  color: var(--wp--preset--color--custom-blu);
  font-family: var(--wp--preset--font-family--aleo);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 700;
  margin-top: 2rem;
  margin-left: 0.25rem;
  cursor: pointer;
}

/* submit message */
#section-3 .wpcf7 .wpcf7-response-output {
  grid-column: 1 / 13;
  color: #dc3232;
  border-radius: 1rem;
  width: fit-content;
  margin: 3rem 0;
}

/* Layout tablet */
@media (max-width: 1279px) and (min-width: 600px) {
/* section 1 */
#section-1 {
  padding-bottom: 3rem;
}

#section-1 .page-title {
  grid-column: 1 / 9;
  margin: 1rem 0 2rem;
}

hr {
  grid-column: 1 / 9;
}

#section-1 .paragrafo-1, #section-1 .paragrafo-2 {
  grid-column: 1 / 7;
}

#section-1 .paragrafo-1 {
  margin: 2rem 0 1rem;
}

#section-1 .paragrafo-2 {
  margin: 0 0 2rem;
}

#section-1 .contact-item {
  margin: 0.25rem 0;
}

#section-1  .contact-item.phone {
  grid-column: 1 / 5;
}

#section-1  .contact-item.mail {
  grid-column: 5 / 9;
}

#section-1  .contact-item.address {
  grid-column: 1 / 5;
}

#section-1  .contact-item.insta {
  grid-column: 5 / 9;
}

#section-1  .contact-item.fb {
  grid-column: 1 / 5;
}

/* section 2 */
#section-2 {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

#section-2 .section-head {
  grid-column: 1 / 9;
  margin: 0 0 2rem;
}

#section-2 .paragrafo-1, #section-2 .paragrafo-2 {
  grid-column: 1 / 7;
  margin: 0 0 1rem;
}

/* section 3 */
#section-3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#section-3 .section-head {
  grid-column: 1 / 9;
  margin-bottom: 2rem;
}

#section-3 .paragrafo-1 {
  grid-column: 1 / 7;
  margin-bottom: 1rem;
}

/* contact form */
#section-3 .wpcf7 .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}

#section-3 .wpcf7 {
  grid-column: 1 / 9;
}

#section-3 .wpcf7-form {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

#section-3 .wpcf7-form label.nome, #section-3 .wpcf7-form [data-name="your-name"], #section-3 .wpcf7-form label.mail, #section-3 .wpcf7-form [data-name="email"] {
  grid-column: 1 / 7;
}

#section-3 .wpcf7-form label.cognome, #section-3 .wpcf7-form [data-name="surname"], #section-3 .wpcf7-form label.telefono, #section-3 .wpcf7-form [data-name="telephone"] {
  grid-column: 1 / 7;
}

#section-3 .wpcf7-form label.oggetto, #section-3 .wpcf7-form [data-name="subject"], #section-3 .wpcf7-form label.messaggio, #section-3 .wpcf7-form [data-name="message"], #section-3 .wpcf7-form [data-name="consenso-privacy"], #section-3 .wpcf7-form .altcha-widget-wrap, #section-3 .wpcf7-form .send {
  grid-column: 1 / 9;
}

#section-3 .wpcf7-form label.nome {
  grid-row: 1;
}

#section-3 .wpcf7-form [data-name="your-name"] {
  grid-row: 2;
}

#section-3 .wpcf7-form label.cognome {
  grid-row: 3;
}

#section-3 .wpcf7-form [data-name="surname"] {
  grid-row: 4;
}

#section-3 .wpcf7-form label.mail {
  grid-row: 5;
}

#section-3 .wpcf7-form [data-name="email"] {
  grid-row: 6;
}

#section-3 .wpcf7-form label.telefono {
  grid-row: 7;
}

#section-3 .wpcf7-form [data-name="telephone"] {
  grid-row: 8;
}

#section-3 .wpcf7-form label {
  margin: 3rem 0 1rem;
}

/* acceptance */
#section-3 .wpcf7-form .wpcf7-list-item {
  margin:0;
}

#section-3 .wpcf7-acceptance label {
	margin: 3rem 0;
	display: flex;
	flex-direction: row;
	column-gap: 1rem;
	align-items: flex-start;
}

/* submit message */
#section-3 .wpcf7 .wpcf7-response-output {
  grid-column: 1 / 9;
}

}

/* Layout mobile */
@media (max-width: 599px) {
/* section 1 */
#section-1 {
  padding-bottom: 3rem;
}

#section-1 .page-title {
  grid-column: 1 / 5;
  margin: 1rem 0 2rem;
}

hr {
  grid-column: 1 / 5;
}

#section-1 .paragrafo-1, #section-1 .paragrafo-2 {
  grid-column: 1 / 5;
}

#section-1 .paragrafo-1 {
  margin: 2rem 0 1rem;
}

#section-1 .paragrafo-2 {
  margin: 0 0 2rem;
}

#section-1 .contact-item {
  margin: 0.25rem;
}

#section-1 .contact-item.phone, #section-1 .contact-item.mail, #section-1 .contact-item.address, #section-1 .contact-item.insta, #section-1 .contact-item.fb {
  grid-column: 1 / 5;
}

/* section 2 */
#section-2 {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

#section-2 .section-head {
  grid-column: 1 / 5;
  margin: 0 0 2rem;
}

#section-2 .paragrafo-1, #section-2 .paragrafo-2 {
  grid-column: 1 / 5;
  margin: 0 0 1rem;
}

/* section 3 */
#section-3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#section-3 .section-head {
  grid-column: 1 / 5;
  margin-bottom: 2rem;
}

#section-3 .paragrafo-1 {
  grid-column: 1 / 5;
  margin-bottom: 1rem;
}

/* contact form */
#section-3 .wpcf7 .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}

#section-3 .wpcf7 {
  grid-column: 1 / 5;
}

#section-3 .wpcf7-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#section-3 .wpcf7-form label.nome, #section-3 .wpcf7-form [data-name="your-name"], #section-3 .wpcf7-form label.mail, #section-3 .wpcf7-form [data-name="email"] {
  grid-column: 1 / 5;
}

#section-3 .wpcf7-form label.cognome, #section-3 .wpcf7-form [data-name="surname"], #section-3 .wpcf7-form label.telefono, #section-3 .wpcf7-form [data-name="telephone"] {
  grid-column: 1 / 5;
}

#section-3 .wpcf7-form label.oggetto, #section-3 .wpcf7-form [data-name="subject"], #section-3 .wpcf7-form label.messaggio, #section-3 .wpcf7-form [data-name="message"], #section-3 .wpcf7-form [data-name="consenso-privacy"], #section-3 .wpcf7-form .altcha-widget-wrap, #section-3 .wpcf7-form .send {
  grid-column: 1 / 5;
}

#section-3 .wpcf7-form label.nome {
  grid-row: 1;
}

#section-3 .wpcf7-form [data-name="your-name"] {
  grid-row: 2;
}

#section-3 .wpcf7-form label.cognome {
  grid-row: 3;
}

#section-3 .wpcf7-form [data-name="surname"] {
  grid-row: 4;
}

#section-3 .wpcf7-form label.mail {
  grid-row: 5;
}

#section-3 .wpcf7-form [data-name="email"] {
  grid-row: 6;
}

#section-3 .wpcf7-form label.telefono {
  grid-row: 7;
}

#section-3 .wpcf7-form [data-name="telephone"] {
  grid-row: 8;
}

#section-3 .wpcf7-form label {
  margin: 3rem 0 1rem;
}

/* acceptance */
#section-3 .wpcf7-form .wpcf7-list-item {
  margin:0;
}

#section-3 .wpcf7-acceptance label {
	margin: 3rem 0;
	display: flex;
	flex-direction: row;
	column-gap: 1rem;
	align-items: flex-start;
}

/* submit message */
#section-3 .wpcf7 .wpcf7-response-output {
  grid-column: 1 / 5;
}
}