@font-face {
  font-family: "purplee";
  src: url(../assets/vendor/boxicons/fonts/Colour\ Me\ Purple.ttf);
}

@font-face {
  font-family: "swash";
  src: url(../assets/vendor/boxicons/fonts/Adlery-Swash-trial.ttf);
}

@font-face {
  font-family: "courier";
  src: url(../assets/vendor/boxicons/fonts/Courier-PS-Regular.ttf);
}

@font-face {
  font-family: "writer";
  src: url(../assets/vendor/boxicons/fonts/atwriter.ttf);
}

@font-face {
  font-family: "wrong";
  src: url(../assets/vendor/boxicons/fonts/typwrng.ttf);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

body {
  height: 1000px;
  position: relative;
}

#footer {
  bottom: 0;
}

.home-content {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  height: 60px;
  text-align: center;
}

#video-bg video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.3);
}

@media (min-aspect-ratio: 16/9) {
  #video-bg {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  #video-bg {
    width: auto;
    height: 100%;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  color: #fff;
  position: fixed;
  z-index: 99;
  width: 100%;
  transition: all 0.5s;
  font-family: "purplee";
  font-size: 1.3em;
}

.header-scrolled {
  background-color: black;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.links {
  display: flex;
  justify-content: space-around;
  width: 45%;
}

.links li {
  list-style: none;
}

.links a {
  color: #fff;
  font-family: "purplee";
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 18px;
  /*text-shadow: 5px 5px 5px rgba(0, 0, 0, 1);*/
}

.link:hover {
  color: #f1bd1e;
}

a.active {
  color: #f1bd1e;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 28px;
  height: 3px;
  background-color: #f1bd1e;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Responsiveness */

@media screen and (max-width: 1024px) {
  .links {
    width: 60%;
  }

  .home-content p {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 1vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }

  .links li {
    opacity: 0;
  }

  .burger {
    display: block;
  }

  .header-scrolled {
    display: none;
  }

  .back-to-top img {
    height: 80px;
  }
}

.nav-active {
  transform: translateX(0%);
}

@media screen and(max-width:585px) {
  .back-to-top img {
    height: 30px;
  }
}

@media screen and (max-width: 480px) {
  .home-content p {
    font-size: 19px;
    margin: 5px 0 40px 0;
    margin-top: 300px;
  }
}

/* adding the animation */
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/*Adding a toggle class for mobile closing burger */
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/*    */

.home-content h1 {
  color: cyan;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-size: 40px;
}

.home-content p {
  font-family: "purplee";
  font-size: 40px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  margin: 5px 0 40px 0;
  margin-top: 550px;
}

.start-content p {
  font-family: "purplee";
  font-size: 40px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  margin: 5px 0 40px 0;
  margin-top: 550px;
}

.home-content input[type="button"] {
  font-family: "purplee";
  text-transform: uppercase;
  letter-spacing: 5px;
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: 0.4s;
}

.home-content input[type="button"]:hover {
  border: 1px solid #f1bd1e;
  /* background-color: rgba(0, 0, 0, 0.5); */
  background-color: rgb(205, 205, 133);
  color: black;
  font-weight: bold;
}

.home-content input[type="button"]:active {
  color: black;
  background-color: #f1bd1e;
}

.text-center {
  text-align: center !important;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Homepage arrow setup */
.arrow {
  display: block;
  height: 13px;
  width: 13px;
  border: 11px solid transparent;
  color: #f1bd1e;
  transform: rotate(45deg);
  position: relative;
  margin: 25vh auto;
  margin-top: 20px;
}

.arrow:after,
.arrow:before {
  content: "";
  display: block;
  height: inherit;
  width: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.arrow:after {
  border-bottom: 3px solid #f1bd1e;
  border-right: 3px solid #f1bd1e;
  top: 0;
  left: 0;
  opacity: 1;
  animation: bottom-arrow 1.65s infinite;
}

@keyframes bottom-arrow {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  45% {
    opacity: 0;
    transform: translate(12px, 12px);
  }
  46% {
    opacity: 0;
    transform: translate(-16px, -16px);
  }
  90% {
    opacity: 1;
    transform: translate(-6px, -6px);
  }
  100% {
    opacity: 1;
    transform: translate(-6px, -6px);
  }
}

.arrow:before {
  top: 0;
  left: 0;
  border-bottom: 3px solid #f1bd1e;
  border-right: 3px solid #f1bd1e;
  animation: top-arrow 1.65s infinite;
}

@keyframes top-arrow {
  0% {
    transform: translate(-6px, -6px);
  }
  35% {
    transform: translate(0, 0);
  }
  90% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/*  Scroll to top button */
.contentDiv {
  width: 300px;
  height: 1000px;
}

button.back-to-top {
  margin: 0 !important;
  padding: 0 !important;
  background: #f1bd1e;
  height: 0px;
  width: 0px;
  overflow: hidden;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  color: transparent;
  clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
  bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.4s;
}
button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
  outline: 0 !important;
}
button.back-to-top::before,
button.back-to-top::after {
  content: "";
  display: block;
  /*vertical-align: middle;*/
  border-bottom: solid 10px #f1bd1e;
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 18px auto 0;
  width: 0;
  border-radius: 20px;
  visibility: hidden;
}
button.back-to-top.show::after,
button.back-to-top.show::before {
  visibility: visible;
}
button.back-to-top::after {
  border-bottom-color: #fff;
  position: relative;
  top: -24px;
}
button.back-to-top.show {
  display: block;
  background: #fff;
  color: #f1bd1e;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}
button.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

.col {
  display: inline-block;
  width: 16%;
}

.text-align {
  text-align: center !important;
}

.text1 {
  font-size: 18px;
  font-weight: 600;
  text-align: center !important;
}

.title1 {
  width: 100%;
  min-height: 60vh;
  color: #fff;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  font-family: "purplee";
  font-size: 40px;
  letter-spacing: 3px;
  display: grid;
  place-items: center;
  height: 60px;
  text-align: center;
}

.title2 {
  width: 100%;
  min-height: 60vh;
  color: black;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  font-family: "purplee";
  font-size: 40px;
  letter-spacing: 3px;
  display: grid;
  place-items: center;
  height: 60px;
  text-align: center;
}

.title3 {
  width: 100%;
  color: #fff;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  font-family: "purplee";
  font-size: 3px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  height: 60px;
  text-align: center;
}

.title4 {
  width: 100%;
  color: black;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  font-family: "purplee";
  font-size: 33px;
  letter-spacing: 3px;
  display: grid;
  place-items: center;
  height: 60px;
  text-align: center;
}

.title5 {
  width: 100%;
  min-height: 40vh;
  color: black;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  font-family: "purplee";
  font-size: 38px;
  letter-spacing: 3px;
  display: grid;
  place-items: center;
  height: 40px;
  text-align: center;
}

.title6 {
  width: 100%;
  min-height: 60vh;
  color: black;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  font-family: "purplee";
  font-size: 40px;
  letter-spacing: 3px;
  display: grid;
  place-items: center;
  height: 60px;
  text-align: center;
  padding-bottom: -2px;
}

.title7 {
  width: 100%;
  color: black;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  font-family: "purplee";
  font-size: 33px;
  letter-spacing: 3px;
  display: grid;

  height: 60px;
  text-align: justify;
}

.title8 {
  width: 100%;
  color: black;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  font-family: "purplee";
  font-size: 24px;
  letter-spacing: 3px;
  display: grid;

  height: 50px;
  text-align: justify;
}

.title9 {
  width: 100%;
  color: black;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  font-family: "purplee";
  font-size: 24px;
  letter-spacing: 3px;
  display: grid;
  height: 60px;
  text-align: justify;
}
.cascade {
  color: #fff;
  font-family: "courier";
  font-weight: bolder;
  font-size: 22px;
}

.cascade2 {
  color: black;
  font-family: "courier";
  font-weight: bolder;
  font-size: 22px;
}

.cascade3 {
  color: black;
  font-family: "courier";
  font-weight: 800;
  font-size: 30px;
}

.saaz {
  color: #fff;
  font-family: "courier";
  font-size: 16px;
  text-align: justify;
}

.saaz2 {
  color: black;
  font-family: "courier";
  font-size: 16px;
  text-align: justify;
}

.cheese {
  color: #fff;
  font-family: "courier";
  font-size: 18px;
  font-weight: 600;
  text-align: justify;
}

.d-flex {
  display: flex !important;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #fff center center no-repeat;
  background-size: cover;
}

#hero span.agricola {
  background: linear-gradient(to left, #f1bd1e, #f9dd94 100%);
  background-position: 0 100%;
  background-size: 100% 2px;
  background-repeat: repeat-x;
}

#pero span.agricola {
  background: linear-gradient(to left, #f1bd1e, #f9dd94 100%);
  background-position: 0 100%;
  background-size: 100% 2px;
  background-repeat: repeat-x;
}

#special span.agricola {
  background: linear-gradient(to left, #f1bd1e, #f9dd94 100%);
  background-position: 0 100%;
  background-size: 100% 2px;
  background-repeat: repeat-x;
}

.birrettina span.agricola {
  background: linear-gradient(to left, #f1bd1e, #f9dd94 100%);
  background-position: 0 100%;
  background-size: 100% 2px;
  background-repeat: repeat-x;
}

#feliz span.agricola {
  background: linear-gradient(to left, #f1bd1e, #f9dd94 100%);
  background-position: 0 100%;
  background-size: 100% 2px;
  background-repeat: repeat-x;
}

#footer span.agricola {
  background: linear-gradient(to left, #f1bd1e, #f9dd94 100%);
  background-position: 0 100%;
  background-size: 100% 2px;
  background-repeat: repeat-x;
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#focus .container p {
  margin-top: -2px;
}

.plutonio {
  background: url(/src/img/paper_BG.jpg);
}

#hero h1 {
  margin: 0;
  font-family: "purplee";
  font-size: 45px;
  font-weight: 900;
  line-height: 64px;
  color: black;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  letter-spacing: 3px;
}

#hero .typewrite p {
  font-family: "purplee";
  font-size: 26px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  #hero .typewrite {
    font-size: 26px;
    text-align: center !important;
  }
  #hero .typewrite h1 {
    text-align: center !important;
  }

  #hero h2 {
    font-size: 15px;
    text-align: justify;
  }
}

#hero h2 {
  color: black;
  margin: 10px 0 0 0;
  font-family: "courier";
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 575px) {
  #hero .typewrite h1 {
    text-align: center !important;
  }
}

#hero .btn-get-started-one {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  border: 1px solid black;
  text-align: center;
}

#hero .btn-get-started-two {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  background-color: #f1bd1e;
  text-align: center;
}

#hero .btn-get-started-three {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background-color: #21694d;
  text-align: center;
}

#hero .btn-get-started-four {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  border: 1px solid black;
  text-align: center;
}

#hero .btn-get-started-one:hover {
  background: black;
  color: #fff;
}

#hero .btn-get-started-two:hover {
  background: #21694d;
  border: #21694d;
  color: #fff;
}

#hero .btn-get-started-three:hover {
  background: black;
  color: #fff;
}

#hero .btn-get-started-four:hover {
  background: black;
  color: #fff;
}

#hero .btn-get-started a {
  position: absolute;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#bubi .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#bubi .shop-img:hover {
  transition: transform 0.5s ease;
  transform: scale(1.5);
}
#bubi .animated2 {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  animation-direction: alternate;
}

@media (max-width: 575px) {
  #bubi .animated {
    animation: none !important;
  }

  #bubi .animated2 {
    animation: none !important;
  }

  #bubi .shop-img:hover {
    transition: none !important;
    transform: none !important;
  }

  #prod h2 {
    font-size: 34px;
  }
}

#hero .shaked {
  animation: vertical-shaking 0.45s linear infinite;
  height: 400;
}

@keyframes vertical-shaking {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }

  #hero .animated {
    animation: none;
    height: 500;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 575px), (max-height: 600px) {
  #hero {
    height: auto;
  }

  #hero .shaked {
    height: 350;
    width: 350;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Hero typing effect ------------------------------------------ */
.typewrite {
  width: 22ch;
  animation: typing 2s steps(22), blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 1px solid;
  font-family: monospace;
  font-size: 2em;
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/*  --------------------------------------------------------------------------  */

.beer-section h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-family: "courier";
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

#special {
  background: url(./src/img/wood_BG.jpg);
}

.my-3 h4 {
  color: fff;
}

.birretta {
  color: #fff;
  text-align: justify;
}

.birretta2 {
  color: black;
}

.birrona {
  color: black;
  text-align: justify;
}

.birrettina {
  font-family: "courier";
  font-size: 17px;
  color: black;
  text-align: justify;
}

.d-flex .birrettina h2 {
  font-family: "courier";
  font-size: 17px;
  color: black;
  text-align: justify;
}

#
  
  /* Section Cosa rende la nostra birra così buona  --------------------------------------*/
  
.page-section {
  background: url(./src/img/wood_BG.jpg);
}

.page-section {
  padding: 6rem 0;
}
.page-section h2.section-heading,
.page-section .section-heading.h2 {
  font-size: 2.3rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
.page-section h3.section-subheading,
.page-section .section-subheading.h3 {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  font-family: "courier";
  margin-bottom: 4rem;
}

.section-heading {
  color: #fff;
}

.section-heading2 {
  color: black;
  text-align: justify;
}

@media screen and (max-width: 585px) {
  h2.section-heading2 {
    font-size: 40px;
    text-align: justify;
  }
}

.page-section {
  padding: 6rem 0;
}
.page-section h2.section-heading,
.page-section .section-heading.h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
.page-section h3.section-subheading,
.page-section .section-subheading.h3 {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin-bottom: 4rem;
}

.my-3 {
  font-family: "purplee";
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-3black {
  font-family: "purplee";
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: black;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.birretta {
  color: #fff;
}

.hover-item {
  transition: 0.3s;
}
.hover-item:hover {
  transform: translate(0, -10px);
}

.page-section2 .circle div:after {
  background-image: url(./src/img/yellow-circle.png);
  width: 180px;
  height: 180px;
  position: absolute;
}

/* ------------------------------------------------------------- */

/*---- Sezione le fasi ---------------------------------------------------- */

.page-section2 {
  background: url(./src/img/paper_BG.jpg);
}

.col-lg-3 {
  flex: 0 0 auto;
  width: 25%;
}

.section-bg {
  background-color: #21694d;
}

/*------------------------------------------------------------------------------------*/

/* ---------------------------------------------------------------------------------- */
/*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(53, 53, 52, 0.8), rgba(22, 22, 20, 0.8)),
    url(./src/img/hop_parallax.jpg) center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-family: "courier";
  font-size: 18px;
  font-weight: 500;
}

.call-to-action h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 700;
}

.call-to-action h2 {
  text-align: justify;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .btn-get-started-one {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  border: 1px solid black;
  text-align: center;
}

.call-to-action .btn-get-started-two {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  background-color: #f1bd1e;
  text-align: center;
}

.call-to-action .btn-get-started-one:hover {
  background: black;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .btn-get-started-two:hover {
  background: #21694d;
  border: #21694d;
  color: #fff;
}

.call-to-action .btn-get-started a {
  position: absolute;
}

.call-to-action .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
/* ----- End call to action section -------------------------------------------------------------------- */

/* ---- Our Beers Page: ---------------------------------- */
.beerz {
  background: url(./src/img/beers_BG.jpg);
}

.beerz-content p {
  font-family: "purplee";
  /*font-size: 45px;*/
  font-size: 36px;
  letter-spacing: 2px;
  color: #f1bd1e;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 1.9);
  margin: 5px 0 40px 0;
  margin-top: 550px;
}

.gioia-content p {
  font-family: "purplee";
  /*font-size: 45px;*/
  font-size: 36px;
  letter-spacing: 2px;
  color: #f1bd1e;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 1.9);
  margin: 5px 0 40px 0;
  margin-top: 550px;
}

.fredda-content p {
  font-family: "purplee";
  /*font-size: 45px;*/
  font-size: 36px;
  letter-spacing: 2px;
  color: #f1bd1e;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 1.9);
  margin: 5px 0 40px 0;
  margin-top: 550px;
}

.about-content p {
  font-family: "purplee";
  /*font-size: 45px;*/
  font-size: 36px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 1.9);
  margin: 5px 0 40px 0;
  margin-top: 550px;
}

.start-content p {
  font-family: "purplee";
  /*font-size: 45px;*/
  font-size: 36px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 1.9);
  margin: 5px 0 40px 0;
  margin-top: 550px;
}

.contact-content p {
  font-family: "purplee";
  /*font-size: 45px;*/
  font-size: 36px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 1.9);
  margin: 5px 0 40px 0;
  margin-top: 550px;
}

@media screen and (max-width: 480px) and (min-width: 320px) {
  .start-content p {
    font-size: 36px;
  }

  .about-content p {
    font-size: 36px;
  }

  .contact-content p {
    font-size: 36px;
  }

  .gioia-content p {
    font-size: 36px;
  }

  .fredda-content p {
    font-size: 36px;
  }

  .beerz-content p {
    font-size: 36px;
  }
}

.focus-content h2 {
  font-size: 16px;
  text-align: center !important;
}

@media screen and (max-width: 585px) {
  .focus-content h3 {
    font-size: 30px;
    text-align: justify;
  }
}

.pils .btn-get-started-one {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  background-color: #fff;
  border: 1px solid black;
  text-align: center;
}

.pils .btn-get-started-two {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  background-color: #f1bd1e;
  text-align: center;
}

.pils .btn-get-started-one:hover {
  background: black;
  border: 2px solid #fff;
  color: #fff;
}

.pils .btn-get-started-two:hover {
  background: #21694d;
  border: #21694d;
  color: #fff;
}

/* ----------------------------------------------------------------------------------- */

/*--- About page -------------------------------------------------- */
.identity {
  background-image: url(./src/img/orzo.png);
  filter: brightness(0.7);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.identity .link a {
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

/*--- Contact page --------------------------------------------------*/

.contactz {
  /*background: url(./src/img/home.jpg);*/
  background-color: black;
}

/*--- Shop Page ----------------------------------------------*/

.shop {
  /*background: url(./src/img/SLIDE_04-1024x533.jpg);*/
  background-color: black;
  /*background-size: cover; */
}

/*---------------------------------------------------------------------*/

.gioia {
  background: url(./src/img/paper_BG.jpg);
}

.beverina {
  background: url(./src/img/paper_BG.jpg);
}

/*-------------------------------------------------------------- */
#terms {
  background: url(./src/img/paper_BG.jpg);
}

.terms-content h2 {
  color: black;
}
.terms-content p {
  color: black;
}

/* Footer  --------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 15px;
  background-color: black;
  background-size: cover;
}

#footer .tera-name {
  color: #f1bd1e;
  font-size: 28px;
}

#footer .tera-address {
  color: #fff;
}

.footer-contact .tera-title p {
  font-family: "courier";
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f1bd1e !important;
}

#footer .tera-text {
  text-align: justify;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact h3 {
  margin-bottom: 30px;
  font-family: "purplee";
}
#footer .footer-top .footer-contact p {
  margin-bottom: 30px;
  font-family: "courier";
}

#footer .footer-top .footer-contact .tera-name h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  color: #f1bd1e;
}

#footer .footer-top .footer-contact .tera-address p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "courier";
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .container .copyright-wrap .d-md-flex .py-4 .copywright div {
  font-family: "purplee";
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #f1bd1e;
  color: black;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .copyright-wrap {
  border-top: 1px solid #fff !important;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: black;
  color: #f1bd1e;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  #footer .copywright a {
    display: center;
  }
}

#footer div.container {
  font-family: "writer";
  letter-spacing: 1px;
}

#footer a.policy:hover {
  color: #f1bd1e;
}

#footer a.condit:hover {
  color: #f1bd1e;
}

#footer a.mail:hover {
  color: #f1bd1e;
  text-decoration: underline;
}
/* ----------------------------------------------------------------------------- */

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  
  
  /*--------------------------------------------------------------
  # About Parallax section
  --------------------------------------------------------------*/
.parallax {
  background: url("./src/img/hop_parallax-1024x592.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.parallax:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.parallax .parallax-img {
  position: relative;
  transition: 0.5s;
}

.parallax .parallax-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.parallax .parallax-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #cda45e;
  border-top: 5px solid #cda45e;
  transition: 0.5s;
}

.parallax .parallax-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #cda45e;
  border-bottom: 5px solid #cda45e;
  transition: 0.5s;
}

.parallax .parallax-img:hover {
  transform: scale(1.03);
}

.parallax .parallax-img:hover::before {
  left: 10px;
  top: 10px;
}

.parallax .parallax-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.parallax .content {
  position: relative;
}

.parallax .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.parallax .content ul {
  list-style: none;
  padding: 0;
}

.parallax .content ul li {
  padding-bottom: 10px;
}

.parallax .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.parallax .content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .parallax {
    background-attachment: fixed;
  }
}

/* --------------------------------------------------
  
  /*--------------------------------------------------------------
  # Services List Section
  --------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
  color: var(--color-secondary);
}

.services-list .service-item .title a:hover {
  color: #38618e;
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

section {
  overflow: hidden;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}

/*----------------------------service list end --------------------------------------
  
  
  /*-- shop page hoy --*/
.wrapper {
  width: 100%;
  height: 100%;
}
.box {
  display: flex;
  width: 950px;
  margin: 140px auto;
}
.single-box {
  width: 500px;
  background: #fff;
  margin-right: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
}
.single-box:last-child {
  margin-right: 0;
}
.single-box .img img {
  width: 500px;
  display: center;
  margin-bottom: 10px;
}

.single-box .price {
  font-weight: 600;
  font-size: 45px;
}

.shop-img {
  display: center;
  top: -25%;
  left: 20%;
}

.single-box h3 {
  font-family: "purplee";
  font-weight: 00;
  font-size: 40px;
  margin-top: 25%;
  margin-bottom: 15px;
}

.single-box p {
  font-family: "courier";
  font-weight: 500;
  font-size: 18px;
  text-align: justify;
  line-height: 1.4;
}

.price h5 {
  line-height: 1.6;
  font-family: "purplee";
  font-size: 8px;
  letter-spacing: 2px;
  text-align: center;
}

.deleted span {
  line-height: 1.6;
  font-family: "purplee";
  font-size: 8px;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: line-through;
}

.single-box a {
  background: #f1bd1e;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .box {
    width: 100%;
    flex-direction: column;
  }
  .single-box {
    margin-right: 0;
    width: 100%;
    margin-bottom: 110px;
  }
}

/*-- cookies --------------------------*/
.cookie-wrapper {
  position: absolute;
  bottom: 30px;
  left: 30px;
  max-width: 365px;
  background: #fff;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.cookie-wrapper.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
::selection {
  color: #fff;
  background: #fcba7f;
}
.cookie-wrapper img {
  max-width: 90px;
}
.cookie-content header {
  font-size: 25px;
  font-weight: 600;
}
.cookie-content {
  margin-top: 10px;
}
.cookie-content p {
  font-family: "courier";
  color: #2b2929;
  text-align: center;
  margin: 5px 0 20px 0;
}
.cookie-content .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons button {
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  font-family: "purplee";
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background: #f1bd1e;
  cursor: pointer;
  transition: all 0.3s ease;
}
.buttons button:hover {
  background-color: black;
  transform: scale(0.97);
}
.buttons .item {
  margin: 0 10px;
}
.buttons a {
  font-family: "purplee";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #f1bd1e;
}

.buttons a:hover {
  color: black;
}

#cookiePopup header {
  font-family: "purplee";
}

/*contact form ---------------------------------------------------------------*/

.contact-form {
  background: #fff;
  margin-top: 10%;
  margin-bottom: 5%;
  width: 70%;
}
.contact-form .form-control {
  border-radius: 1rem;
}
.contact-image {
  text-align: center;
}
.contact-image img {
  border-radius: 6rem;
  width: 11%;
  margin-top: -3%;
  transform: rotate(29deg);
}
.contact-form form {
  padding: 14%;
}
.contact-form form .row {
  margin-bottom: -7%;
}
.contact-form h3 {
  font-family: "purplee";
  margin-bottom: 8%;
  margin-top: -10%;
  text-align: center;
  color: black;
}

.contact-form input {
  font-family: "courier";
}

.form-group {
  font-family: "courier";
}

.contact-form .btnContact {
  width: 50%;
  border: none;
  font-family: "purplee";
  letter-spacing: 3px;
  font-size: 18px;
  padding: 2%;
  background: #f1bd1e;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.contact-form .btnContact:hover {
  background-color: black;
}

.btnContactSubmit {
  width: 50%;
  border-radius: 1rem;
  padding: 1.5%;
  color: #fff;
  background-color: #2d694c;
  border: none;
  cursor: pointer;
}

/*-- end of contact form ---------------------------------------------*/

/*-- provacy policy --------------------------------------------------*/
.privacyy {
  background-image: url(./src/img/wood_BG.jpg);
  /*filter: brightness(0.8);
    background-color: rgba(0, 0, 0, 0.5);*/
}

.privacyy h3 {
  font-family: "purplee";
  font-size: 30px;
  color: black;
}

div.yeah {
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 30px;
  text-align: center;
}

/* ---------------------------------------- *
  
  /* --- prova 27.07 ------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Muli:400,400i,700,700i");

.shell {
  padding: 80px 0;
}
.wsk-cp-product {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  position: relative;
  margin: 20px auto;
}
.wsk-cp-img {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -o-transform: translate(-50%);
  -khtml-transform: translate(-50%);
  width: 100%;
  padding: 15px;
  transition: all 0.2s ease-in-out;
}
.wsk-cp-img img {
  width: 100%;
  transition: all 0.2s ease-in-out;
  border-radius: 6px;
}
.wsk-cp-product:hover .wsk-cp-img {
  top: -40px;
}
.wsk-cp-product:hover .wsk-cp-img img {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
.wsk-cp-text {
  padding-top: 150%;
}
.wsk-cp-text .category {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 5px;
  margin-bottom: 45px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.wsk-cp-text .category > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
}
.wsk-cp-text .category > span {
  padding: 12px 30px;
  border: 1px solid #313131;
  background: #212121;
  color: #fff;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  border-radius: 27px;
  transition: all 0.05s ease-in-out;
}
.wsk-cp-product:hover .wsk-cp-text .category > span {
  border-color: #ddd;
  box-shadow: none;
  padding: 11px 28px;
}
.wsk-cp-product:hover .wsk-cp-text .category {
  margin-top: 0px;
}
.wsk-cp-text .title-product {
  text-align: center;
}
.wsk-cp-text .title-product h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.wsk-cp-text .description-prod p {
  margin: 0;
}
/* Truncate */
.wsk-cp-text .description-prod {
  text-align: center;
  width: 100%;
  height: 62px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}
.card-footer {
  padding: 25px 0 5px;
  border-top: 1px solid #ddd;
}
.card-footer:after,
.card-footer:before {
  content: "";
  display: table;
}
.card-footer:after {
  clear: both;
}

.card-footer .wcf-left {
  float: left;
}

.card-footer .wcf-right {
  float: right;
}

.price {
  font-size: 18px;
  font-weight: bold;
}

a.buy-btn {
  display: block;
  color: #212121;
  text-align: center;
  font-size: 18px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  border: 1px solid #212121;
  transition: all 0.2s ease-in-out;
}
a.buy-btn:hover,
a.buy-btn:active,
a.buy-btn:focus {
  border-color: #ff9800;
  background: #ff9800;
  color: #fff;
  text-decoration: none;
}
.wsk-btn {
  display: inline-block;
  color: #212121;
  text-align: center;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  border-color: #ff9800;
  background: #ff9800;
  padding: 12px 30px;
  border-radius: 27px;
  margin: 0 5px;
}
.wsk-btn:hover,
.wsk-btn:focus,
.wsk-btn:active {
  text-decoration: none;
  color: #fff;
}
.red {
  color: #f44336;
  font-size: 22px;
  display: inline-block;
  margin: 0 5px;
}
@media screen and (max-width: 991px) {
  .wsk-cp-product {
    margin: 40px auto;
  }
  .wsk-cp-product .wsk-cp-img {
    top: -40px;
  }
  .wsk-cp-product .wsk-cp-img img {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }

  .wsk-cp-product .wsk-cp-text .category > span {
    border-color: #ddd;
    box-shadow: none;
    padding: 11px 28px;
  }
  .wsk-cp-product .wsk-cp-text .category {
    margin-top: 0px;
  }
  a.buy-btn {
    border-color: #ff9800;
    background: #ff9800;
    color: #fff;
  }
}

/*--- fine prova 27.07 ----*/

/*-- prpva single prod  -------------------------------------------------------------------------- */

.zippocontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.zippocontainer .card {
  position: relative;
  width: 350px;
  height: 600px;
  background: #2d694c;
  border-radius: 20px;
  overflow: hidden;
}

.zippocontainer .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1bbfe9;
  clip-path: circle(150px at 80% 20%);
  transition: 0.5s ease-in-out;
}

.zippocontainer .card:hover:before {
  clip-path: circle(300px at 80% -20%);
}

.zippocontainer .card:after {
  content: "agricola";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 12em;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.04);
}

.zippocontainer .card .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.zippocontainer .card:hover .imgBx {
  top: 0%;
  transform: translateY(-25%);
  /* bug  */
}

.zippocontainer .card .imgBx img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  width: 270px;
}

.zippocontainer .card .contentBx {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 90;
}

.zippocontainer .card:hover .contentBx {
  height: 210px;
}

.zippocontainer .card .contentBx h2 {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.zippocontainer .card .contentBx .size,
.zippocontainer .card .contentBx .color {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.zippocontainer .card:hover .contentBx .size {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5s;
}

.zippocontainer .card:hover .contentBx .color {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.6s;
}

.zippocontainer .card .contentBx .size h3,
.zippocontainer .card .contentBx .color h3 {
  color: white;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
}

.zippocontainer .card .contentBx .size span {
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  display: inline-block;
  color: #111;
  background: #fff;
  margin: 0 5px;
  transition: 0.5s;
  color: #111;
  border-radius: 4px;
  cursor: pointer;
}

.zippocontainer .card .contentBx .size span:hover {
  /* other bug */
  background: #b90000;
}

.zippocontainer .card .contentBx .color span {
  width: 20px;
  height: 20px;
  background: #ff0;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.zippocontainer .card .contentBx .color span:nth-child(2) {
  background: #1bbfe9;
}

.zippocontainer .card .contentBx .color span:nth-child(3) {
  background: #1b2fe9;
}

.zippocontainer .card .contentBx .color span:nth-child(4) {
  background: #080481;
}

.zippocontainer .card .contentBx a {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border-radius: 4px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s;
}

.zippocontainer .card:hover .contentBx a {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.7s;
}

#pivo .btn-get-started-one {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  border: 1px solid black;
  text-align: center;
}

#pivo .btn-get-started-two {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  background-color: #f1bd1e;
  text-align: center;
}

#pivo .btn-get-started-three {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background-color: #21694d;
  text-align: center;
}

#pivo .btn-get-started-four {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: black;
  border: 1px solid black;
  text-align: center;
}

#pivo .btn-get-started-one:hover {
  background: black;
  color: #fff;
}

#pivo .btn-get-started-two:hover {
  background: #21694d;
  border: #21694d;
  color: #fff;
}

#pivo .btn-get-started-three:hover {
  background: black;
  color: #fff;
}

#pivo .btn-get-started-four:hover {
  background: black;
  color: #fff;
}

/* fine single prod -----*/

/* contact form -------------------------------------------*/

#contact-form {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

#contact-form h1 {
  font-family: "purplee";
}

#contact-form p {
  font-family: "courier";
}

label {
  font-weight: 400;
  cursor: pointer;
}

textarea,
input {
  border: none;
  outline: none;
  border-radius: 0;
  text-align: center;
  background: none;
  font-weight: 600;
  font-family: "courier";
  font-size: 20px;
  color: #000;
  max-width: 90%;
  padding: 1rem;
  border: 2px dashed rgba(0, 0, 0, 0);
  box-sizing: border-box;
  cursor: text;
}

textarea {
  text-align: left;
  /* overflow:hidden; */

  resize: none;
  width: 90%;
  border-color: rgba(255, 255, 255, 0);
}

textarea:focus {
  font-family: "courier";
  background-color: rgba(0, 0, 0, 0.04);
  border: 2px dashed rgba(0, 0, 0, 1);
}

textarea:focus:required:valid {
  border: 2px solid rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

textarea:required:valid {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

input {
  border-bottom: 2px dashed rgba(0, 0, 0, 0.5);
}

input:required,
textarea:required {
  border-bottom: 2px dashed rgba(0, 0, 0, 0.5);
}

input:focus {
  border-bottom: 2px dashed rgba(0, 0, 0, 1);
  background-color: rgba(0, 0, 0, 0.04);
}

input:required:valid {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

input:required:invalid {
  color: rgba(0, 0, 0, 0.5);
}

::-webkit-input-placeholder {
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */

  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */

  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
  font-weight: 400;
}

:-ms-input-placeholder {
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
  font-weight: 400;
}

.expanding {
  vertical-align: top;
}

.send-icn {
  fill: rgba(0, 0, 0, 1);
}

.send-icn:hover {
  fill: rgba(0, 0, 0, 1);
  cursor: pointer;
}

#envelope img.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

button {
  background: none;
  border: none;
  outline: none;
  margin: 2vmax;
}

button:hover small {
  opacity: 1;
}

small {
  font-family: "purplee";
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  opacity: 0;
}

.website {
  opacity: 1;
  font-size: 16px;
  color: #000;
  position: relative;
  text-align: center;
  display: block;
  margin-top: 7%;
}

.website a {
  color: #000;
}

/*-- end contact form ----*/

#pivo h2 {
  font-family: "purplee";
}

/*-----------------------------------*/

/*-- Gioia ----------------------------*/

.product-container {
  display: flex;
  justify-content: center !important;
  align-items: center;
  padding-top: 5px;
}

.product-container section {
  justify-content: center !important;
}

.product-info p {
  padding-top: -15px;
}

/* .img-card{
    width: 40%;
} */

.img-card img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 4px;
  height: 520px;
  object-fit: cover;
}

@media (min-width: 321px) and (max-width: 768px) {
  .img-card img {
    height: 360px;
  }
}

.small-Card {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 15px;
  gap: 12px;
  justify-content: center;
}

.small-Card img {
  width: 104px;
  height: 104px;
  border-radius: 4px;
  cursor: pointer;
  justify-content: center;
}

.small-Card img:active {
  border: 1px solid #17696a;
}

.sm-card {
  border: 2px solid darkred;
}

.product-info {
  width: 60%;
  justify-content: center;
}
.product-info h3 {
  font-size: 30px;
  font-family: "purplee";
  font-weight: 600;
  line-height: 130%;
  justify-content: center;
}

.product-info h5 {
  font-size: 24px;
  font-family: Lato;
  font-weight: 500;
  line-height: 130%;
  color: #ff4242;
  margin: 6px 0;
}

.product-info del {
  color: #a9a9a9;
}

.product-info p {
  text-align: justify;
  margin-left: 10px;
  margin-right: 10px;
}

.sizes p {
  font-size: 22px;
  color: black;
}

.size-option {
  width: 200px;
  height: 30px;
  margin-bottom: 15px;
  margin-left: 10px;
  padding: 5px;
}

.quantity input {
  width: 51px;
  height: 33px;
  margin-bottom: 15px;
  margin-left: 10px;
  padding: 6px;
}

button {
  background: #17696a;
  border-radius: 4px;
  padding: 10px 37px;
  border: none;
  color: white;
  font-weight: 600;
}

button:hover {
  background: #ff4242;
  transition: ease-in 0.4s;
}

.delivery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  color: #787a80;
  font-size: 12px;
  font-family: Lato;
  line-height: 150%;
  letter-spacing: 1px;
}

hr {
  color: #fff;
  width: 58%;
  opacity: 0.67;
}

.pagination {
  color: #fff;
  margin: 15px 0;
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .product-container {
    flex-direction: column;
  }
  .small-Card img {
    width: 80px;
  }
  .product-info {
    width: 100%;
  }
  echo "# product-details-page-html-css-js">>README.md .product-info p {
    width: 100%;
  }

  .delivery {
    width: 100%;
  }

  hr {
    width: 100%;
  }
}

/* fr3ddda page ----*/

.happinezz {
  background: url(../src/img/alla-spina2.png);
}

@media (min-width: 321px) and (max-width: 768px) {
  .happinezz {
    background: url(../src/img/alla-spina3.png);
  }
}

#yessa .btn-get-started-one {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 5px;
  color: black;
  background-color: #fff;
  border: 1px solid black;
  text-align: justify;
}

#yessa .btn-get-started-two {
  font-family: "purplee";
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 5px;
  color: black;
  background-color: #f1bd1e;
  text-align: center;
}

#yessa .btn-get-started-one:hover {
  background: black;
  color: #fff;
}

#yessa .btn-get-started-two:hover {
  background: #21694d;
  border: #21694d;
  color: #fff;
}

#feliz small {
  font-family: "purplee";
  color: black;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  opacity: 0;
}

@media (max-width: 575px) {
  #feliz h3 {
    font-size: 30px;
    text-align: center;
  }
}

/* -------------------------------------------------- */

/* Gioia page ----------------------------------------------*/
.happinexx {
  background: url(../src/img/in-bottiglia2.png);
}

@media (min-width: 321px) and (max-width: 768px) {
  .happinexx {
    background: url(../src/img/in-bottiglia3.png);
  }
}
