@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,500;0,700;0,800;0,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif&display=swap");
/*
body {
  background-image: url(../../assets/img/background.png);
  background-repeat: repeat;
  background-position: center center;
  background-size: auto;
  background-attachment: scroll;
}
*/
a {
  color: inherit;
  text-decoration: inherit;
}

.container {
  width: 92vw;
  margin: 0 auto;
}

#navbar {
  width: 100%;
  background-color: #eee9e5;
}

#navbar nav {
  max-width: 87vw;
  height: 10vh;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  #navbar nav {
    padding: 0 2rem;
  }
}

#navbar nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#navbar nav .logo img {
  width: 100%;
  height: auto;
}

#navbar nav .hamburger {
  display: none;
  background-color: transparent;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  color: #3a3a3a;
}

#navbar nav .hamburger:focus {
  outline: none;
}

@media (max-width: 768px) {
  #navbar nav .hamburger {
    display: unset;
  }
}

#navbar nav .navItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 1.1rem;
  font-family: "PT Serif", sans-serif;
  font-weight: 300;
  color: #3a3a3a;
}

@media (max-width: 768px) {
  #navbar nav .navItems {
    position: absolute;
    top: 10vh;
    left: 0;
    width: 100vw;
    height: 90vh;
    z-index: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    background-color: #eee9e5;
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
    font-size: calc(0.75em + 3vmin);
  }
}

#navbar nav .navItems .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 20px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}

#navbar nav .navItems .item:hover {
  color: #76a02b;
}

@media (max-width: 768px) {
  #navbar nav .navItems .item {
    height: 20%;
  }
}

#navbar nav .navItems .active {
  color: #76a02b;
}

footer {
  width: 100%;
  height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #3a3a3a;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #eee9e5;
  font-family: "PT Serif", sans-serif;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  padding: 20px 0px;
}

@media (max-width: 768px) {
  footer {
    font-size: calc(0.75em + 1vmin);
  }
}

footer a {
  text-decoration: none;
  color: #eee9e5;
  -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

footer a:hover {
  letter-spacing: 0.2rem;
  -webkit-animation-name: prova;
          animation-name: prova;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes prova {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes prova {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.nav-active {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.overflow {
  overflow-y: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.box-shadow {
  -webkit-box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.26);
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.26);
}

.hero {
  width: 100%;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero__overlay {
  position: absolute;
  top: 10vh;
  left: 0px;
  width: 100%;
  height: 90vh;
  z-index: -1;
  background-image: url(../../assets/img/casaPastindart-min.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero__overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
}

.hero__text {
  color: #eee9e5;
  text-align: center;
  -webkit-transform: translateY(-10vh);
          transform: translateY(-10vh);
}

.hero__text h1 {
  font-family: "Barlow", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero__text h1 {
    font-size: calc(0.75em + 6.5vmin);
    padding: 0px 1rem;
  }
}

.hero__text h2 {
  font-family: "PT Serif", sans-serif;
  font-size: calc(0.75em + 1.8vmin);
  line-height: calc(0.75em + 1.8vmin + 0.4rem);
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero__text h2 {
    font-size: calc(0.75em + 1.6vmin);
    padding: 0px 2rem;
  }
}

.presentation {
  width: 100%;
  height: 100%;
  margin-top: -20vh;
  border-radius: 0px 0px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eee9e5;
}

@media (max-width: 768px) {
  .presentation {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.presentation__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 2.8rem 0;
  padding-bottom: calc(2vh + 1.4rem);
}

.presentation__text h1 {
  margin: 0px;
  font-family: "Barlow", sans-serif;
  font-size: calc(0.75em + 4vmin);
  font-weight: 600;
  text-transform: uppercase;
  color: #76a02b;
}

@media (max-width: 768px) {
  .presentation__text h1 {
    padding: 2vh;
    font-size: calc(0.75em + 4vmin);
  }
}

.presentation__text h2 {
  max-width: 80%;
  font-family: "Pt serif", sans-serif;
  font-size: calc(0.75em + 1.8vmin);
  font-weight: 300;
  line-height: calc(0.75em + 1.8vmin + 0.4rem);
  color: #7a7a7a;
}

@media (max-width: 768px) {
  .presentation__text h2 {
    font-size: calc(0.75em + 1.6vmin);
  }
}

.presentation__slider {
  height: 100%;
  width: calc(100% - 5.6rem);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5vh 0;
  padding-top: 0;
  /*
    .arrows {
      position: absolute;
      top: -2%;
      right: 0;
      width: auto;
      display: flex;
      @include media('<=tablet') {
        top: -5%;
        right: 10%;
      }

      .arrow {
        font-size: 1rem;
        border: 2px solid green;
        margin: -20px;
        padding: 8px 12px;
        transition: all 0.2s linear;

        &:hover {
          background-color: $primary;
          color: $panna;
        }
      }
    }
    */
}

@media (max-width: 768px) {
  .presentation__slider {
    width: 100%;
  }
}

.presentation__slider .category:first-child {
  margin-left: 0;
}

.presentation__slider .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem;
  background-color: white;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  max-width: 360px;
}

.presentation__slider .category img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.presentation__slider .category .categoryName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 7vh;
  width: 100%;
  font-size: 16px;
  line-height: 18px;
  font-family: "PT Serif", sans-serif;
}

.presentation__slider .category:hover {
  background-color: #76a02b;
  color: #eee9e5;
}

.presentation__slider .glider-dot.active {
  background: #76a02b;
}

.glider::-webkit-scrollbar {
  display: none;
}

.information {
  width: 100%;
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 768px) {
  .information {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
}

.information > div {
  padding: 2.8rem 2.8rem;
}

@media (max-width: 768px) {
  .information > div {
    padding: calc(2vh + 20px) 2rem;
  }
}

.information__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #3a3a3a;
}

@media (max-width: 768px) {
  .information__details {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40vh;
  }
}

.information__details .details__title h1 {
  color: #76a02b;
  font-family: "Barlow", sans-serif;
  font-size: calc(0.75em + 4vmin);
  font-weight: 600;
  margin: 0;
  /*
      &::before {
        content: "\A";
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-right: 1rem;
        background-color: $primary;
        display: inline-block;
        vertical-align: middle;
        @include media('<=tablet') {
          display: none;
         }
      }
      */
}

@media (max-width: 768px) {
  .information__details .details__title h1 {
    font-size: calc(0.75em + 7vmin);
    padding-bottom: 3rem;
  }
}

.information__details .details__content p {
  color: #eee9e5;
  font-family: "PT Serif", Sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .information__details .details__content p {
    display: calc(0.75em + 7vmin);
  }
}

.information__details .details__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 0.75em;
}

.information__details .details__social i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eee9e5;
  border-radius: 10%;
  font-size: 15px;
  line-height: 25px;
  width: calc(25px + 2 * 0.5em);
  height: calc(25px + 2 * 0.5em);
  cursor: pointer;
  margin: 0px 5px;
}

.information__details .details__social i:first-child {
  margin-left: 0px;
}

.information__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  background-color: #76a02b;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .information__map {
    height: 40vh;
  }
}

.information__map a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.information__map a .mappa {
  width: 100%;
  height: calc(100% - 5.6rem);
  background-image: url("../../assets/img/mappa.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .information__map a .mappa {
    height: 100%;
  }
}

.contact {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #eee9e5;
}

@media (max-width: 768px) {
  .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
}

.contact > div {
  padding: 2.8rem 2.8rem;
}

@media (max-width: 768px) {
  .contact > div {
    padding: calc(2vh + 20px) 2rem;
  }
}

.contact__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #eee9e5;
}

@media (max-width: 768px) {
  .contact__title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact__title h1 {
  color: #76a02b;
  font-family: "Barlow", sans-serif;
  font-size: calc(0.75em + 4vmin);
  font-weight: 600;
  margin: 0;
  /*
      &::before {
        content: "\A";
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-right: 1rem;
        background-color: $primary;
        display: inline-block;
        vertical-align: middle;
        @include media('<=tablet') {
          display: none;
         }
      }
      */
}

@media (max-width: 768px) {
  .contact__title h1 {
    font-size: calc(0.75em + 7vmin);
    padding-bottom: 0rem;
  }
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eee9e5;
  font-family: "PT serif", "serif";
  color: #7a7a7a;
}

.contact__form form {
  width: 100%;
}

.contact__form input {
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 2px;
  color: #3a3a3a;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: block;
  float: none;
  font-size: 16px;
  border: 1px solid #ccc;
  padding: 6px 10px;
  height: 38px;
  width: 100%;
  line-height: 1.3;
}

.contact__form .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__form .info > div {
  margin: 1rem;
}

.contact__form .info label {
  padding-bottom: 1rem;
}

.contact__form .info .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0;
}

.contact__form .info .surname {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 0;
}

.contact__form .mailDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact__form .mailDiv label {
  padding-bottom: 1rem;
}

.contact__form .subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1rem;
}

.contact__form .subject label {
  padding-bottom: 1rem;
}

.contact__form .submit {
  margin-top: 1rem;
  width: 20%;
}

.contact__form .submit button {
  background-color: #76a02b;
  color: #eee9e5;
  box-sizing: border-box;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: block;
  float: none;
  font-size: 16px;
  border: 1px solid #ccc;
  padding: 6px 10px;
  height: 38px;
  width: 100%;
  line-height: 1.3;
}
/*# sourceMappingURL=style.css.map */