html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@keyframes slide-in-ep {
  0% {
    transform: translateX(-20rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fade-in-slide-left {
  0% {
    opacity: 0%;
    transform: translateX(-80px);
  }
  100% {
    opacity: 100%;
    transform: translateX(0);
  }
}
@keyframes lace-rotation {
  0% {
    transform: rotate3d(0, 1, 0, 0deg); /* Start rotation */
  }
  50% {
    transform: rotate3d(0, 1, 0, 180deg); /* Halfway rotation */
  }
  100% {
    transform: rotate3d(0, 1, 0, 360deg); /* Full rotation */
  }
}
@keyframes go-up {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-350px);
  }
}
@keyframes go-down {
  0% {
    transform: translateY(-350px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes appear {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes cross-fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
* {
  font-family: "Montserrat", sans-serif;
}
* p {
  font-weight: 300;
}

.spacer {
  width: 100%;
  height: 11rem;
  background-color: #F6F6F6;
}
@media (max-width: 500px) {
  .spacer {
    height: 8rem;
  }
}

.title {
  background-color: #F6F6F6;
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
  text-align: center;
  padding: 2%;
}

.subtitle {
  background-color: #F6F6F6;
  text-align: center;
  padding-left: 14%;
  padding-right: 14%;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  padding-bottom: 2%;
  font-weight: 300;
}

body {
  font-family: "Montserrat, sans-serif";
  margin: 0;
  padding: 0;
  line-height: 2.5ch;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 20px;
  background-color: #F6F6F6;
}
.contact .maps,
.contact .forms {
  flex: 1;
  min-width: 300px;
}

#map {
  width: 100%;
  height: 920px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.forms {
  margin: 0 auto;
  padding: 20px;
  background-color: #F6F6F6;
  border-radius: 8px;
}
.forms #zcampaignOptinForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.forms #SIGNUP_HEADING {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}
.forms #SIGNUP_DESCRIPTION {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}
.forms .zcinputbox input,
.forms .zcinputbox textarea {
  width: 90%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  background-color: #F6F6F6;
}
.forms .zcinputbox textarea {
  resize: vertical;
  min-height: 80px;
}
.forms #errorMsgDiv {
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 10px;
}
.forms #zcWebOptin {
  color: white;
  font-size: 16px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.forms #privacyNotes {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .contact {
    flex-direction: column;
  }
  #map {
    height: 300px;
  }
  #SIGNUP_HEADING {
    font-size: 20px;
  }
  #SIGNUP_DESCRIPTION {
    font-size: 12px;
  }
}
.errorMsgDiv {
  display: none;
}/*# sourceMappingURL=style.css.map */