:root {
  color-scheme: light;
}
@font-face {
  font-family: Montserrat;
  src: url("fonts/Montserrat-VariableFont_wght.ttf");
}
@font-face {
  font-family: Birthstone;
  src: url("fonts/Birthstone-Regular.ttf");
}
@font-face {
  font-family: Noto;
  src: url("fonts/NotoSerif-VariableFont_wdth,wght.ttf");
}
@font-face {
  font-family: EBGaramond;
  src: url("fonts/EBGaramond-VariableFont_wght.ttf");
}
.paddingTB20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.paddingTB40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.paddingTB80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.paddingLR0 {
  padding-left: 0;
  padding-right: 0;
}
.paddingR20 {
  padding-right: 20px;
}
.paddingR40 {
  padding-right: 40px;
}
.paddingR80 {
  padding-right: 80px;
}
.border {
  border: 1px solid red;
}
.border-gray {
  border: 1px solid #b6b6b6;
}
.bg-silver {
  background-color: #f7f7f7;
}
.color-green {
  color: forestgreen;
}
.form-border.red {
  border: 2px solid red;
}
.form-border.green {
  border: 2px solid green;
}
a {
  text-decoration: none;
}
.input-ux {
  display: block;
  width: 100%;
  position: relative;
}
.input-ux .fa {
  font-size: 25px;
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
}
.input-ux .fa-check {
  color: #30a92a;
}
.input-ux .fa-times {
  color: #d90000;
}
.input-ux .input-wrong {
  border: 2px solid #c12424;
  background-color: rgba(217, 0, 0, 0.15) !important;
}
.input-ux input[type='number']::-webkit-inner-spin-button,
.input-ux input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.input-ux .help {
  position: absolute;
  right: 0;
  left: 0;
  top: -6px;
  font-size: 12px;
  color: #d90000;
  display: none;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(0);
  }
}
.shake {
  animation: shake 0.3s ease;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
.reveal[data-anim="left"] {
  transform: translateX(-28px);
}
.reveal[data-anim="right"] {
  transform: translateX(28px);
}
.reveal[data-anim="scale"] {
  transform: scale(0.965);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal.reveal-hidden {
  opacity: 0;
}
html:not(.reveal-ready) .reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
.alert {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 20px 40px;
  z-index: 1100;
  margin: auto;
  width: 100%;
  color: #f7f7f7;
  border: 0;
  border-radius: 0;
  text-align: center;
}
.alert.alert-success {
  background-color: green;
}
.alert.alert-danger {
  background-color: red;
}
.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.flex-container .item.column {
  display: flex;
  flex-direction: column;
}
.button {
  border-radius: 10px;
  padding: 20px 30px;
  color: #fafafa;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.65);
  background-color: rgba(255, 255, 255, 0);
  /* transparent */
  transition: background-color 0.4s ease, transform 0.3s ease;
  width: fit-content;
  z-index: 1000;
  position: relative;
  overflow: hidden;
}
.button span i {
  margin-right: 8px;
}
.button:before {
  content: "";
  position: absolute;
  top: -120%;
  left: -80%;
  width: 60%;
  height: 280%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.08) 55%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-160%) rotate(8deg);
  opacity: 0;
  transition: transform 0.65s ease, opacity 0.65s ease;
  pointer-events: none;
}
.button.center {
  margin: auto;
}
.button:hover {
  transform: translateY(-3px);
  /* small lift */
  cursor: pointer;
}
.button:hover:before {
  transform: translateX(260%) rotate(8deg);
  opacity: 1;
}
.button.active {
  background-color: rgba(255, 255, 255, 0.08);
  /* active state */
  cursor: pointer;
}
.button.primary {
  background-color: #d5b044;
  border: 2px solid #b68e28;
  color: #3a1d1d;
  font-weight: 500;
}
.button.primary:hover {
  background-color: #c49c32;
  border: 2px solid #a37e22;
}
.button.secondary {
  border: 2px solid #ba3f39;
}
.button.secondary:hover {
  background-color: #d43f38;
  border: 2px solid #d43f38;
}
.bg-darkred {
  background-color: #521622;
}
.bg-redgrad {
  background: linear-gradient(90deg, #871830 0%, #5e1725 50%);
}
.bg-light-burgundy {
  color: #8f2239;
  background-color: #f2d9c6;
}
#story {
  background-color: #e0d9cf;
}
#story .flex-container {
  align-items: center;
}
.img-wrapper {
  width: 100%;
  max-width: 38vw;
  height: 500px;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 45vw;
}
.timeline-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #c4a484;
}
.timeline-item:last-child {
  border: none;
}
.timeline-year {
  font-family: 'EBGaramond', cursive;
  font-style: italic;
  font-size: 26px;
  color: #c28e7a;
  flex-shrink: 0;
  width: 70px;
}
.timeline-text {
  font-size: 15px;
  color: #5c5c5c;
  line-height: 1.6;
  margin-bottom: 0;
  padding-bottom: 0;
}
.overlay-img-darken {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
}
.bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  object-position: center;
  object-fit: cover;
  overflow: hidden;
  filter: blur(5px);
}
#toggle-menu {
  position: absolute;
  display: none;
  top: 40px;
  right: 40px;
  z-index: 200;
}
#toggle-menu #navibutton {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 30px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: block;
  margin: auto;
  z-index: 13;
}
#toggle-menu #navibutton .line {
  width: 100%;
  height: 2px;
  background-color: #5c5c5c;
  position: absolute;
  top: 5px;
  right: 0;
  transition: all 0.15s;
  -moz-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  border-radius: 2px;
}
#toggle-menu #navibutton .line:nth-of-type(2) {
  top: 14px;
}
#toggle-menu #navibutton .line:nth-of-type(3) {
  top: 24px;
}
#toggle-menu #navibutton.show .line {
  background-color: #f7f7f7;
}
#toggle-menu #navibutton.show .line:nth-of-type(1) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  top: 15px;
}
#toggle-menu #navibutton.show .line:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}
#toggle-menu #navibutton.show .line:nth-of-type(3) {
  top: 15px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.hidden {
  display: none;
  width: 0;
  height: 0;
}
.caption {
  font-family: EBGaramond;
  font-size: 1.8em;
  color: #c28e7a;
}
.caption-spaced {
  font-family: Montserrat;
  font-size: 1.8em;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.container.flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.container-card {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto 80px auto;
  position: relative;
  padding: 60px;
  background-color: #8a1931;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.container-fluid {
  position: relative;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}
body {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-family: Noto;
  background-color: #e0d5c2;
  color: #5c5c5c;
  position: relative;
}
a {
  cursor: pointer;
}
#overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(224, 213, 194, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}
#overlay.show {
  visibility: visible;
  opacity: 1;
  transition: 300ms;
}
.no-pointer {
  cursor: default !important;
}
h1,
h2,
h3 {
  font-family: Birthstone;
}
h1 {
  font-size: 3.4em;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h2 {
  font-size: 3.6em;
  font-weight: 300;
  text-align: center;
  position: relative;
  padding-bottom: 40px;
  display: block;
  margin-bottom: 20px;
}
h2:after {
  content: '🎗️🎗️🎗️';
  display: block;
  width: auto;
  font-size: 0.3em;
  opacity: 0.4;
}
.section-header .title-tag {
  font-family: EBGaramond;
  font-size: 0.9em;
  text-transform: uppercase;
  text-align: center;
  color: #c28e7a;
  letter-spacing: 4px;
  margin-bottom: -10px;
}
.nowrap {
  white-space: nowrap;
}
#header {
  padding: 35px 3vw;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  z-index: 1200;
  top: 0;
}
#header .flex-container {
  justify-content: flex-start;
  gap: 3vw;
}
#header #header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  flex-direction: row;
  gap: 15px;
  z-index: 1000;
}
#header #header-logo img {
  max-width: 115px;
}
#header #header-logo span {
  color: #fafafa;
  font-size: 0.9em;
  line-height: 20px;
}
#header #nav {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  z-index: 1000;
  padding-left: 0;
}
#header #nav li a {
  position: relative;
  padding: 12px 25px;
  text-align: center;
  color: #5c5c5c;
  transition: 300ms;
  cursor: pointer;
  letter-spacing: 2px;
  font-weight: 400;
}
#header #nav li a:after {
  content: "";
  height: 2px;
  width: 0;
  background-color: #c28e7a;
  display: block;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 300ms ease-in-out;
}
#header #nav li a:hover {
  transition: 300ms;
  text-decoration: none;
  text-shadow: 0 0 1px #ffffff;
}
#header #nav li a:hover:after {
  width: 80%;
  transition: 300ms ease-in-out;
}
#header #nav li a.active {
  font-weight: 600;
  transition: 300ms;
  text-shadow: 0 0 1px #ffffff;
}
#header #nav li a.active:after {
  width: 20%;
}
#header #nav li:last-of-type a {
  border-right: none;
}
#header .button {
  z-index: 1000;
  padding: 15px 27px;
  margin: unset;
}
#header .backdrop {
  position: absolute;
  inset: 0;
  height: 200%;
  backdrop-filter: blur(8px);
  mask-image: linear-gradient(to bottom, black 0% 50%, transparent 50% 100%);
}
#hero {
  height: 100vh;
  padding: 0;
}
#hero .flex-container .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50vw;
  background-color: #e0d5c2;
}
#hero #hero-logo {
  max-width: 550px;
  margin-bottom: 20px;
}
#hero .wrapper {
  width: 50vw;
}
#hero .wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.wedding-countdown {
  margin-top: 28px;
  width: min(520px, 100%);
  text-align: center;
}
.wedding-countdown__label {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 14px;
}
.wedding-countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  justify-content: center;
}
.wedding-countdown__item {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 14px 10px;
  backdrop-filter: blur(3px);
}
.wedding-countdown__num {
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.78);
  font-variant-numeric: tabular-nums;
}
.wedding-countdown__unit {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}
.wedding-countdown__done {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 520px) {
  .wedding-countdown__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wedding-countdown__num {
    font-size: 30px;
  }
}
#service-faq {
  padding-top: 80px;
  padding-bottom: 80px;
}
#service-faq .container .accordion-flush .accordion-item {
  margin-bottom: 20px;
  outline: none;
  border-bottom: 0;
  color: #fafafa;
}
#service-faq .container .accordion-flush .accordion-item .accordion-header {
  outline: none;
}
#service-faq .container .accordion-flush .accordion-item .accordion-header .accordion-button {
  position: relative;
  background-color: #881d32;
  color: #fafafa;
  font-weight: 600;
  font-size: 0.7em;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  outline: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  padding: 25px;
}
#service-faq .container .accordion-flush .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: #731729;
}
#service-faq .container .accordion-flush .accordion-item .accordion-header .accordion-button:hover {
  background-color: #881d32;
  transform: translateY(-2px);
}
#service-faq .container .accordion-flush .accordion-item .accordion-header .accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
#service-faq .container .accordion-flush .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: 2px 2px 8px #000;
  outline: none;
  border: none;
}
#service-faq .container .accordion-flush .accordion-item .accordion-collapse .accordion-body {
  background-color: #400e18;
}
#service-faq .container .accordion-flush .accordion-item .accordion-collapse .accordion-body p {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
}
#program {
  color: #f7f7f7;
}
.story-pullquote {
  margin: 28px 0;
  padding-left: 24px;
  border-left: 3px solid #c28e7a;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
}
.story-pullquote cite {
  display: block;
  font-size: 13px;
  margin-top: 8px;
  opacity: 0.6;
}
.schedule {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-top: 60px;
}
.schedule::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c28e7a 10%, #c28e7a 90%, transparent);
  transform: translateX(-50%);
}
.schedule-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  margin-bottom: 32px;
  align-items: center;
}
.schedule-item:nth-child(odd) .sched-content {
  grid-column: 1;
  text-align: right;
  padding-right: 32px;
}
.schedule-item:nth-child(odd) .sched-dot {
  grid-column: 2;
}
.schedule-item:nth-child(odd) .sched-empty {
  grid-column: 3;
}
.schedule-item:nth-child(even) .sched-empty {
  grid-column: 1;
}
.schedule-item:nth-child(even) .sched-dot {
  grid-column: 2;
}
.schedule-item:nth-child(even) .sched-content {
  grid-column: 3;
  text-align: left;
  padding-left: 32px;
}
.sched-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.sched-dot-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e0d5c2;
  border: 2px solid #c28e7a;
  box-shadow: 0 0 12px #c28e7a;
  transition: 300ms;
}
.sched-dot-inner:hover {
  transition: 300ms;
  border: 2px solid #e5997c;
  box-shadow: 0 0 16px #e5997c;
  background-color: #e0d9cf;
}
.sched-time {
  font-family: 'Noto', serif;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8f9e8b;
  display: block;
  margin-bottom: 4px;
}
.sched-event {
  font-family: 'EB Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: #f7f7f7;
  display: block;
  margin-bottom: 4px;
}
.sched-note {
  font-size: 20px;
  font-family: 'EBGaramond', serif;
  font-style: italic;
  color: #c4a484;
}
#place {
  background-color: #e0d9cf;
  /* Fake map */
}
#place .venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
#place .venue-card {
  background: #e0d5c2;
  border: 1px solid #cbc1b0;
  padding: 40px;
  position: relative;
  display: block;
}
#place .venue-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(174, 132, 17, 0.08);
  pointer-events: none;
}
#place .venue-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
#place .venue-card-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
#place .venue-card-name {
  font-size: 36px;
  color: var(--plum-deep);
  display: block;
  margin-bottom: 10px;
}
#place .venue-card-address {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
#place .venue-card-btn {
  display: inline-block;
  border: 1px solid #c28e7a;
  color: #5c5c5c;
  padding: 9px 22px;
  font-family: 'Cormorant Infant', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
#place .venue-card-btn:hover {
  background: #c28e7a;
  color: #f7f7f7;
}
#place .venue-map {
  padding: 10px;
  background: #e0d5c2;
  border: 1px solid #cbc1b0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
#place .map-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}
#place .map-road-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
#place .map-road-v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
#place .map-pin-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
#place .map-pin-head {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--rose);
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
#place .map-pin-emoji {
  transform: rotate(45deg);
  font-size: 12px;
}
#place .map-pin-tail {
  width: 2px;
  height: 12px;
  background: var(--rose);
}
#place .map-label {
  margin-top: 6px;
  background: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.light {
  color: #f2efe9;
}
.light .section-header .title-tag {
  color: #ffa666;
}
#btn-rvsp {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f7f7f7;
  border-radius: 60px;
  width: 120px;
  height: 120px;
  transform: rotate(-45deg);
  color: #f7f7f7;
  transition: 300ms ease-in-out;
  font-size: 1.6em;
  cursor: pointer;
}
#btn-rvsp:hover {
  background-color: #f7f7f7;
  color: #8f9e8b;
  transform: rotate(0deg);
}
#rvsp {
  background-color: #e0d9cf;
}
#rvsp p {
  padding-bottom: 40px;
}
#form {
  display: flex;
  flex-direction: column;
  background-color: #e0d5c2;
  padding: 40px;
  max-width: 50%;
  width: 100%;
  margin: auto;
}
#form .form-group {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
#form .form-group .form-item {
  width: 49%;
}
#form .form-item {
  text-align: left;
}
#form .form-item label {
  padding-left: 10px;
  padding-bottom: 6px;
  color: #c28e7a;
}
#form .form-item input,
#form .form-item textarea {
  margin-bottom: 15px;
}
#form .form-item input:focus,
#form .form-item textarea:focus {
  border: 0;
  box-shadow: none;
  outline: none;
}
#form .item-calendar {
  width: 100%;
}
#form .item-calendar .flatpickr-calendar {
  transform: scale(1.2);
  margin: 60px auto auto auto;
}
#form .button {
  margin: 40px auto 20px auto;
  width: 300px;
  background-color: #c28e7a;
}
.callModal {
  cursor: pointer;
}
#footer {
  background-color: #5c5c5c;
  padding: 20px;
  color: #f7f7f7;
  font-size: 16px;
}
#footer a {
  color: #f7f7f7;
}
#footer a:hover {
  color: #c28e7a;
}
#error {
  padding-top: 200px;
  padding-bottom: 80px;
}
/* END OF FOOTER */
.modal .modal-content {
  margin-top: 80px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid #fff;
}
.modal .modal-content .close {
  color: #d9d9d9;
  background-color: transparent;
  border: none;
}
.form-border.red {
  border: 2px solid red !important;
}
.form-border.green {
  border: 2px solid green !important;
}
.modal-header {
  justify-content: space-between;
}
.modal-backdrop.show {
  backdrop-filter: blur(10px);
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.4);
}
/*# sourceMappingURL=style.css.map */