@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Andada+Pro:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 1080px;
  margin: 0 auto;
  padding: 0;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #6C3344;
  display: block;
}
a:hover {
  color: #cccccc;
}

a.button, input.wpcf7-submit {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  color: #ffffff;
  padding: 16px 38px;
  background-color: #6C3344;
  display: inline-block;
  transition: all 500ms;
}
a.button:hover, input.wpcf7-submit:hover {
  color: #f9f9f9;
  background-color: #333333;
  transition: all 500ms;
}

.button.call {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6C3344;
  font-style: italic;
  padding: 10px;
  background-color: #ffffff;
}
.button.call:hover {
  background-color: #f9f9f9;
}
.button.call i {
  font-size: 16px;
  margin-right: 8px;
}

section {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}

.title {
  padding-bottom: 40px;
}
.title .container {
  position: relative;
}
.title .container::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url("../img/spiral.png");
  background-size: cover;
  opacity: 5%;
  position: absolute;
  top: -13px;
  left: -30px;
}
.title h2, .title h1 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.title h3 {
  margin-bottom: 0;
  line-height: 1;
  color: #6C3344;
  font-size: 14px;
  font-weight: 400;
}

.none {
  display: none;
}

body {
  font-family: "Andada Pro", serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow", sans-serif;
  line-height: 1;
  font-weight: 500;
  color: #333333;
}

p {
  font-family: "Andada Pro", serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #707070;
  line-height: 1.5;
}

.hamburger {
  display: none;
}

#hero-home {
  z-index: 1;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-image: url("../img/home-angelo.png");
  background-size: cover;
  background-position: center top;
}
#hero-home img {
  height: 150px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -222px;
}
#hero-home .credits {
  position: absolute;
  bottom: 50px;
  right: 30px;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 7px;
  font-weight: 400;
}
#hero-home .credits i {
  font-style: italic;
}

#header {
  box-shadow: rgba(0, 0, 0, 0.1) 0 3px 6px;
  background-color: #6C3344;
  position: relative;
  z-index: 99;
}
#header #logo img {
  height: 80px;
  width: auto;
  transition: all 500ms;
}
#header #main-menu li {
  margin-right: 30px;
  position: relative;
}
#header #main-menu li:last-of-type {
  margin-right: 0;
}
#header #main-menu a {
  text-transform: uppercase;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
#header #main-menu a:hover::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  z-index: -1;
  background-image: url("../img/spiral.png");
  background-size: cover;
  opacity: 50%;
  position: absolute;
  top: -3px;
  left: -15px;
}
#header #main-menu a:hover {
  color: #cccccc;
}
#header #main-menu .current-menu-item a::before {
  content: "";
  z-index: -1;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../img/spiral.png");
  background-size: cover;
  opacity: 50%;
  position: absolute;
  top: -3px;
  left: -15px;
}
#header #main-menu li:hover .sub-menu {
  height: auto;
  padding: 15px 15px;
  transition: all 500ms;
}
#header #main-menu .sub-menu {
  overflow: hidden;
  transition: all 500ms;
  height: 0;
  background-color: #6C3344;
  padding: 0 15px;
  width: 170px;
  position: absolute;
  top: 20px;
  left: -20px;
}
#header #main-menu .sub-menu li {
  margin-top: 8px;
}
#header #main-menu .sub-menu li a::before {
  opacity: 0;
}
#header #main-menu .wpml-ls-current-language {
  background-color: rgba(230, 230, 230, 0.1);
  padding: 5px;
  border-radius: 3px;
}
#header #main-menu .wpml-ls-current-language .sub-menu {
  top: 35px;
  width: max-content;
  left: 0;
}
#header #main-menu .wpml-ls-current-language:hover {
  background-color: rgba(230, 230, 230, 0.2);
}
#header #main-menu .wpml-ls-current-language:hover a::before {
  opacity: 0;
}
#header #main-menu .wpml-ls-current-language:hover a {
  color: #ffffff;
}
#header.stickymenu {
  position: sticky;
  z-index: 99;
  top: 0;
  width: 100%;
}

#scroll-down {
  position: absolute;
  z-index: 99;
  bottom: 50px;
  left: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  box-shadow: 0 0 0 0 white;
  transform: scale(1);
  animation: pulse 2s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mobile-title {
  display: none;
  padding: 30px 0;
}
#mobile-title h1 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 5px;
}
#mobile-title h6 {
  font-family: "Andada Pro", serif;
  font-size: 14px;
  color: #6C3344;
}

#footer {
  position: relative;
  background-color: #6C3344;
  padding: 25px 0;
  background-image: url("../img/logo-invert-grande.png");
  background-size: auto 100%;
  background-position: 10% center;
  background-repeat: no-repeat;
}
#footer::after {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #6C3344;
  opacity: 75%;
  position: absolute;
  top: 0;
  left: 0;
}
#footer .container {
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
#footer .footer-info {
  width: 50%;
}
#footer .footer-info .flex.box {
  height: 104px;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
}
#footer .footer-info a {
  font-size: 14px;
  color: #ffffff;
}
#footer .footer-info a:hover {
  color: #cccccc;
}
#footer .footer-info p {
  font-size: 14px;
  color: #ffffff;
}
#footer .footer-info h3 {
  display: none;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}
#footer .footer-info h3::after {
  content: "";
  display: block;
  width: 122px;
  height: 1px;
  background-color: #707070;
  margin: 12px 0 20px 0;
}
#footer .footer-info .flex {
  justify-content: flex-start;
  padding: 5px 10px;
}
#footer i {
  color: #cccccc;
  margin-right: 10px;
}

.pie-pagina {
  background-color: #6C3344;
  padding: 11px 0;
  border-top: #cccccc solid 1px;
}
.pie-pagina p {
  text-align: center;
  font-size: 8px;
  color: #cccccc;
}

#introduzione {
  background-color: #ffffff;
  padding: 65px 0 0 0;
  text-align: center;
}
#introduzione h5 {
  display: block;
  margin: 20px auto;
  color: #6C3344;
  font-weight: 200;
  font-size: 20px;
  font-style: italic;
  width: 500px;
  line-height: 1.3;
}
#introduzione h6 {
  color: #6C3344;
  font-weight: 400;
  font-size: 12px;
}

#categorie {
  margin-top: 50px;
  padding-bottom: 90px;
}
#categorie .container {
  flex-wrap: wrap;
  justify-content: center;
}
#categorie .categoria {
  position: relative;
  width: 47%;
  height: 225px;
  background-position: center center;
  background-size: 100% auto;
  margin: 5px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: all 500ms;
}
#categorie .categoria:hover {
  background-size: 110% auto !important;
  transition: all 500ms;
}
#categorie .categoria:hover div {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 40px 0;
  transition: all 500ms;
}
#categorie .categoria div {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 20px 0;
  width: 100%;
  transition: all 500ms;
}
#categorie .categoria div h4 {
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

#valentina {
  background-color: #f9f9f9;
}
#valentina .val {
  height: 520px;
  width: auto;
  border-radius: 10px;
}
#valentina .container {
  justify-content: space-between;
}
#valentina .container .desc {
  width: 435px;
}
#valentina .container .desc h2 {
  color: #6C3344;
  font-size: 200px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  display: block;
  margin-bottom: -90px;
}
#valentina .container .desc h1 {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 30px;
}
#valentina .container .desc p {
  color: #707070;
  font-size: 14px;
}
#valentina .container .desc .storia p {
  margin-bottom: 10px;
}
#valentina .container .desc a.button {
  margin-top: 30px;
}
#valentina .container.pt1 {
  width: 900px;
  margin-bottom: 20px;
}
#valentina .container.pt2 {
  width: 900px;
}

#hero-page {
  margin-top: 30px;
  margin-bottom: 60px;
  width: 100%;
  height: auto;
}
#hero-page .container {
  box-shadow: rgba(0, 0, 0, 0.15) 0 10px 30px;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}
#hero-page .container #citazione {
  width: 100%;
}
#hero-page .container #citazione .size-box {
  margin-left: 10%;
}
#hero-page .container #citazione .size-box .black-box {
  background-color: rgba(51, 51, 51, 0.75);
  padding: 50px 100px;
  display: inline-block;
}
#hero-page .container #citazione .size-box .black-box h1 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 400;
}
#hero-page .container #citazione .size-box .black-box h6 {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}

#hero-page.archiviocoll .container #citazione .size-box .black-box {
  padding: 30px 60px;
}
#hero-page.archiviocoll .container #citazione .size-box .black-box h1 {
  font-size: 30px;
}

#yoast_bc {
  padding: 20px 0 50px 0;
  text-align: right;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
#yoast_bc a {
  color: #707070;
  display: inline;
}
#yoast_bc a:hover {
  color: #6C3344;
}

.tax #yoast_bc {
  padding: 20px 0 20px 0;
}

#grid-gallery {
  padding: 40px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #cccccc;
}
#grid-gallery .container {
  width: 100%;
  height: 200vh;
  display: grid;
  grid-template-columns: 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5%;
  grid-template-rows: 25% 25% 25% 25%;
}
#grid-gallery .item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 6px solid #ffffff;
}
#grid-gallery .item .hover-box {
  background-color: rgba(51, 51, 51, 0.75);
  height: 100%;
  width: 0;
  transition: all 500ms;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
#grid-gallery .item .hover-box h4 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  opacity: 0;
  transition: all 300ms;
  text-align: center;
}
#grid-gallery .item .hover-box h6 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  opacity: 0;
  transition: all 300ms;
}
#grid-gallery .item .hover-box .line {
  width: 80%;
  height: 1px;
  background-color: #ffffff;
  margin: 50px 0;
  opacity: 0;
  transition: all 300ms;
}
#grid-gallery .item:hover .hover-box {
  width: 100%;
  transition: all 500ms;
  padding: 15px;
}
#grid-gallery .item:hover h6, #grid-gallery .item:hover h4, #grid-gallery .item:hover .line {
  opacity: 100%;
  transition: all 2s;
}
#grid-gallery .item:hover .line {
  margin: 10px 0;
  transition: all 2s;
}
#grid-gallery .item.i01 {
  grid-column: 1/4;
  grid-row: 1/2;
}
#grid-gallery .item.i02 {
  grid-column: 4/7;
  grid-row: 1/2;
}
#grid-gallery .item.i03 {
  grid-column: 7/9;
  grid-row: 1/2;
}
#grid-gallery .item.i04 {
  grid-column: 1/3;
  grid-row: 2/3;
}
#grid-gallery .item.i05 {
  grid-column: 3/5;
  grid-row: 2/3;
}
#grid-gallery .item.i06 {
  grid-column: 5/7;
  grid-row: 2/3;
}
#grid-gallery .item.i07 {
  grid-column: 7/9;
  grid-row: 2/3;
}
#grid-gallery .item.i08 {
  grid-column: 1/4;
  grid-row: 3/4;
}
#grid-gallery .item.i09 {
  grid-column: 4/7;
  grid-row: 3/4;
}
#grid-gallery .item.i010 {
  grid-column: 7/9;
  grid-row: 3/4;
}
#grid-gallery .item.i011 {
  grid-column: 1/3;
  grid-row: 4/5;
}
#grid-gallery .item.i012 {
  grid-column: 3/7;
  grid-row: 4/5;
}
#grid-gallery .item.i013 {
  grid-column: 7/9;
  grid-row: 4/5;
}

#collection-menu {
  padding: 50px 0;
}
#collection-menu ul {
  justify-content: flex-start;
}
#collection-menu ul li {
  margin-right: 50px;
}
#collection-menu ul li a {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
#collection-menu ul li.current-menu-item a {
  font-weight: 700;
}

#collection-items {
  padding-bottom: 130px;
}
#collection-items .container {
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
#collection-items .coll-item {
  width: 352px;
  margin: 0 4px;
}
#collection-items .coll-item img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center center;
}
#collection-items .coll-item .text {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 30px;
  width: 80%;
  top: -15px;
  position: relative;
  z-index: 3;
  max-height: 187px;
  overflow: hidden;
  transition: all 300ms;
}
#collection-items .coll-item .text h2 {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
}
#collection-items .coll-item .text h2:hover {
  color: #cccccc;
}
#collection-items .coll-item .text h6 {
  font-size: 12px;
  font-weight: 400;
  color: #6C3344;
  margin-top: 5px;
}
#collection-items .coll-item .text h6:hover {
  color: #cccccc;
}
#collection-items .coll-item .text p {
  font-size: 12px;
  font-weight: 400;
  color: #707070;
  margin-top: 15px;
}
#collection-items .coll-item:hover .text {
  top: -200px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 300ms;
}

#call-contatti {
  z-index: 3;
  margin-bottom: 50px;
}
#call-contatti .background-ctrl {
  background-color: #f9f9f9;
}
#call-contatti .background-ctrl .text-ctrl {
  width: 445px;
  margin: 0 auto;
}
#call-contatti .background-ctrl img {
  height: 170px;
  margin-top: -75px;
  margin-left: -35px;
}
#call-contatti .background-ctrl a.button {
  margin-bottom: -28px;
}
#call-contatti .background-ctrl h2 {
  font-weight: 400;
  font-size: 47px;
  color: #6C3344;
  position: relative;
}
#call-contatti .background-ctrl h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-image: url("../img/spiral.png");
  background-size: cover;
  opacity: 5%;
  position: absolute;
  top: -30px;
  left: -45px;
}
#call-contatti .background-ctrl h6 {
  font-weight: 200;
  font-size: 22px;
  color: #707070;
  line-height: 1;
  margin-bottom: 30px;
}

#caratteristiche {
  padding: 50px 0 30px 0;
}
#caratteristiche .container {
  align-items: flex-start;
}
#caratteristiche .box-text {
  padding-right: 40px;
  width: 60%;
}
#caratteristiche h1 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  margin-left: 25px;
}
#caratteristiche h1::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  background-image: url("../img/spiral.png");
  background-size: cover;
  opacity: 5%;
  position: absolute;
  top: 0;
  left: -25px;
}
#caratteristiche h6 {
  font-size: 14px;
  font-weight: 400;
  color: #6C3344;
  margin-bottom: 25px;
  margin-left: 25px;
}
#caratteristiche .text {
  padding: 30px;
  background-color: #f9f9f9;
}
#caratteristiche .text p {
  font-size: 14px;
}
#caratteristiche .text p.user-disclaimer {
  margin-top: 30px;
  font-weight: 600;
  color: #222222;
}
#caratteristiche .pulsanti {
  margin-top: 60px;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}
#caratteristiche .pulsanti .flex {
  justify-content: flex-start;
  margin-top: 10px;
}
#caratteristiche .pulsanti .button.call {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6C3344;
  font-style: italic;
  padding: 10px;
  background-color: #ffffff;
}
#caratteristiche .pulsanti .button.call:hover {
  background-color: #f9f9f9;
}
#caratteristiche .pulsanti .button.call i {
  font-size: 16px;
  margin-right: 8px;
}
#caratteristiche .box-image {
  height: 450px;
  overflow: hidden;
}
#caratteristiche .box-image a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  transition: 300ms all;
  overflow: hidden;
}
#caratteristiche .box-image a img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 300ms all;
}
#caratteristiche .box-image a:hover img {
  transform: scale(1.1);
  transition: 300ms all;
}

#galleria {
  text-align: center;
}
#galleria .container {
  flex-wrap: wrap;
}
#galleria .container a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
  height: 450px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.2) 0 10px 30px;
}
#galleria .container a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 300ms all;
}
#galleria .container a:hover img {
  transform: scale(1.1);
  transition: 300ms all;
}
#galleria a.button {
  margin: 40px 0 90px 0;
}

#valentina.informazioni .val {
  margin-right: 50px;
}
#valentina.informazioni h5 {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}
#valentina.informazioni p {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
}

.button.prod_single {
  text-transform: uppercase;
}

#valentina.angelo {
  background-color: transparent;
}

#banner-info {
  padding: 80px 0;
  background-image: url("../img/banner-contatti.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 90px;
}
#banner-info::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #333333;
  background: linear-gradient(180deg, #333333 0%, rgba(51, 51, 51, 0.5) 100%);
}
#banner-info .container {
  text-align: center;
  position: relative;
  z-index: 2;
}
#banner-info h2 {
  font-weight: 400;
  color: #707070;
  font-size: 80px;
  margin-bottom: 40px;
}
#banner-info .dati-azienda {
  justify-content: center;
  align-items: flex-start;
}
#banner-info .angelo-info h3 {
  font-size: 30px;
  color: #ffffff;
  font-weight: 500;
}
#banner-info .angelo-info h3::after {
  content: "";
  display: block;
  width: 122px;
  height: 1px;
  background-color: #707070;
  margin: 12px 0 30px 0;
}
#banner-info .angelo-info .flex {
  justify-content: flex-start;
  padding: 10px 0;
}
#banner-info .angelo-info i {
  color: #ffffff;
  margin-right: 15px;
  font-size: 20px;
}
#banner-info .angelo-info a {
  color: #ffffff;
}
#banner-info .angelo-info a:hover {
  color: #707070;
}
#banner-info .angelo-info p {
  color: #ffffff;
}
#banner-info .map {
  overflow: hidden;
  width: 265px;
  height: 265px;
  border-radius: 10px;
  margin-left: 50px;
}
#banner-info .map:hover img {
  transform: scale(1.1);
  transition: all 500ms;
}
#banner-info .map img {
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  transition: all 500ms;
}

#container-servizi {
  z-index: 5;
}
#container-servizi .container {
  width: 800px;
}
#container-servizi .container p {
  margin-bottom: 10px;
}
#container-servizi .box-servizi {
  height: 450px;
  margin-top: 30px;
}
#container-servizi .box-servizi .image {
  width: 50%;
  height: inherit;
}
#container-servizi .box-servizi .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
#container-servizi .box-servizi .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: inherit;
  padding: 30px 45px;
  border-radius: 0 10px 10px 0;
  color: #707070;
  font-style: italic;
  box-shadow: rgba(0, 0, 0, 0.1) 0 3px 6px;
}
#container-servizi .box-servizi .text h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  font-style: normal;
}
#container-servizi .box-servizi .text .desc {
  overflow: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
#container-servizi .box-servizi .text .desc::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}
#container-servizi .box-servizi .pulsanti {
  margin-top: 60px;
  align-items: flex-end;
  font-style: normal;
}
#container-servizi .box-servizi .pulsanti .button.call {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6C3344;
  font-style: italic;
  padding: 10px;
  background-color: #f9f9f9;
}
#container-servizi .box-servizi .pulsanti .button.call:hover {
  background-color: #ffffff;
}
#container-servizi .box-servizi .pulsanti .button.call i {
  font-size: 16px;
  margin-right: 8px;
}

.title.title-services {
  padding-bottom: 0;
}
.title.title-services .container {
  padding: 20px 0;
  margin-bottom: 10px;
  width: 800px;
}
.title.title-services .container::before {
  top: 0;
}

#valentina.informazioni.cont-services {
  margin-top: 40px;
  padding: 40px 0;
  background-color: #f9f9f9;
}
#valentina.informazioni.cont-services .container {
  width: 800px;
}
#valentina.informazioni.cont-services .col {
  padding: 0 80px 0 0;
  width: 60%;
}
#valentina.informazioni.cont-services .col h3 {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}
#valentina.informazioni.cont-services .col a.button.call {
  margin-bottom: 50px;
}
#valentina.informazioni.cont-services .col a.button.call:hover {
  background-color: #6C3344;
  color: #ffffff;
}

#valentina.informazioni .flex p {
  margin-bottom: 0;
}

#valentina.informazioni p.disclaimer {
  font-size: 12px;
  margin: 15px;
  color: #6C3344;
}

.cf7-custom-form {
  width: 100%;
  margin-top: 30px;
}
.cf7-custom-form .wpcf7-form-control-wrap input,
.cf7-custom-form .wpcf7-form-control-wrap textarea {
  width: 100%;
  height: 35px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  padding-left: 18px;
  font-family: "Andada Pro", serif;
  font-size: 16px;
  box-shadow: rgba(0, 6, 0, 0.15) 0 10px 30px;
}
.cf7-custom-form .wpcf7-form-control-wrap input::placeholder,
.cf7-custom-form .wpcf7-form-control-wrap textarea::placeholder {
  color: #cccccc;
}
.cf7-custom-form .wpcf7-form-control-wrap textarea {
  height: 150px;
  max-height: 150px;
  min-height: 150px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  padding-top: 10px;
}
.cf7-custom-form #privacy-info {
  width: 18px;
  height: 18px;
  margin-bottom: 0;
  margin-right: 15px;
}
.cf7-custom-form .flex {
  justify-content: flex-start;
  align-items: center;
}
.cf7-custom-form input.wpcf7-submit {
  width: 200px;
}

#breadcrumbs {
  display: none;
}

.title.categoria-custom {
  padding-top: 40px;
  background-color: #f9f9f9;
}

#page404 {
  background-image: url("../img/sfondo-main.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
}
#page404 .call-oops {
  text-align: center;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
}
#page404 .call-oops h3 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 25px;
}
#page404 .call-oops .button {
  margin-top: 50px;
}

.transition-fade {
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes slideup {
  0% {
    margin-bottom: -120px;
  }
  20% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  80% {
    margin-bottom: 0;
  }
  100% {
    transform: scale(1);
    margin-bottom: 0;
  }
}
#hero-home {
  animation-name: fade;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
#hero-home img {
  margin-bottom: -120px;
  animation-name: slideup;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

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