/* Contact Block !!! We can probably delete this */
.contact {
  padding: 3rem;
  border: 2px solid #000;
}
.contact h1 {
  margin-bottom: 1.5rem;
  font-size: large;
  font-weight: 500;
}
.contact a {
  font-weight: 500;
}
/* Contact Block */

/*LAYOUT - As in, We can get ride of / change this if we use a maual Kirby structure */
.blocks {
  margin-bottom: 1rem;
    padding: 0 .5rem;
    align-items: center;     /* vertical centering */
    margin-top: auto;
    margin-bottom: auto;
}
.block-type-heading h1 {
  font-size: 3rem;
  font-weight: 500;
}
.block-type-heading h2 {
  font-size: 2.5rem;
}
.blocks h1, p, hr {
  margin-bottom: 1rem;
  text-align: justify;
}
/*
.blocks h2 {
  text-align: justify;
  justify-content: center; 
}
*/
.blocks p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.8rem;
}
.blocks a { 
  margin-top: 2rem;
  text-decoration: underline;
  font-weight: 500;
}
/*
.block-type-heading,
.block-type-line,
.block-type-text {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
  */
.column[style*="--columns:12"] h1 {
  display: flex;
  padding: 0 .5rem;
  font-size: 3rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  text-align: justify;
}
.column[style*="--columns:12"] p {
  display: flex;
  padding: 0 1rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
}
.column[style*="--columns:12"] h2 {
  display: flex;
  padding: 0 .5rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  text-align: justify;
}
.column[style*="--columns:6"] h2 {
  display: flex;
  margin-top: 3rem;
  max-width: 30rem;
}
/*LAYOUT */

/* slideshow */
.slideshowContainer {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40vw;
}
.imageSlides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}
/* add 'visible' class via Javascript */
.visible {
  opacity: 1;
}
.slideshowArrow {
  font-size: 7em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
.slideshowArrow:hover {
  opacity: 0.75;
}
#leftArrow {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#rightArrow {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translate(50%, -50%);
}
.slideshowCircles {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.circle {
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 1s ease-in-out;
}
.dot {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px rgba(255, 255, 255, 0.5);
}
/* slideshow */