* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  background-color: #fff;
  overflow: hidden;
}

div {
  display: block;
  position: relative;
}

section {
  position: relative;
}

img {
  height: auto;
  max-width: 100%;
}

h1 {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
}

h2 {
  color: #fff;
  font-size: 36px;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 15px;
}

h3 {
  color: #054b1c;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 4px;
}

h4 {
  font-size: 22px;
  line-height: 1.8;
  color: #533214;
  font-weight: 600;
}

h5 {
  font-size: 22px;
  line-height: 1.8;
  text-transform: uppercase;
  color: #333333;
  font-weight: 700;
}

p {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}

::selection {
  color: #fff;
  background-color: #1dbf7b;
}

/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #eeeeee;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #b1b1b1;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #7e7e7e;
}

/* Utility */

.txt-black {
  color: #333;
  font-weight: 700;
}

.d-none {
  display: none;
}

.d-none-desk {
  display: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.row {
  display: flex;
  align-items: center;

  padding: 100px 20px;
}

.col-left {
  width: 50%;
  padding-right: 40px;
}

.col-right {
  width: 50%;
  padding-left: 40px;
}

.img-bg01 {
  position: absolute;
  left: 0;
  bottom: -300px;
  transform: rotate(33deg);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.leaf-bg01 {
  width: 600px;
}

.img-bg02 {
  position: absolute;
  right: -70px;
  bottom: -30px;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.leaf-bg02 {
  width: 840px;
}

.img-bg03 {
  position: absolute;
  left: 150px;
  bottom: 0;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.leaf-bg03 {
  width: 350px;
}

/* Component */

.ico-leaf {
  width: 40px;
  height: auto;
  margin-right: 10px;
  perspective: 1200px;
  animation: rotate linear infinite 5s;
  transform-style: preserve-3d;
}

@keyframes rotate {
  0% {
    transform: rotateY(0deg) translateY(0);
  }
  50% {
    transform: rotateY(-360deg) translateY(-10px);
  }
  100% {
    transform: rotateY(0deg) translateY(0);
  }
}

.cta:link,
.cta:visited {
  display: inline-block;
  background-color: #0d7e33;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 100px;
  margin-top: 25px;
  transition: all 0.3s;
}

.cta:hover {
  background-color: #229e4c;
}

/* Header */

.header {
  border-top: 10px solid #005f1d;
}

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

  padding: 30px 15px;
}

.header__logo .logo {
  width: 350px;
}

.header__orari {
  padding: 10px 15px;
  border-radius: 10px;
  background-color: rgba(13, 60, 0, 0.07);
  margin-right: 25px;
  width: 370px;
}

.header__orari p {
  font-size: 15px;
  color: #054b1c;
}

.header__telefono {
  width: 370px;
  text-align: right;
}

.header__telefono-btn:link,
.header__telefono-btn:visited {
  display: inline-block;
  background-color: #0d7e33;
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 100px;
  transition: all 0.3s;
}

.header__telefono:hover .header__telefono-btn {
  transform: translateY(-5px);
  background-color: #229e4c;
}

.header__telefono-btn i {
  margin-right: 12px;
}

/* Intro */

.intro {
  display: flex;
  position: relative;

  min-height: 550px;
}

.intro:after {
  content: "";
  width: 100%;
  background-image: url(/image/erba.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 17px;
  filter: drop-shadow(0px -5px 3px rgba(0, 0, 0, 0.1));
  pointer-events: none;
  z-index: 9999;
}

.intro__banner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  background-image: url("/image/intro-slide01.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro__banner-content {
  background-color: #fff;
  width: 500px;
  padding: 40px 30px;
  border-top-left-radius: 10px;
}

.intro__banner h1 {
  color: #333;
  font-size: 34px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 15px;
}

.intro__banner p {
  font-weight: 600;
  color: #505050;
}

.intro__banner p:not(:last-child) {
  margin-bottom: 10px;
}

/* Loghi Prodotti */

.row-loghi-prod {
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 40px;
}

.row-title-prod {
  padding-bottom: 0;
  justify-content: center;
}

.loghi-prodotti-img {
  flex: 1 1 140px;
  max-width: 140px;
}

.loghi-prodotti-img img {
  backface-visibility: hidden;
  transition: all 0.5s;
}

.loghi-prodotti-img:hover img {
  filter: grayscale(1);
  transform: scale(1.1);
}

/* Prodotti */

.prodotti01 .row-title-prod {
  padding: 0px 20px;
}

.prod-list {
  padding-left: 50px;
}

.prod-list-item {
  list-style: none;
  margin-bottom: 7px;
}

.prod-list-item:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: #36d592;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 2px;
}

.row-prod-list {
  padding: 60px 20px;
}

/* Slider Prodotti */

.swiper {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.swiper-slide {
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  color: #00cc76;
  background: #fff;
  border-radius: 100px;
  width: 50px;
  height: 50px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px;
  font-weight: 600;
}

.swiper-button-next:after {
  margin-left: 3px;
}

.swiper-button-prev:after {
  margin-right: 3px;
}

.slider-prodotti-img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.fancybox__thumbs {
  display: none;
}

.fancybox__nav {
  display: none;
}

.prodotti-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

/* Legna */

.legna .row {
  padding-top: 20px;
  padding-bottom: 60px;
}

.legna-check {
  font-size: 18px;
  margin-right: 20px;
}

.cta i {
  margin-right: 10px;
}

.legna p {
  margin-bottom: 20px;
}

.legna h5 {
  margin-top: 30px;
}

/* ICO */

.row-ico {
  justify-content: space-between;
  gap: 30px;
}

.ico {
  flex: 1 1 120px;
  max-width: 120px;
  transition: all 0.3s;
}

.ico:hover {
  transform: translateY(-10px);
}

.ico .st0 {
  transition: all 0.3s;
}

.ico:nth-child(odd):hover .st0 {
  fill: #6c421f;
}

.ico:nth-child(even):hover .st0 {
  fill: #0a6d2b;
}

/* Gallery */

.row-gallery {
  justify-content: space-between;
}

.row-gallery + .row-gallery {
  padding-top: 0;
}

.gallery-img {
  flex: 1 1 400px;
  max-width: 400px;
}

.gallery-img + .gallery-img {
  margin-left: 60px;
}

/* Footer */

.footer-top {
  background-color: rgb(63, 63, 63);
}

.footer-top .row {
  padding: 40px 20px;
  align-items: flex-start;
}

.footer-top h3 {
  color: #fff;
}

.footer-top p {
  color: #fff;
  font-size: 15px;
}

.footer-top .ico-footer {
  font-size: 16px;
  margin-right: 10px;
}

.footer-bottom {
  background-color: #333;
}

.footer-bottom .row {
  justify-content: center;
  padding: 10px 20px;
}

.footer-bottom .row p {
  font-size: 14px;
  color: #fff;
}

.footer .row a:link,
.footer .row a:visited {
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: all 0.3s;
}

.footer .row a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #25c25a;
  transform-origin: left center;
  transform: scaleX(0);
  transition: all 0.3s;
}

.footer .row a:hover {
  color: #25c25a;
}

.footer .row a:hover:after {
  transform: scaleX(1);
}

/* Privacy */

.row-content-privacy {
  padding: 40px 20px 100px;
}

/* Banner Cookies */

.cc-color-override-1983917449.cc-window {
  z-index: 9999999;
}

/* Responsive */

@media only screen and (max-width: 1300px) {
  h2 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 1200px) {
  .header__logo .logo {
    width: 280px;
  }

  .header__orari p {
    font-size: 13px;
  }

  h2 {
    font-size: 30px;
  }

  .intro__banner h1 {
    font-size: 30px;
  }

  .ico-leaf {
    width: 30px;
  }

  .header__orari {
    width: 330px;
  }

  .header__telefono {
    width: 330px;
  }
}

@media only screen and (max-width: 1100px) {
  .col-right {
    padding-left: 20px;
  }

  .col-left {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1000px) {
  .header__orari {
    display: none;
  }

  .footer {
    margin-bottom: 46px;
  }

  .header__telefono {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
  }

  .header__telefono-btn:link,
  .header__telefono-btn:visited {
    width: 100%;
    border-radius: 0;
    text-align: center;
    padding: 9px 20px;
  }

  .header__container {
    justify-content: center;
    padding: 20px 15px;
  }

  .intro__banner {
    flex-direction: column;
  }

  .intro {
    min-height: auto;
  }

  .intro__banner-content {
    width: 100%;
    margin-right: 0;
    border-radius: 0px;
    box-shadow: none;
    background-color: #e6e6e6;
    text-align: center;
  }

  .intro__banner-img-mobile {
    line-height: 0;
    height: 350px;
    width: 100%;
  }

  .intro__banner-img-mobile img {
    object-fit: cover;
    object-position: center left;
    height: 100%;
    width: 100%;
  }

  .intro__banner-img-mobile {
    line-height: 0;
  }

  .d-none-desk {
    display: block;
  }

  .row:not(.row-loghi-prod) {
    flex-direction: column;
  }

  .row {
    padding: 60px 20px;
  }

  .row-loghi-prod {
    padding: 30px 20px;
  }

  .row-prod-list {
    padding: 40px 20px;
  }

  .col-right {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .col-left {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }

  .prod-list {
    padding-left: 0px;
  }

  .d-none-mob {
    display: none;
  }

  .prodotti01 .col-left,
  .legna .col-left {
    margin-bottom: 50px;
  }

  .prodotti02 .row {
    flex-direction: column-reverse;
  }

  .prodotti02 .col-right {
    margin-bottom: 50px;
  }

  .row-title-prod {
    padding-bottom: 0;
  }

  .footer-top .col-left {
    margin-bottom: 30px;
  }

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

  .header__telefono:hover .header__telefono-btn {
    transform: translateY(0);
  }
}

@media only screen and (max-width: 600px) {
  .intro__banner-img-mobile {
    height: 250px;
  }

  .intro__banner h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 26px;
  }

  h5 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media only screen and (max-width: 480px) {
  .header__logo .logo {
    width: 240px;
  }

  .swiper {
    height: 300px;
  }

  .prodotti-img {
    height: 300px;
  }
}
