@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  /* border: 0; */
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-tap-highlight-color: transparent;
  /* cursor: default; */
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

* {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: inherit;
    border-collapse: separate;
    color: inherit;
    font: inherit;
    outline: 0;
    margin: 0;
    padding: 0;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body,html{
	height:100%;
	font-kerning:normal;
	font-feature-settings: "Kern";
	-webkit-font-kerning: normal;
	-webkit-font-feature-settings: "Kern";
	-webkit-overflow-scrolling: touch;
    position: relative;
    background: #fff;
}

b, strong{
	font-weight: 700;
}

i{
    font-style: italic;
}

.clear {
	clear: both;
}

.only-desktop{
  display: block;
}

.only-mobile{
  display: none;
}

body{
	padding:0;
	margin:0;
	font-family: 'Libre Baskerville', serif;
	font-size:17px;
	font-weight: 400;
	line-height: 34px;
	letter-spacing: .3px;
	font-style: normal;
	background-color: #fff;
	color: #000000;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.noScroll {
  overflow: hidden;
  position: static;
  height: auto;
}

.header{
	width:100%;
	display: flex;
	align-items: center;
	padding: 24px 0;
	border-bottom:1px solid #f6f6f6;
}

.header-mobile{
    display: none;
    width:100%;
    padding: 20px 0;
    align-items: center;
    border-bottom:1px solid #f6f6f6;
}

.menu-mobile{
	float: left;
	width: 26px;
	text-align: left;
    height: 45px;
    display: flex;
    align-items: center;
    background: transparent;
    justify-content: flex-start;
    padding-right: 0;
    z-index: 1000;
}

#burger-menu{
	z-index: 1000;
    width: 26px;
    height: 14px;
	background: transparent;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#burger-menu span{display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    top:0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#burger-menu span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#burger-menu span:nth-child(2) {
        top: 6px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
}

#burger-menu span:nth-child(3) {
        top: 12px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
}

.container{
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.header-top-sticky {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 50%;
  transition: opacity 280ms, -webkit-transform 280ms ease-in-out;
  transition: transform 280ms ease-in-out, opacity 280ms;
  transition: transform 280ms ease-in-out, opacity 280ms, -webkit-transform 280ms ease-in-out;
  display: flex;
  width: 100%;
  align-items: center;
  height: 62px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
  -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
}

.header-top-sticky.show {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%,0);
}

.header-top-sticky.hide {
    -webkit-transform: translate(-50%,-110%);
    transform: translate(-50%, -110%);
}

.header-top-sticky-mobile {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 50%;
  transition: opacity 280ms, -webkit-transform 280ms ease-in-out;
  transition: transform 280ms ease-in-out, opacity 280ms;
  transition: transform 280ms ease-in-out, opacity 280ms, -webkit-transform 280ms ease-in-out;
  display: flex;
  width: 100%;
  align-items: center;
  height: 62px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
  -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
  display: none;
}

.header-top-sticky-mobile.show {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%,0);
}

.header-top-sticky-mobile.hide {
    -webkit-transform: translate(-50%,-110%);
    transform: translate(-50%, -110%);
}

.logo{
    width: 16%;
    float:left;
}

.logo img{
    width:182px;
}

.logo-small{
    width: 16%;
    float:left;
}

.logo-small img{
    width:80px;
}

.logo-mobile{
    width: calc(100vw + 26px);
    float:left;
    margin-left: -20px;
}

.logo-mobile img{
    width:160px;
}

.logo-small-mobile{
    width: calc(100vw + 26px);
    float:left;
    margin-left: -20px;
}

.logo-small-mobile img{
    width:80px;
}

/* ********************************************* */
/*MOBILE MENU ********************************* */
/* ******************************************** */

#navMobile{height:100vh; width:100% !important;position: fixed;z-index:9999; top: 0;right: 0;background-color: #fff;overflow-x: hidden;text-align: center;}
#navMobile ul{width:100%; margin: 0;padding: 0;list-style-type: none;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
#navMobile ul li {font-family: 'Work Sans', sans-serif; text-align:center; padding:16px 20px; color:#000; font-size:18px; font-weight: 600;}
#navMobile li a {color:inherit; text-decoration:none; }
#navMobile li a:hover {color:inherit; text-decoration:none;}

.close{float:left; margin:20px; cursor:pointer;}



.nav{
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    width: 42%;
    font-size: 16px;
    line-height: 1;
    text-transform:none;
    float:left;
}

.nav a:link, .nav a:visited{
    text-decoration: none;
    background-color: transparent;
    color:#000000;
    transition:all .25s linear .05s;
}

.nav a:hover{
    text-decoration: none;
    background-color: transparent;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: .5;
}

.align_left{
    text-align: left;
}

.align_right{
    text-align: right;
}

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

.menu.align_left{
    margin: 0;
}

.menu.align_right{
    margin: 0;
}

.menu.align_left li{
    display: inline-block;
    margin: 0;
    border: 0;
    padding-left: 0px;
    padding-right: 25px;
}

.menu.align_right li{
    display: inline-block;
    margin: 0;
    border: 0;
    padding-left: 25px;
    padding-right: 0px;
}

.content{
    position: relative;
    width: 100%;
    max-width: 1440px;
    padding: 80px 40px 0;
    margin: 0 auto;
    text-align: center;
}

.libro-copertina img{
    width: 100%;
    max-width:500px;
    margin-bottom: 80px;
}

.text{
    font-size: 16px;
    line-height: 32px;
    letter-spacing: .2px;
    margin-bottom: 100px;
}

.text-incipit{
    font-size: 16px;
    line-height: 32px;
    letter-spacing: .2px;
    margin-bottom: 60px;
}

.text-incipit a:link, .text-incipit a:visited{
    font-size: 16px;
    text-decoration: underline;
    color:#000;
}

.text-incipit a:hover{
    font-size: 16px;
    text-decoration: none;
    color:#000;
}

.text h1{
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    letter-spacing: .8px;
    margin-bottom: 40px;
}

.text-2{
    font-size: 16px;
    line-height: 32px;
    letter-spacing: .2px;
    margin-bottom: 40px;
}

.text-2 h1{
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    letter-spacing: .8px;
    margin-bottom: 80px;
}

.hand-write img{
    width: 100%;
    max-width:500px;
    margin-bottom: 120px;
}

.limone-contatti img{
    width: 100%;
    max-width:240px;
    margin-bottom: 80px;
}

.la-giardiniera img{
    width: 100%;
    max-width:500px;
    margin-bottom: 80px;
}

.text span{font-size:24px;}

.text span.autor{
  font-weight:bold; font-size:24px; line-height:52px;
}

.attrezzi img{
    width: 100%;
    max-width:800px;
    margin-bottom: 100px;
    margin-top: 20px;
}

.stagioni img{
    width: 100%;
    max-width:400px;
    margin-bottom: 100px;
    margin-top: 20px;
}

.text.tools{
    line-height: 32px;
}

/* ****************************************************** */
/* POPUP  *********************************************** */
/* **************************************************** */

#credits {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

#credits.show {
  align-items: center;
  display: flex;
  flex-direction: column;
}

#credits .button-close-popup {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  z-index: 20;
  cursor: url(../images/close-white.svg), auto;
}

#credits .credits-container {
  background: #fff;
  padding: 30px 20px 30px;
  width: 500px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  z-index: 30;
  position: relative;
}

#credits .credits-container h1 {
font-family: 'Work Sans', sans-serif;
  font-size: 21px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 15px;
}

#credits .close_ico_x {
  width: 25px;
  height: 25px;
  background: url(../images/close.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 30px;
  border: none;
  padding: 0;
  border: 0;
  opacity: 1;
}

#credits .close_ico_x:hover {
  cursor: pointer;
}

#credits p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 25px;
  text-align: left;
}

#credits a:link, #credits a:visited{
    text-decoration: none;
    background-color: transparent;
    color:#000;
    transition:all .25s linear .05s;
    text-decoration: underline;
}

#credits a:hover{
    text-decoration: none;
    background-color: transparent;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: .5;
    text-decoration: underline;
}



/* ****************************************************** */
/* IL GIARDINO  ***************************************** */
/* **************************************************** */


.il-raccolto img{
    width: 100%;
    max-width:320px;
    margin-bottom: 120px;
}

.square h3 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  letter-spacing: .8px;
  text-align: left;
  padding: 0;
  margin: 0 0 20px;
  position: relative;
}

.square p {
  font-size: 16px;
  line-height: 32px;
	letter-spacing: .3px;
  text-align: left;
  padding: 0;
  margin: 0;
  position: relative;
}

.square a:link, .square a:visited {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  background: #cbdce9;
  color: #000;
  margin-top: 30px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}

.square a:hover {
  background: #fff;
  text-decoration: none;
}

.divider{
  width: 100%;
  height: 80px;
}

.square-block {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
}

.image-left {
  direction: ltr;
}

.image-right {
  direction: rtl;
}

.square {
  width: 50%;
  text-align: left;
  padding: 0;
  position: relative;
  direction: ltr;
}

.w30{
  width: 30%;

}
.w70{
  width:70%;
}

.square img {
  display: block;
  float: left;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

._table {
  display: table;
  /* height: 100%; */
  width: 100%;
}

._cell {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  padding: 0 12%;
}

.right {
  padding: 0 0 0 100px;
}

.left {
  padding: 0 100px 0 0;
}

/* ****************************************************** */
/* PORTFOLIO  ******************************************* */
/* **************************************************** */

.portfolio {
  margin-bottom: 0px;
}

.portfolio img{
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}


.portfolio img.sx-50{
  width: 50%;
  max-width: 50%;
  margin-bottom: 20px;
  padding-right: 10px;
  float:left;
}

.portfolio img.dx-50{
  width: 50%;
  max-width: 50%;
  margin-bottom: 20px;
  padding-left: 10px;
    float:left;
}

.portfolio p{
  font-size: 16px;
  line-height: 30px;
  padding:0;
  text-align: left;
}

.project-divider{
  text-align: center;
}

.project-divider img{
  width: 60px;
  margin: 80px 0 80px;
}

.project-divider-general img{
  width: 80px;
  margin: 70px 0 70px;
}

.sx-info{
  float:left;
  width: 30%;
  padding:40px 30px 0 0;
}

.sx-info p{
  font-size: 13px;
  line-height: 22px;
}

.estratti{
  margin-top: 50px;
}

.estratti p.subtitle{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.estratti p{
  font-size: 14px;
  line-height: 24px;
}

.sx-info .title{
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
}

.dx-info{
  float:left;
  width: 70%;
  padding:40px 0 0 30px;
}

.contatti a:link, .contatti a:visited{
  color:#000;
  text-decoration: underline;
}

.contatti a:hover{
  color:#000;
  text-decoration: none;
}

/* ************************************************************ */
/* PRIVACY – COOKIE  ******************************************* */
/* *********************************************************** */

.privacy {
  margin-bottom: 100px;
}

.privacy p{
  font-size: 14px;
  line-height: 24px;
  padding:0;
  text-align: left;
}

.contatti a:link, .contatti a:visited{
  color:#000;
  text-decoration: underline;
}

.contatti a:hover{
  color:#000;
  text-decoration: none;
}


/* ********************************************* */
/* FOOTER  ************************************* */
/* ******************************************** */

.footer{
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 17px;
    text-align: center;
    width: 100%;
    color: #787878;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    padding: 54px 0 50px;
}

.col.sx a:link, .col.sx a:visited{
    text-decoration: none;
    background-color: transparent;
    color:#787878;
    transition:all .25s linear .05s;
}

.col.sx a:hover{
    text-decoration: none;
    background-color: transparent;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: .5;
}

.footer .col{
    width: 50%;
}

.footer .sx{
    padding: 0;
    text-align: left;
}

.footer .social{
    text-align: right;
}

.footer .social img{
    padding: 0 0 0 6px;
    height: 20px;
    transition:all .25s linear .05s;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    opacity: .3;
}

.footer .social img:hover{
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: .8;
}

.footer-mobile img{
    padding: 0 0 0 6px;
    height: 20px;
    transition:all .25s linear .05s;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    opacity: .3;
}

.footer-mobile img:hover{
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: .8;
}

.footer-mobile{
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 17px;
    text-align: center;
    width: 100%;
    color: #787878;
    background: #f6f6f6;
    padding: 40px 0 40px;
    display: none;
}

/**********************************************/
/* MAX WIDTH 1024PX ****************************/
/*********************************************/

@media screen and (max-width:1024px) {

    .container{
        padding: 0 20px;
    }

    .content{
        max-width: 1440px;
        padding: 80px 20px 0;
    }

    .header-mobile{
        display: block;
    }

	.header{
		display: none;
	}

	.header-top-sticky{
		display: none;
	}

    .header-top-sticky-mobile {
      display: block;
      display: flex;
    }

}

@media screen and (max-width:768px) {

  .only-desktop{
    display: none;
  }

  .only-mobile{
    display: block;
  }

  .content{
      max-width: 1440px;
      padding: 40px 20px 0;
  }

  .il-raccolto img{
      width: 100%;
      max-width:320px;
      margin-bottom: 80px;
  }

  .square h3 {
    font-weight: 700;
    font-size: 21px;
    line-height: 1;
    letter-spacing: .8px;
    text-align: left;
    padding: 0;
    margin: 0 0 20px;
    position: relative;
  }

  .square p {
    font-size: 15px;
    line-height: 27px;
  	letter-spacing: .2px;
    text-align: left;
    padding: 0;
    margin: 0;
    position: relative;
  }

    .square-block{
        flex-direction: column;
    }

    .square{
        width: 100%;
    }

    .w30{
      width: 100%;
    }

    .w70{
      width: 100%;
    }

    ._cell{
        padding:5px 0 0 0;
    }

    .divider{
        height: 50px;
    }

    .text{
        font-size: 15px;
        line-height: 27px;
        letter-spacing: .2px;
        margin-bottom: 100px;
    }

    .text-incipit{
      font-size: 15px;
      line-height: 27px;
      letter-spacing: .2px;
      margin-bottom: 60px;
    }

    .portfolio img{
      width: 100%;
      max-width: 100%;
      margin-bottom: 10px;
    }


    .portfolio img.sx-50{
      width: 50%;
      max-width: 50%;
      margin-bottom: 10px;
      padding-right: 5px;
      float:left;
    }

    .portfolio img.dx-50{
      width: 50%;
      max-width: 50%;
      margin-bottom: 10px;
      padding-left: 5px;
        float:left;
    }

    .portfolio p{
      font-size: 15px;
      line-height: 27px;
      padding:0;
      text-align: left;
    }

    .project-divider img{
      width: 60px;
      margin: 60px 0 60px;
    }

    .project-divider-general img{
      width: 80px;
      margin: 60px 0 60px;
    }

    .sx-info{
      float:left;
      width: 100%;
      padding:20px 0 20px;
    }

    .dx-info{
      float:left;
      width: 100%;
      padding:10px 0 0px;
    }

    .limone-contatti img{
        width: 100%;
        max-width:140px;
        margin-bottom: 50px;
    }

    .il-raccolto img{
        width: 100%;
        max-width:170px;
        margin-bottom: 40px;
    }

    .stagioni img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.text h1 {
    font-weight: 700;
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: .8px;
    margin-bottom: 40px;
}

.text-2{
    font-size: 16px;
    line-height: 32px;
    letter-spacing: .2px;
    margin-bottom: 40px;
}

.text-2 h1{
    font-weight: 700;
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: .8px;
    margin-bottom: 40px;
}

.footer-mobile{
    display: block;
}

.social-mobile{
  text-align:center; margin:0 auto 20px;
}

.txt-mobile{
  text-align:center;
  line-height: 24px;
}

.raccolto{
  margin-bottom:0;
}

h1.raccolto{
  margin-bottom:0;
}

.la-giardiniera img {
    margin-bottom: 40px;
}

.attrezzi img {
    margin-bottom: 50px;
}

.text span {
    font-size: 24px;
    line-height: 1.3;
}

}
