/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
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;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}
html {
  font-size: 18px;
}
html * {
  font-size: 1rem;
  line-height: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1 {
  font-size: 4rem;
  line-height: 4rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 1rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 1rem;
}

p,
legend {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 1rem;
}

.blur-load {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.blur-load img {
  opacity: 0;
  transition: opacity 250ms ease-in-out;
  width: 100%;
  height: auto;
  display: block;
}
.blur-load.loaded img {
  opacity: 1;
}
.blur-load.loaded::before {
  animation: none;
  content: none;
}
.blur-load::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: pulse 2.5s infinite;
  background-color: white;
  z-index: 10;
}

.block.block-hero {
  background-size: cover;
  background-position: center;
  text-align: center;
  border-radius: 0;
  margin: 0 0 1rem 0;
  height: 100vh;
  width: 100vw;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.block.block-hero > .hero-blur-load {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.block.block-hero > .hero-content {
  z-index: 10;
}
.block.block-hero > .hero-blur-load::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: pulse 2.5s infinite;
  background-color: white;
  z-index: 9;
}

html {
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Courier New", Courier, monospace;
}

select {
  cursor: pointer;
}

header {
  text-align: center;
  display: flex;
  flex-direction: column;
}

a {
  color: #000000;
  text-decoration: underline;
}

/* ===== Blocks ===== */
.block {
  padding: 1rem;
  max-width: 1024px;
  margin: 0 1rem 1rem 1rem;
  border: 2px solid #000000;
}
@media (min-width: 1064px) {
  .block {
    margin: 0 auto 1rem auto;
  }
}
.block.block-nav {
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 0;
  margin: 0;
  border-left: 0;
  border-right: 0;
  max-width: 100%;
}
.block.block-nav ul {
  display: flex;
  justify-content: flex-end;
}
.block.block-nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.block.block-nav ul li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
}
.block.block-nav ul li a:hover {
  background-color: #000000;
  color: #ffffff;
}
.block.block-logo {
  height: 4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  border: none;
}
.block.block-logo .logo {
  height: 4rem;
  width: 4rem;
  display: block;
  margin-right: 1rem;
}
[dir=rtl] .block.block-logo .logo {
  margin-left: 1rem;
  margin-right: 0;
}
.block.block-logo .logo img {
  height: 100%;
  width: 100%;
}
.block.block-logo h1 {
  font-size: 1rem;
  line-height: 1rem;
  margin: 0;
}
.block.block-image-and-text {
  display: flex;
  flex-direction: column;
}
@media (min-width: 750px) {
  .block.block-image-and-text {
    flex-direction: row;
  }
}
.block.block-image-and-text .cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media (min-width: 750px) {
  .block.block-image-and-text .cta-wrapper {
    margin: 0;
  }
}
.block.block-image-and-text .img-wrapper {
  min-width: 300px;
  display: flex;
  align-items: center;
}
@media (min-width: 750px) {
  .block.block-image-and-text .img-wrapper {
    margin-inline-start: 1rem;
  }
}
.block.block-image-and-text .img-wrapper .blur-load {
  width: 100%;
  border-radius: 8px;
}
.block.block-events ul li, .block.block-news ul li {
  border-bottom: 2px solid #000000;
  margin-bottom: 1rem;
}
.block.block-events ul li:last-child, .block.block-news ul li:last-child {
  border-bottom: none;
}
.block.block-contact-form .form-container .form-feedback {
  display: none;
}
.block.block-contact-form .form-container .form-feedback.form-success {
  color: #49bf9d;
}
.block.block-contact-form .form-container .form-feedback.form-error {
  color: red;
}
.block.block-contact-form .form-container .field {
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.block.block-contact-form .form-container .field label {
  display: block;
  margin-bottom: 1rem;
}
.block.block-contact-form .form-container .field input,
.block.block-contact-form .form-container .field textarea {
  appearance: none;
  display: block;
  padding: 1rem;
  border: 2px solid #000000;
}
.block.block-contact-form .form-container .cf-turnstile {
  margin-bottom: 1rem;
}
.block.block-contact-form .form-container .cta {
  width: 100%;
}
.block.block-social-links {
  text-align: center;
}
.block.block-social-links a {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}
.block.block-social-links a:last-child {
  margin-right: 0;
}
[dir=rtl] .block.block-social-links a:last-child {
  margin-right: 0.5rem;
}
[dir=rtl] .block.block-social-links a:first-child {
  margin-right: 0;
}
.block.block-venobox > .images-container {
  column-count: 1;
  column-fill: balance;
  column-gap: 1rem;
}
@media (min-width: 480px) {
  .block.block-venobox > .images-container {
    column-count: 2;
  }
}
@media (min-width: 768px) {
  .block.block-venobox > .images-container {
    column-count: 3;
  }
}
.block.block-venobox > .images-container > a {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
}
.block.block-venobox > .images-container > a > .blur-load {
  border-radius: 8px;
}
.block.block-venobox > .images-container > a > .blur-load > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: inline-block;
}
.block.block-venobox > .images-container > a > .blur-load::before {
  border-radius: 8px;
}

.cta {
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  color: #000000;
  min-width: 10rem;
  text-align: center;
}
.cta:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* Footer */
.nGY2GThumbnailImageTitle {
  font-family: "Courier New", Courier, monospace;
}
