* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  opacity: 1;
  -webkit-opacity: 1;
  /* -webkit-user-select: none; /* Safari */
  /* -ms-user-select: none; /* IE 10 and IE 11 */
  /* user-select: none; /* Standard syntax */
}
:root {
  --color_1: rgb(255, 251, 238);
  --color_2: rgb(255, 251, 238);
  --color_3: rgb(57, 57, 57);
  --color_4: rgb(33, 33, 33);
  --black: black;
  --white: white;
  --csz_red: rgb(197, 0, 0);
  --gold: linear-gradient(90deg, #f9f295, #e0aa3e, #f9f295, #b88a44);
}
html,
body {
  overflow-x: hidden;
}
body {
  background-color: white;
  background-image: url(../photos/background3.webp);
  background-repeat: repeat-y;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

/*hero*/
.heroBackground {
  background-image: url(../photos/hero.jpg);
  background-repeat: repeat-y;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  background-color: black;
  border-bottom: 0.5px solid var(--csz_red);
}
.heroFilter {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.33);
}
.heroHeader {
  width: 100%;
  position: absolute;
  animation: headerSlide 750ms ease-in-out;
}
.heroHeader .title_header_background {
  background-color: rgba(0, 0, 0, 0.25);
}
.heroHeader .main_menu_background {
  background-color: rgba(0, 0, 0, 0.25);
}

@keyframes headerSlide {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0px);
  }
}
.heroBox {
  animation: opacity 750ms ease-in;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.heroText {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.25;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
  margin-bottom: 2rem;
}
.heroText:hover {
  opacity: 0.9;
  -webkit-opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .heroText {
    font-size: 1.125rem;
  }
}
.heroButton {
  text-align: center;
  line-height: 1.5;
  padding: 10px 2rem;
  border: 1px solid white;
  border-radius: 10px;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.heroButton:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.heroImageAuthor {
  position: relative;
  top: -12px;
  left: 3px;
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.75);
  -webkit-opacity: 1;
  z-index: 100;
  font-size: 8px;
}
/*box, container, holder, block...*/
.container {
  max-width: 1250px;
  margin: auto;
}
.block {
  padding: 0px 10px 50px;
  max-width: 1000px;
  height: max-content;
  margin: auto;
}
.pageTitle {
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
  height: min-content;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 3rem auto;
  /* text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
  text-decoration-color: rgb(172, 0, 0) ;*/
}
@media screen and (max-width: 576px) {
  .block {
    padding: 0px 8px 50px;
  }
  .pageTitle {
    font-size: 2rem;
    margin: 2rem auto;
  }
}

/*content*/
.contentImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contentImageHolder {
  float: left;
  width: 50%;
  height: 400px;
  margin-top: 1rem;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.contentImageHolder2 {
  float: right;
  width: 50%;
  height: 400px;
  margin-top: 1rem;
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.contentImageDescriptionMobile {
  display: none;
}
.contentImageMobileHolder {
  display: none;
}
.contentImageAuthor {
  position: relative;
  top: -1.5rem;
  left: 3px;
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.75);
  -webkit-opacity: 1;
  z-index: 100;
  font-size: 8px;
}
.contentParagraph {
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
  height: min-content;
  line-height: 2;
  text-align: justify;
  margin-bottom: 2rem;
}
.downloadButton {
  background-color: black;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  width: fit-content;
  padding: 1rem 2rem;
}
.downloadButton:hover {
  background-color: rgb(0, 0, 0, 0.8);
}
.downloadArrow {
  width: 1rem;
  height: auto;
  rotate: -90deg;
  margin-left: 0.5rem;
  opacity: 0.9;
}
@media screen and (max-width: 1024px) {
  .contentImage {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .contentParagraph {
    margin-bottom: 0rem;
  }
  .contentImageHolder,
  .contentImageHolder2 {
    display: none;
  }
  .contentImageDescriptionMobile {
    display: block;
    font-size: 10px;
    margin-top: 5px;
  }
  .contentImageMobile {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .contentImageAuthor {
    top: -1.5rem;
  }
  .contentImageMobileHolder {
    display: block;
    position: relative;
    height: 300px;
    width: 100%;
    margin-bottom: 10px;
  }
}

/*founders*/
.founderCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
}
.founderCard {
  margin: auto;
  display: grid;
  grid-template-rows: 300px 1fr;
  background-color: black;
  color: white;
  cursor: pointer;
}
.founderCardImageHolder {
  overflow: hidden;
}
.cardPhotoAuthor {
  position: relative;
  top: -1rem;
  left: 3px;
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 0.75);
  -webkit-opacity: 1;
  z-index: 100;
  font-size: 8px;
}
.founderCardImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.founderCardTitle {
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  width: 100%;
  margin-bottom: 0.5rem;
  text-align: center;
}
.founderCardContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.founderCardParagraph {
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: min-content;
  line-height: 2;
  font-size: 1rem;
  text-align: center;
}
.founderCardButton {
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  margin-top: 1rem;
  border: 1px solid white;
  padding: 0.5rem 1rem;
}
.founderCardButton:hover {
  background-color: rgba(255, 255, 255, 0.125);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.buttonArrow {
  width: 1rem;
  height: auto;
  rotate: 180deg;
  margin-left: 0.5rem;
}
.imageHoverIn {
  animation: imageHoverIn 500ms ease-out;
  transform: rotate(15deg) scale(1.35);
}
.imageHoverOut {
  animation: imageHoverOut 300ms ease-out;
}

@keyframes imageHoverIn {
  0% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(0);
  }
  100% {
    transform: rotate(15deg) scale(1.35);
  }
}

@keyframes imageHoverOut {
  0% {
    transform: rotate(15deg) scale(1.35);
  }
  100% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(0);
  }
}
.imageHoverInArchives {
  animation: imageHoverInArchives 500ms ease-out;
  transform: rotate(15deg) scale(1.35);
  filter: grayscale(50);
}
.imageHoverOutArchives {
  animation: imageHoverOutArchives 300ms ease-out;
}
@keyframes imageHoverInArchives {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(15deg) scale(1.35);
  }
}
@keyframes imageHoverOutArchives {
  0% {
    transform: rotate(15deg) scale(1.35);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@media screen and (max-width: 1440px) {
  .founderCards {
    column-gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .founderCards {
    column-gap: 1rem;
  }
  .founderCardContent {
    padding: 1.75rem 1rem;
  }
  .founderCardParagraph {
    line-height: 1.5;
  }
}
@media screen and (max-width: 576px) {
  .founderCards {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  .founderCard {
    max-width: 500px;
  }
}
@media screen and (max-width: 425px) {
  .founderCardContent {
    padding: 1rem 5px;
  }
}

/*contact*/
.contactHolder {
  width: 100%;
  max-width: 768px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  margin: auto;
  text-align: center;
}
.contactImage {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.contactContent {
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 2rem;
}
.contactIconHolder {
  background-color: black;
  border-radius: 5px;
  padding: 5px;
  width: min-content;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
}
.contactIconHolder:hover {
  background-color: rgb(0, 0, 0, 0.9);
}
.contactIcon {
  width: 1rem;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 576px) {
  .contactHolder {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  .contactImage {
    order: 2;
  }
  .contactContent {
    padding-bottom: 5rem;
  }
}

/*search bar*/
.searchBarBackground {
  position: static;
  width: 100%;
  background-color: black;
  z-index: -1;
}
.searchBarSlide {
  animation: searchBarSlide 500ms ease-in-out;
}
.searchBarSlideBack {
  animation: searchBarSlideBack 500ms ease-in-out;
  opacity: 0;
  height: 0px;
}

@keyframes searchBarSlide {
  0% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes searchBarSlideBack {
  0% {
    transform: translateX(0px);
    height: 45px;
  }
  50% {
    transform: translateX(500px);
    height: 45px;
  }
  to {
    transform: translateX(500px);
    height: 0px;
    opacity: 1;
  }
}

.searchBar {
  width: 100%;
}
#searchBarMobile {
  display: none;
}
.searchForm {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}
.searchInput {
  width: 200px;
  margin-right: 0.5rem;
  margin: 10px 0;
  height: 25px;
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: white;
  font-size: 12px;
  opacity: 0.8;
}
input.searchInput:focus {
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
}
input.searchInput::placeholder {
  color: white;
  font-size: 12px;
  opacity: 0.5;
  font-style: italic;
}
button.searchButton {
  margin-left: 10px;
  background-color: rgba(0, 0, 0, 0);
  height: 1rem;
  width: 1rem;
  border: none;
  padding: 0 2px;
  cursor: pointer;
}

@media screen and (max-width: 768px){
  #searchBarMobile {
    display: block;
  } 
  .searchForm {
    justify-content: center;
    border-top: 0.5px solid rgba(99, 99, 99, 0.5);
  }
}

/*searchResults*/
.searchResultsCardButton {
  text-align: left;
  width: 100%;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  padding: 1rem 0;
  border-bottom: 1px solid black;
  margin-bottom: 1rem;
  cursor: pointer;
}
.searchResultsCardTitle {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: rgb(105, 0, 0);
}
.searchResultsCardDescription {
  margin-bottom: 0.5rem;
}
.searchResultsCardContent {
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/*header*/
/*title_header*/
header {
  background-color: black;
}
.title_header_background {
  border-top: 1px solid var(--csz_red);
  background-color: black;
  border-bottom: 0.5px solid rgba(99, 99, 99, 0.5);
}
#titleHeader {
  height: 50px;
  padding: 10px;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header_title_container {
  display: flex;
}
.headerLogo {
  height: 1rem;
  width: auto;
  margin-right: 0.5rem;
  margin-bottom: -3px;
}
.headerTitleLink {
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  font-weight: 300;
  font-size: 0.85rem;
}
.headerRightContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.languageButtonsContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  font-weight: 300;
  font-size: 0.85rem;
}
.languageButtonsContainerMobile {
  display: none;
}
.languageButton {
  margin: 0 0.25rem;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
}
.languageActive {
  color: red;
  opacity: 1;
  -webkit-text-fill-color: red;
  -webkit-opacity: 1;
  font-weight: 900;
}
.searchIcon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.searchIconContainer {
  margin-left: 1.5rem;
  height: 1rem;
  width: 1rem;
  padding: 0 1px;
}

#burger-menu {
  width: 35px;
  cursor: pointer;
  display: none;
}
#burger-menu:hover {
  opacity: 0.95;
}
.bar {
  height: 5px;
  width: 100%;
  background-color: white;
  display: block;
  border-radius: 5px;
}
#bar1 {
  transform: translateY(-4px);
}
#bar3 {
  transform: translateY(4px);
}

.cross #bar1 {
  transform: translateY(4px) rotateZ(-45deg);
  animation: bar1 500ms ease-out;
}
.cross #bar3 {
  transform: translateY(-6px) rotate(45deg);
  animation: bar3 500ms ease-out;
}
.cross #bar2 {
  opacity: 0;
}
.start #bar1 {
  transform: translateY(-5px);
  animation: bar1start 500ms ease-out;
}
.start #bar3 {
  transform: translateY(5px);
  animation: bar3start 500ms ease-out;
}
.start #bar2 {
  opacity: 1;
}
@keyframes bar1 {
  from {
    transform: translateY(0px) rotateZ(0deg);
  }
  to {
    transform: translateY(4px) rotateZ(-45deg);
  }
}
@keyframes bar3 {
  from {
    transform: translateY(0px) rotateZ(0deg);
  }
  to {
    transform: translateY(-6px) rotateZ(45deg);
  }
}
@keyframes bar1start {
  from {
    transform: translateY(4px) rotateZ(-45deg);
  }
  to {
    transform: translateY(-5px);
  }
}
@keyframes bar3start {
  from {
    transform: translateY(-6px) rotateZ(45deg);
  }
  to {
    transform: translateY(5px);
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes disappear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  animation: opacity 500ms ease-in;
}
.disappear {
  animation: disappear 200ms ease-in;
}

.main_menu_background {
  background-color: black;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.5);
}
#main_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding: 0 1rem;
  z-index: 98;
}
.menu_item {
  height: min-content;
  text-align: center;
  padding: 1rem 0;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  font-weight: 300;
  font-size: 0.8rem;
}

.submenuIcon {
  display: inline-block;
  height: 0.75rem;
  width: 1rem;
  background-image: url(../icons/chevronWhite.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  transform: rotate(-90deg);
  margin-right: 0.5rem;
}
.submenuIconRotationOn {
  transform: rotate(0deg);
  transition: all 250ms ease-in-out;
}
.submenuIconRotationOff {
  transform: rotate(-90deg);
  transition: all 250ms ease-in-out;
}

.menu_item_link {
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  font-size: 0.85rem;
}
.menu_item_link:hover {
  color: var(--csz_red);
  -webkit-text-fill-color: var(--csz_red);
  -webkit-opacity: 0.85;
  opacity: 0.85;
}
.icons_container {
  text-align: center;
  height: 1rem;
}
.icons_container_mobile {
  display: none;
}
.menu_icon {
  height: 1rem;
  width: auto;
}
.menu_icon:hover {
  opacity: 0.9;
}
.menu_mobile_hr {
  display: none;
}
#submenu {
  display: none;
  width: fit-content;
  background-color: black;
  height: fit-content;
  text-align: center;
  padding: 10px 30px;
  position: absolute;
  z-index: 99;
  flex-direction: column;
  justify-content: center;
}
#closeSubmenu {
  width: 30px;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 60px;
  display: none;
  z-index: 100;
}
#closeSubmenu:hover {
  opacity: 0.9;
}
#bar4 {
  transform: translateY(4px) rotateZ(-45deg);
  animation: bar1 500ms ease-out;
}
#bar5 {
  opacity: 0;
}
#bar6 {
  transform: translateY(-6px) rotate(45deg);
  animation: bar3 500ms ease-out;
}
.start #bar4 {
  transform: translateY(-5px);
  animation: bar1start 500ms ease-out;
}
.start #bar6 {
  transform: translateY(5px);
  animation: bar3start 500ms ease-out;
}

@media screen and (max-width: 768px) {
  .searchIconDesktop {
    display: none;
  }
  .headerTitleLink {
    font-size: 0.85rem;
  }
  .submenuIcon {
    background-image: url(../icons/menuWhite.svg);
    transform: unset;
  }
  .languageButtonsContainerDesktop {
    display: none;
  }
  .languageButtonsContainerMobile {
    display: flex;
    padding: 0.5rem 0 1rem;
  }
  #burger-menu {
    display: block;
  }
  #main_menu {
    background-color: var(--color_4);
    width: 100%;
    display: none;
    position: absolute;
    top: 50px;
    flex-direction: column;
    padding: 0;
  }
  #submenu {
    width: 100%;
    top: 50px;
  }
  .icons_container_desktop {
    display: none;
  }
  .icons_container_mobile {
    display: block;
    margin: 0.625rem 0;
  }
  .menu_mobile_hr {
    display: block;
    height: 0.125px;
    background-color: rgba(180, 180, 180, 0.5);
    border: none;
    width: 100%;
  }
}

/*login*/
.login_holder {
  width: 100%;
  max-width: 500px;
  margin: auto;
  height: 100%;
}

.login_form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login_box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
  row-gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
}

.login_label {
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.login_input {
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
  height: 40px;
  border: 1px solid black;
}

.login_button {
  border: none;
  background-color: black;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  font-size: 1rem;
  margin-top: 30px;
  padding: 10px 30px;
  text-align: center;
  width: fit-content;
}

.login_button:hover {
  background-color: rgba(0, 0, 0, 0.85);
}

.login_error {
  margin: 2rem auto;
  color: red;
  opacity: 1;
  -webkit-text-fill-color: red;
  -webkit-opacity: 1;
  font-weight: 400;
  font-size: 1rem;
}

@media screen and (max-width: 750px) {
  .login_box {
    grid-template-columns: 1fr;
  }
  .login_label {
    justify-content: flex-start;
    text-align: left;
  }
  .login_error {
    text-align: center;
  }
}

/*posts === workshops, masterclasses, projects*/
.postsGrid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
  margin: 2rem 0;
  padding: 0 5px;
}
.postCard {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  border: none;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 1rem 0;
  margin: auto;
  margin-bottom: 2rem;
  background-color: unset;
}
.postCardPhotoHolder {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.postCardPhoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.postCardPhotoArchives {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100);
}
.postCardTitle {
  width: 100%;
  text-align: left;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.postCardDate {
  width: 100%;
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.postCardDescription {
  font-style: italic;
  font-weight: 400;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-bottom: 1.5rem;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.postCardButton {
  background-color: black;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  width: fit-content;
  padding: 10px 2rem;
}
.postCardButton:hover {
  background-color: rgb(0, 0, 0, 0.8);
}

@media screen and (max-width: 1024px) {
  .postCard {
    grid-template-columns: 300px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .postCard {
    grid-template-columns: 200px 1fr;
    column-gap: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .postsGrid {
    border-top: 1px solid black;
    display: block;
  }
  .postCard {
    grid-template-columns: 1fr;
    border-top: none;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .postCardPhotoHolder {
    order: 2;
    height: 200px;
    width: 100%;
    max-width: 300px;
  }
  .postCardTitle {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .postCardDate {
    text-align: left;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .postCardDescription {
    margin-bottom: 1rem;
  }
  .postCardButton {
    margin-bottom: 20px;
  }
}

/*post*/
.postContainer {
  margin: 50px auto;
  padding: 0.5rem;
  max-width: 1000px;
}
.postImage {
  float: left;
  width: 33.33%;
  height: auto;
  object-position: center;
  object-fit: cover;
  margin: 0 2rem 1rem;
}
.postImageMobileNotification {
  display: none;
}
.postImageMobile {
  display: none;
}
.postTitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1rem;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.postSubtitle,
.postDate,
.postTime,
.postLocation,
.postTickets,
.postSignup {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
  margin: 1rem 0;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.postContent,
.postDescription,
.postLocation {
  white-space: pre-line;
  line-height: 1.5;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.postTicketsLink,
.postSignupLink {
  text-underline-offset: 2px;
  text-decoration: underline;
  text-transform: uppercase;
  text-align: center;
  color: red;
  opacity: 1;
  -webkit-text-fill-color: red;
  -webkit-opacity: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.postDescription {
  text-align: left;
  font-style: italic;
  margin-bottom: 1rem;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}

.postContent {
  text-align: left;
  margin-bottom: 1rem;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.postLinkDescription {
  text-align: left;
  font-weight: 600;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.postLink {
  text-align: left;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.postDocumentDownload {
  text-align: center;
  width: 120px;
  background-color: var(--black);
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  padding: 10px;
  margin-top: 0.5rem;
}

.post_album_box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.postAlbumMobileNotification {
  display: block;
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.post_album {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post_photo {
  width: 90%;
  height: 500px;
  object-fit: contain;
  object-position: center;
}
.post_chevron_left_holder {
  background-color: rgb(142, 142, 142);
  border-radius: 50px;
  position: absolute;
  top: 225px;
  left: 0rem;
  z-index: 1;
  height: 27.5px;
  width: 25px;
  transform: rotate(90deg);
  display: flex;
  justify-content: center;
  align-items: center;
}
.post_chevron_left_holder:hover {
  animation: leftChevron 750ms ease-in-out infinite;
}
.post_chevron_right_holder {
  background-color: rgb(142, 142, 142);
  border-radius: 50px;
  position: absolute;
  top: 225px;
  right: 0rem;
  z-index: 1;
  height: 27.5px;
  width: 25px;
  transform: rotate(-90deg);
  display: flex;
  justify-content: center;
  align-items: center;
}
.post_chevron_right_holder:hover {
  animation: rightChevron 750ms ease-in-out infinite;
}

@keyframes rightChevron {
  from {
    transform: translate(-10px) rotate(-90deg);
    opacity: 0.7;
  }
  to {
    transform: translate(0px) rotate(-90deg);
    opacity: 0.9;
  }
}
@keyframes leftChevron {
  from {
    transform: translate(10px) rotate(90deg);
    opacity: 0.7;
  }
  to {
    transform: translate(0px) rotate(90deg);
    opacity: 0.9;
  }
}
.post_chevron_left,
.post_chevron_right {
  width: 12px;
  height: auto;
  margin: auto;
  opacity: 0.8;
}
.postVideoDescription {
  display: block;
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.post_video {
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  position: relative;
  width: 90%;
  padding-bottom: 56.25%;
  height: 0;
  margin: auto;
  margin-bottom: 2rem;
}
.post_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .postContainer {
    margin: 1rem 0;
  }
  .postImage {
    width: 40%;
    margin: 0 1rem 1rem 0;
  }
  .postSubtitle,
  .postDate,
  .postTime,
  .postLocation,
  .postSignup,
  .postTickets {
    font-size: 1rem;
    margin: 0.5rem auto;
    font-weight: 700;
  }
  .postAlbumMobileNotification {
    font-size: 10px;
    margin-bottom: 0.25rem;
  }
  .post_album_box {
    flex-direction: column;
  }
  .post_chevron_left_holder,
  .post_chevron_right_holder {
    display: none;
  }
  .post_photo {
    max-width: 500px;
    margin: 0.25rem auto;
    height: unset;
  }
  .postVideoDescription {
    font-size: 10px;
    margin-bottom: 0.25rem;
  }
}

@media screen and (max-width: 576px) {
  .postContainer {
    margin: 0;
  }
  .postTitle {
    font-size: 1.375rem;
    font-weight: 800;
  }
  .postImage {
    display: none;
  }
  .postImageMobileNotification {
    display: block;
    margin-top: 0.5rem;
    font-size: 10px;
    font-weight: 300;
  }
  .postImageMobile {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
  }
  .postSubtitle,
  .postDate,
  .postTime,
  .postLocation,
  .postSignup,
  .postTickets {
    font-size: 1rem;
    margin: 0.5rem auto;
    font-weight: 700;
  }
  .postAlbumMobileNotification {
    margin-bottom: 0.125rem;
  }
  .post_photo {
    width: 100%;
    margin: 0.125rem auto;
    height: unset;
  }
  .postVideoDescription {
    margin-bottom: 0.125rem;
  }
  .post_video {
    width: 100%;
  }
}

/*footer*/
.footer_background {
  background-color: black;
  border-bottom: 1px solid var(--csz_red);
}
.footer_texts {
  padding: 2rem 0 2rem;
  font-weight: 300;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer_text {
  margin: 0.125rem 1rem;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  font-weight: 300;
  font-size: 0.85rem;
}

/*edit*/
.spinner_container {
  position: absolute;
  width: 220px;
  height: fit-content;
  margin: auto;
  left: 0;
  right: 0;
  top: 40vh;
  background-color: rgba(75, 75, 75, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  border: 1px solid rgb(30, 30, 30);
  padding: 20px 30px;
}
.spinner_message {
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  margin: 0 0 20px;
}
.spinner {
  height: 30px;
  width: 30px;
  border-radius: 30px;
  border: 5px solid rgba(255, 255, 255);
  border-left: 5px solid gray;
  animation: rotation 1s infinite;
}
@keyframes rotation {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@media screen and (max-width: 500px) {
  spinner_container {
    top: 30vh;
  }
}
.edit_container {
  width: 100%;
  max-width: 1000px;
  padding: 50px 50px 75px;
}
.edit_buttons,
.edit_buttons_events,
.edit_buttons_posts,
.edit_buttons_members {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin: 1rem auto;
  column-gap: 0.5rem;
}
@media screen and (max-width: 500px) {
  .edit_buttons_events,
  .edit_buttons_posts,
  .edit_buttons_members {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 1rem auto;
    row-gap: 0.5rem;
  }
}
.edit_button {
  border: 1px solid black;
  height: 2rem;
  padding: 0.5rem 0.25rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  background-color: rgb(186, 186, 186);
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.edit_button:hover {
  opacity: 0.95;
}
.edit_hr {
  height: 0.5px;
  background-color: black;
  border: none;
  max-width: 1000px;
  margin: 1rem auto;
}

.edit_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.select_box {
  display: grid;
  grid-template-columns: 100px 1fr 2rem;
  column-gap: 1rem;
  padding: 0 0.5rem;
}
.select_box_members {
  display: grid;
  grid-template-columns: 200px 1fr 2rem;
  column-gap: 1rem;
  padding: 0 0.5rem;
}
.select_chevron {
  width: 2rem;
  height: auto;
  transform: rotate(0deg);
  grid-area: chevron;
}
.select_chevron_rotation {
  transform: rotate(180deg);
}

.form_box {
  width: 100%;
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 1rem;
  margin: 1rem 0;
}
.form_label {
  text-align: right;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}
.form_data {
  text-align: center;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
  font-weight: 100;
  font-family: "Geologica", sans-serif;
  white-space: pre-line;
  margin-bottom: 0.5rem;
}
.form_data_title {
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
  font-weight: 500;
}
.form_data_movements {
  font-style: italic;
}
.form_input {
  width: 100%;
  background-color: white;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
  height: 40px;
  border: 1px solid black;
}
.form_textarea {
  width: 100%;
  background-color: white;
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
  height: 200px;
  resize: none;
  border: 1px solid black;
  white-space: pre-line;
}
.form_file_upload {
  align-self: center;
}
.form_checkbox {
  width: min-content;
  height: min-content;
  align-self: center;
}
.form_button {
  width: 200px;
  height: 40px;
  margin: 2rem;
  background-color: rgba(0, 0, 0);
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  border: none;
  font-weight: 400;
}
.form_button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.form_small_button {
  width: 200px;
  height: 40px;
  margin: 0.5rem 0.5rem 1rem;
  background-color: rgba(0, 0, 0);
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  border: none;
  font-weight: 400;
}
.form_small_button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.form_hr {
  height: 0.25px;
  background-color: black;
  border: none;
  max-width: 1000px;
  margin: 1rem auto;
}
@media screen and (max-width: 1000px) {
  .edit_container {
    margin: 50px auto;
  }
}
@media screen and (max-width: 750px) {
  .edit_container {
    padding: 20px 10px 50px;
  }
  .form_box {
    grid-template-columns: 1fr;
  }
  .form_label {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
.events_select_date,
.posts_select_date {
  grid-area: date;
  margin-bottom: 0.25rem;
}
.events_select_title,
.posts_select_title {
  grid-area: title;
}
.select_chevron {
  align-self: center;
}
.select_box {
  grid-template-columns: 1fr 2rem;
  grid-template-areas:
    "date chevron"
    "title chevron";
}
.members_select_author {
  grid-area: author;
  margin-bottom: 0.25rem;
}
.members_select_title {
  grid-area: title;
}
.select_box_members {
  grid-template-columns: 1fr 2rem;
  grid-template-areas:
    "author chevron"
    "title chevron";
}
select option {
  color: black;
  opacity: 1;
  -webkit-text-fill-color: rgb(0, 0, 0, 1);
  -webkit-opacity: 1;
}

/*modal*/
.modal {
  position: absolute;
  left: 0;
  right: 0;
  top: 40vh;
  margin: auto;
  height: 100px;
  width: 250px;
  padding: 50px 20px;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: rgb(18, 18, 18);
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
}
.modalMessage {
  text-align: center;
}
.modalButton {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 30px;
  margin-top: 10px;
  height: min-content;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
  cursor: pointer;
  border-radius: 10px;
}
.modalButton:hover {
  opacity: 0.9;
}

/*special classes*/
.error {
  margin-top: 0.5rem;
  display: none;
  color: red;
  opacity: 1;
  -webkit-text-fill-color: red;
  -webkit-opacity: 1;
  font-weight: 300;
}
.active {
  color: var(--csz_red);
  opacity: 1;
  -webkit-text-fill-color: var(--csz_red);
  -webkit-opacity: 1;
}
.active:hover {
  opacity: 1;
}
.clicked {
  background-color: black;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255, 1);
  -webkit-opacity: 1;
}
.mobileShow {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobileShow {
    display: block;
  }
}
.en,
.hr {
  display: none;
}
.hidden {
  display: none;
}
