@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../../fonts/proxima_nova/ProximaNova-Regular.eot");
  src: url("../../fonts/proxima_nova/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/proxima_nova/ProximaNova-Regular.woff2") format("woff2"), url("../../fonts/proxima_nova/ProximaNova-Regular.woff") format("woff"), url("../../fonts/proxima_nova/ProximaNova-Regular.ttf") format("truetype"), url("../../fonts/proxima_nova/ProximaNova-Regular.svg#ProximaNova-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body main {
  overflow-x: hidden;
}
body main section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
body main section h1.main-title {
  font-size: 64px;
}
body main section h2.secondary-title {
  font-size: 40px;
}
body main section p.lead {
  font-size: 24px;
}
body main section > img.bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}
body main section.page_banner {
  padding: 240px 10px 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.page_banner .caption {
  position: relative;
}
body main section.page_banner .caption h1.main-title {
  font-size: 84px;
}
body main section.page_banner .caption h2.lead {
  font-size: 24px;
  max-width: 80%;
}
body main section.reservation {
  padding: 60px 0;
}
body main section.reservation ul {
  color: #ffffff;
  padding: 0;
  margin: 0;
  list-style: none;
}
body main section.reservation ul li {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}
body main section.reservation ul li h2 {
  font-size: 24px;
}
body main section.reservation ul li p {
  font-size: 20px;
  margin: 0;
}
body main section.reservation .form-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
body main section.reservation .form-wrapper h1.main-title {
  font-size: 32px;
}
body main section.reservation .form-wrapper form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body main section.reservation .form-wrapper form > div {
  width: 100%;
  max-width: 50%;
  padding: 0 10px;
}
body main section.reservation .form-wrapper form > div:has(textarea) {
  max-width: 100%;
  padding: 10px 0 0;
}
body main section.reservation .form-wrapper form legend {
  color: #D0AB2B !important;
  background: -webkit-linear-gradient(0deg, rgb(187, 152, 61) 0%, rgb(240, 219, 106) 25%, rgb(255, 229, 161) 50%, rgb(241, 207, 86) 75%, rgb(201, 157, 44) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: max-content;
}
body main section.reservation .form-wrapper form label a {
  color: #D0AB2B;
}
body main section.reservation .form-wrapper form input,
body main section.reservation .form-wrapper form textarea,
body main section.reservation .form-wrapper form select {
  background-color: transparent;
  color: #ffffff;
  font-size: 24px;
  border: solid 2px rgba(208, 171, 43, 0.2);
  border-radius: 0;
  padding: 8px 16px;
  box-shadow: none;
}
body main section.reservation .form-wrapper form input::placeholder,
body main section.reservation .form-wrapper form textarea::placeholder,
body main section.reservation .form-wrapper form select::placeholder {
  color: #DADADA;
}
body main section.reservation .form-wrapper form input option,
body main section.reservation .form-wrapper form textarea option,
body main section.reservation .form-wrapper form select option {
  color: #000000;
}
body main section.reservation .form-wrapper form input[type=date] {
  position: relative;
}
body main section.reservation .form-wrapper form input[type=date]::-webkit-inner-spin-button, body main section.reservation .form-wrapper form input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
}
body main section.reservation .form-wrapper form input[type=date]:after {
  content: "";
  background: url("../../img/webp/calendar.webp") no-repeat center/100%;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  pointer-events: none;
  user-select: none;
}
body main section.reservation .form-wrapper form input[type=time] {
  position: relative;
}
body main section.reservation .form-wrapper form input[type=time]::-webkit-inner-spin-button, body main section.reservation .form-wrapper form input[type=time]::-webkit-calendar-picker-indicator {
  background: transparent;
}
body main section.reservation .form-wrapper form input[type=time]:after {
  content: "";
  background: url("../../img/webp/time.webp") no-repeat center/100%;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  pointer-events: none;
  user-select: none;
}
body main section.reservation .form-wrapper form input[type=checkbox] {
  height: 24px;
  width: 24px;
  padding: 0;
  margin: 0 0 0 -32px;
}
body main section.reservation .form-wrapper form .invalid {
  border: solid 2px red;
}
body main section.reservation .form-wrapper form .form-check {
  padding-left: 32px;
}
body main section.reservation .form-wrapper form button {
  margin: 0 auto;
}

@media (max-width: 1780px) {
  body main section h1.main-title {
    font-size: 54px;
  }
  body main section h2.secondary-title {
    font-size: 36px;
  }
  body main section p.lead {
    font-size: 22px;
  }
  body main section.page_banner {
    padding: 220px 10px 120px;
  }
  body main section.page_banner .caption h1.main-title {
    font-size: 74px;
  }
}
@media (max-width: 1680px) {
  body main section h1.main-title {
    font-size: 44px;
  }
  body main section h2.secondary-title {
    font-size: 32px;
  }
  body main section.page_banner {
    padding: 200px 10px 120px;
  }
  body main section.page_banner .caption h1.main-title {
    font-size: 74px;
  }
  body main section.reservation .form-wrapper form input,
  body main section.reservation .form-wrapper form textarea,
  body main section.reservation .form-wrapper form select {
    font-size: 20px;
    padding: 6px 14px;
  }
}
@media (max-width: 1480px) {
  body main section h1.main-title {
    font-size: 34px;
  }
  body main section h2.secondary-title {
    font-size: 28px;
  }
  body main section p.lead {
    font-size: 18px;
  }
  body main section.page_banner {
    padding: 160px 10px 100px;
  }
  body main section.page_banner .caption h1.main-title {
    font-size: 64px;
  }
  body main section.reservation ul li {
    padding: 20px;
  }
  body main section.reservation ul li h2 {
    font-size: 20px;
  }
  body main section.reservation ul li p {
    font-size: 16px;
  }
  body main section.reservation .form-wrapper {
    padding: 20px;
  }
  body main section.reservation .form-wrapper h1.main-title {
    font-size: 28px;
  }
  body main section.reservation .form-wrapper form > div input,
  body main section.reservation .form-wrapper form > div textarea,
  body main section.reservation .form-wrapper form > div select {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  body main section.page_banner {
    padding: 120px 10px 80px;
  }
  body main section.page_banner .caption h1.main-title {
    font-size: 54px;
  }
  body main section.reservation .form-wrapper form > div input,
  body main section.reservation .form-wrapper form > div textarea,
  body main section.reservation .form-wrapper form > div select {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  body main section h1.main-title {
    font-size: 34px;
  }
  body main section h2.secondary-title {
    font-size: 28px;
  }
  body main section p.lead {
    font-size: 18px;
  }
  body main section.page_banner {
    padding: 160px 10px 60px;
  }
  body main section.page_banner .caption h1.main-title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  body main {
    margin-top: 62px;
  }
  body main section.page_banner {
    padding: 40px 10px 40px;
  }
  body main section.page_banner .caption h1.main-title {
    font-size: 34px;
    margin-bottom: 8px !important;
  }
  body main section.page_banner .caption h2.lead {
    font-size: 18px;
  }
  body main section.reservation .form-wrapper form > div {
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 567px) {
  body main section h1.main-title {
    font-size: 24px;
  }
  body main section h2.secondary-title {
    font-size: 24px;
  }
  body main section p.lead {
    font-size: 16px;
  }
  body main section.page_banner {
    min-height: unset;
  }
  body main section.page_banner .caption h1.main-title {
    font-size: 24px;
  }
  body main section.page_banner .caption h2.lead {
    font-size: 14px;
  }
  body main section.page_banner > img.bg {
    height: unset;
  }
}

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