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

.serif {
  font-family: eb-garamond, serif;
  font-size: clamp(0.9rem, 5vw, 1.4rem);
  color: #000;
}

html {
  font: 16px/1.5 "inter-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wght" 400;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background: #fff;
  margin: 2rem 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: none;
}

::-webkit-scrollbar-thumb {
  background-color: #000;
  outline: 1px solid #000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: garage-gothic, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
}

h1, h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0;
}

h3 {
  font-size: 2rem;
  margin: 2.5rem 0 0.5rem 0;
}

a, p, ul {
  color: #888;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: #000;
}

.section-title {
  text-align: center;
  margin: 3rem auto;
  font-size: clamp(2rem, 5vw, 5rem);
}

.container {
  max-width: 90%;
  margin: 0 auto;
}

.block {
  background: #f7f7f7;
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 1rem;
}

.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20%;
  text-align: center;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.5rem, 5vw, 3rem) 0;
}
header img {
  max-height: 100px;
}

footer {
  border: solid 2px #000;
  border-bottom: none;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 2rem 2rem 1.5rem 2rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3rem 0 0;
}
footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer p {
  color: #000;
  margin: 0;
}
footer a {
  border-bottom: solid 1px #f7f7f7;
  transition: all 0.5s ease;
}
footer a:hover {
  border-color: #ccc;
}

.intro {
  display: grid;
  grid-gap: 2rem;
}
@media (min-width: 768px) {
  .intro {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro .image {
    order: 2;
  }
}
.intro img {
  max-height: 600px;
}

.types {
  display: grid;
  gap: 2rem;
  margin: clamp(2rem, 5vw, 6rem) clamp(1rem, 5vw, 2rem);
  text-align: center;
}
@media (min-width: 670px) {
  .types {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .types {
    grid-template-columns: repeat(4, 1fr);
  }
}
.types img {
  max-height: 100px;
}
.types div:hover img {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

.mailing-list {
  display: grid;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .mailing-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10%;
  }
}
@media (max-width: 768px) {
  .mailing-list img {
    max-height: 200px;
  }
}

.events-list {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .events-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .events-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.events-list .event {
  display: flex;
  flex-direction: column;
}
.events-list .event:hover img {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}
.events-list .image {
  background: #f7f7f7;
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-list .image img {
  max-height: 300px;
}
.events-list .details {
  background: #000;
  padding: 2rem 10%;
  text-align: center;
  color: #fff;
  border-radius: 0 0 1rem 1rem;
  flex-grow: 1;
}
.events-list .details h3 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}
.events-list .details h4 {
  font-family: "inter-variable", sans-serif;
  margin: 0;
}
.events-list .details p {
  color: #fff;
}

img, video {
  display: block;
  width: 100%;
}

form .button {
  margin-top: 2rem;
}

input {
  border: solid 2px #000;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  display: block;
}

.datefield {
  display: flex;
  align-items: center;
  justify-content: stretch;
}
.datefield span {
  display: block;
  width: 100%;
}
.datefield span.sep {
  width: auto;
  margin: 0 1rem;
}

label {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.button {
  border-radius: 0;
  background: #000;
  color: #fff;
  font-family: garage-gothic, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 0.6rem 1rem;
  display: inline-block;
  width: auto;
  transition: all 0.5s ease;
  position: relative;
  height: 50px;
  border: none;
  box-shadow: none;
  line-height: 1.2;
  vertical-align: middle;
  cursor: pointer;
}
.button:before {
  content: url(images/button-left.svg);
  width: auto;
  height: 50px;
  display: block;
  position: absolute;
  left: -11px;
  top: 0;
}
.button:after {
  content: url(images/button-right.svg);
  width: auto;
  height: 50px;
  display: block;
  position: absolute;
  right: -46px;
  top: 0;
}
.button:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

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