/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700;800&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 6rem;

  --hue-color: 190;

  --first-color: hsl(200, 100%, 50%);
  --first-color-second: rgb(2, 87, 129);
  --first-color-alt: rgb(3, 92, 135);
  --title-color: rgb(0, 34, 50);
  --text-color: #002232;
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);
  --input-color-2: #004669;
  --head-color: rgb(2, 56, 152);
  --head-gradient: linear-gradient(66deg, rgba(2,56,152,1) 0%, rgba(0,135,214,1) 23%, rgba(255,255,255,1) 100%);

  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 1rem;
  --small-font-size: 1rem;
  --smaller-font-size: .75rem;

  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1.5rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  --z-tooltip: 10;
  --z-fixed: 100;

  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);

  --border-radius: 8px;
  --border-radius-sm: 4px;
  --transition: .3s ease;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: #001f3e;
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: rgba(255, 255, 255, 0.763);
  --input-color: #003064;
  --body-color: #003064;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
  --input-color-2: #003064;
  --head-color: rgb(0, 48, 100);
  --head-gradient: linear-gradient(274deg, rgba(0,48,100,1) 0%, rgba(0,48,100,1) 15%, rgba(0,57,153,1) 100%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme,
.change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== ACCESSIBILITY ===============*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--first-color);
  outline-offset: 3px;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}


.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle {
  color: var(--white-color);
}

.nav__logo {
  width: 100px;
  margin-top: 10px;
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}


.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

.show-menu {
  right: 0;
}

.scroll-header {
  background: var(--head-color);
  background: var(--head-gradient);
  box-shadow: 0 2px 16px rgba(14, 55, 63, 0.12);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle,
.home__data-title,
.home__social-link,
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
  line-height: 1.2;
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
  transition: transform var(--transition), opacity var(--transition);
}

.home__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
}

.home__info-img:hover {
  transform: var(--img-scale);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
  box-shadow: none;
  transform: none;
}

.button--link:hover {
  background: none;
  box-shadow: none;
  transform: none;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
  border-radius: var(--border-radius-sm);
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  width: 180px;
}

.about__img-one,
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover,
.about__img-two:hover {
  transform: var(--img-scale);
}

/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 200px;
  overflow: var(--img-hidden);
}

.discover__data {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
}

.discover__title,
.discover__description {
  color: var(--white-color);
}

.discover__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.discover__description {
  display: block;
  font-size: var(--smaller-font-size);
}

.discover__img {
  transition: var(--img-transition);
}

.discover__img:hover {
  transform: var(--img-scale);
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one,
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover,
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
  border-radius: var(--border-radius-sm);
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

/*=============== SERVICES WHY ===============*/
.services-why {
  text-align: center;
  padding: 50px 0;
}

/*=============== PLACES ===============*/
.place__card,
.place__img {
  height: 230px;
}

.place__container {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
}

.place__card {
  position: relative;
  overflow: var(--img-hidden);
}

.place__card:hover .place__img {
  transform: var(--img-scale);
}

.place__img {
  transition: var(--img-transition);
}

.place__content,
.place__title {
  color: var(--white-color);
}

.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1rem;
}

.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.place__rating-icon {
  font-size: .75rem;
  margin-right: var(--mb-0-25);
}

.place__rating-number {
  font-size: var(--small-font-size);
}

.place__subtitle,
.place__price {
  display: block;
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}

/*=============== SUBSCRIBE ===============*/
.subscribe__bg {
  background-color: var(--first-color-second);
  padding: 2.5rem 0;
}

.subscribe__title,
.subscribe__description {
  color: var(--white-color);
}

.subscribe__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.subscribe__form {
  background-color: var(--input-color);
  padding: .5rem;
  display: flex;
  justify-content: space-between;
}

.subscribe__input {
  width: 70%;
  padding-right: .5rem;
  background-color: var(--input-color);
  color: var(--text-color);
}

.subscribe__input::placeholder {
  color: var(--text-color);
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title,
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  margin-bottom: var(--mb-2);
  line-height: 1.7;
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.footer__social:hover {
  color: var(--first-color);
  transform: translateY(-2px);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy,
.footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: var(--text-color);
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .8rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 135, 214, 0.3);
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
  transform: translateY(-2px);
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

.show-scroll {
  bottom: 5rem;
}

/*=============== FORMS ===============*/
label {
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 15px;
  margin: 6px 0;
  border: 1px solid var(--first-color-second);
  border-radius: 15px;
  box-sizing: border-box;
  background-color: var(--input-color-2);
  color: white;
  font-size: 15px;
  transition: border-color var(--transition);
}

input[type="submit"],
input[type="reset"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  background-color: var(--input-color-2);
  color: white;
  transition: background-color var(--transition);
}

input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: #062d58;
}

select {
  width: 100%;
  padding: 14px;
  margin: 6px 0;
  border: 1px solid #cccccc88;
  border-radius: 15px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23777777" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px top 50%;
  background-size: 18px auto;
  cursor: pointer;
  font-size: 13px;
}

input[type="date"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  color: #ffffff;
  width: 150px;
  box-sizing: border-box;
  background-color: var(--input-color-2);
  padding-left: 26px;
}

input[type="date"]::-webkit-datetime-edit-text {
  color: rgb(255, 255, 255);
}

input[type="date"]::-webkit-inner-spin-button {
  color: rgb(255, 255, 255);
}

/*=============== CONTACTS ===============*/
.containner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  height: 50%;
}

.map {
  flex: 1;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.contacts {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  margin-left: 10px;
}

.contact-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 14px;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .content {
    flex-direction: column;
    width: 85%;
    height: 80%;
  }
  .map,
  .contacts {
    width: 100%;
    height: auto;
    margin: 10px auto;
  }
}

.gross {
  font-family: var(--title-font);
  font-weight: 800;
  display: inline;
  color: var(--text-color);
}

/*=============== SOCIAL SECTION ===============*/
.social {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.space {
  padding-bottom: 30px;
}

.ig {
  margin-left: 10px;
  background: -webkit-linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.sizing {
  margin-right: 30px;
  margin-left: 30px;
}

/*=============== REASONS / WHY US ===============*/
.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.reason {
  flex-basis: 10%;
  margin: 10px;
  background-color: hsl(207, 100%, 37%);
  border-radius: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: white;
  transition: transform var(--transition), box-shadow var(--transition);
}

.reason:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 70, 140, 0.3);
}

.reason .icon {
  font-size: 36px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .reason {
    flex-basis: 45%;
    font-size: 12px;
  }
  .icon {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .reason {
    flex-basis: 25%;
  }
}

/*=============== GALLERY ===============*/
.gallery-container {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-left: 50px;
  position: relative;
  padding-bottom: 20px;
  margin-left: 10%;
}

.gallery {
  display: inline-flex;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery img {
  max-width: 30%;
  height: auto;
  margin-right: 10px;
  border-radius: var(--border-radius);
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition);
}

.gallery img:hover {
  transform: scale(1.02);
}

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

.gallery-hint {
  text-align: center;
  font-weight: 800;
  padding-top: 15px;
  letter-spacing: 0.04em;
}

/*=============== WHATSAPP BUTTON ===============*/
.whatsapp-button {
  display: inline-block;
  background-color: #004606;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  width: 100%;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.04em;
  transition: filter var(--transition), transform var(--transition);
  text-align: center;
}

.whatsapp-button:hover {
  filter: brightness(115%);
  transform: translateY(-1px);
}

/*=============== SOCIAL BUTTONS ===============*/
.socialbutton {
  font-size: 35px;
  display: inline-flex;
  padding-right: 8px;
}

.socialbuttontxt {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  padding-right: 15px;
  font-weight: 600;
}

.socialbx {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .gallery-container {
    margin-left: 5px;
  }

  .gallery img {
    max-width: 65%;
  }

  .socialbutton {
    font-size: 25px;
    padding-right: 8px;
  }

  .socialbuttontxt {
    font-size: 16px;
    padding-right: 15px;
  }
}

/*=============== PRENOTAZIONI ===============*/
.spazio {
  margin-bottom: 120px;
}

.prenota {
  margin-top: 150px;
  background: linear-gradient(135deg, #0aa123 0%, #078a1c 100%);
  border-radius: var(--border-radius);
  margin-left: 60px;
  margin-right: 60px;
  padding-top: 30px;
  color: #d9fbe5;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(10, 161, 35, 0.2);
}

@media screen and (max-width: 1000px) {
  .prenota {
    border-radius: var(--border-radius);
    margin-left: 20px;
    margin-right: 20px;
  }
}

#whatsappForm input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #06a220;
  border-radius: 12px;
  outline: none;
  background-color: #045512;
  transition: border-color var(--transition);
}

#whatsappForm input[type="text"]:focus {
  border-color: #0cd613;
}

#whatsappForm input[type="submit"] {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background-color: #0cd613;
  color: #fff;
  cursor: pointer;
  outline: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color var(--transition), transform var(--transition);
}

#whatsappForm input[type="submit"]:hover {
  background-color: #0ce814;
  transform: translateY(-1px);
}

#whatsappForm input[type="date"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #06a220;
  border-radius: 12px;
  outline: none;
  background-color: #045512;
}

#tipologia {
  width: 100%;
  padding: 10px;
  border: 1px solid #06a220;
  border-radius: 12px;
  outline: none;
  background-color: #045512;
}

@media only screen and (min-width: 1000px) {
  .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .form-row > * {
    flex: 0 1 calc(50% - 5px);
    margin-bottom: 5px;
  }

  .form-row select {
    flex: 0 1 45%;
  }

  .desk {
    padding-left: 40px;
    padding-right: 40px;
  }

  .prenota {
    margin-left: 100px;
    margin-right: 100px;
  }
}

/*=============== LINK RESETS ===============*/
a.a:link,
a.a:visited,
a.a:hover,
a.a:active {
  color: var(--text-color);
  text-decoration: none;
}

.a {
  text-align: center;
  display: flex;
}

.b:link,
.b:visited,
.b:hover,
.b:active {
  color: white;
  text-decoration: none;
}

.colo {
  color: #d9fbe5;
}

a.c:link,
a.c:visited,
a.c:hover,
a.c:active {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 800;
}

.sottotitolo {
  color: rgba(255, 255, 255, 0.593);
  font-size: 12px;
  margin-top: 5px;
}

#contatti {
  margin-bottom: -150px;
}

.hidden {
  display: none;
}

/*=============== NAV ICON ===============*/
.ri-menu-4-fill {
  font-size: 30px;
}

/*=============== MEDIA QUERIES ===============*/
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
}

@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
    opacity: .85;
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle,
  .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .home__container {
    padding-top: 200px;
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data,
  .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .about__img-one {
    width: 230px;
  }
  .about__img-two {
    width: 290px;
  }
  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
    gap: 3rem 2rem;
  }
  .place__card,
  .place__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}

@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container,
  .home__img {
    height: 640px;
  }
}
