/*z-index*/
/*
position:absolute
----------------
modal 100
main_menu_background (mobile) 90
newsCardDateHolder 89
submenu 98
footer_submenu 98
closeSubmenu 99
post_chevron_left_holder 1
post_chevron_right_holder 1
photos_modal 97
photos_modal_exit 99
blockDecorationPhoto 89
footerViolinDecoration 89
blockContainerBig 88
----------------
*/

html {
  overflow-x: hidden;
}
@font-face {
  font-family: Eczar;
  src: url(../fonts/Eczar/Eczar-VariableFont_wght.ttf);
}
:root {
  --black: rgb(7, 10, 0);
  --white: rgb(238, 242, 255);
}
* {
  box-sizing: border-box;
  font-family: Eczar;
}
body {
  background-color: var(--black);
  background-image: url(../webPhotos/bckg4000x4000.png);
  background-image: -webkit-image-set(url(../webPhotos/bckg4000x4000.webp));
  background-image: image-set(url(../webPhotos/bckg4000x4000.webp));
  background-position: top;
  background-size: 100%;
  background-repeat: repeat-y;
  overflow-x: hidden;
}
@media screen and (max-width: 750px) {
  body {
    background-size: 250%;
  }
}
@media screen and (max-width: 500px) {
  body {
    background-color: var(--black);
    background-image: none;
  }
}
nav {
  height: 100%;
}
.container {
  max-width: 1250px;
  margin: auto;
}

/*header*/
/*footer*/

header,
footer {
  position: relative;
}
.footerViolinDecoration {
  width: 150px;
  height: auto;
  height: intrinsic;
  position: absolute;
  bottom: 130px;
  right: -60px;
  rotate: 7deg;
  z-index: 89;
}
.footer_image {
  display: none;
  width: 100%;
  height: auto;
  height: intrinsic;
  object-fit: contain;
  clip-path: polygon(
    0% 10%,
    7% 0%,
    23% 5%,
    35% 0%,
    48% 4%,
    65% 0%,
    75% 5%,
    88% 0%,
    99% 4%,
    95% 14%,
    100% 20%,
    97% 30%,
    100% 46%,
    97% 59%,
    100% 72%,
    95% 83%,
    99% 95%,
    92% 100%,
    75% 97%,
    67% 100%,
    52% 94%,
    49% 100%,
    41% 94%,
    29% 100%,
    20% 94%,
    14% 100%,
    8% 93%,
    0% 100%,
    0% 86%,
    4% 76%,
    0% 66%,
    2% 54%,
    0% 40%,
    2% 26%
  );
}
.title_header_background {
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: top;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
#titleHeader {
  padding: 0.5rem;
  height: 50px;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header_title_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.headerLogoIcon {
  background-image: url(../icons/logo.jpg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 25px;
  width: 30px;
  margin-right: 0.5rem;
}
.headerTitleLink {
  color: rgb(255, 255, 255);
  font-weight: 400;
  filter: sepia(50);
}
.headerRightContainer {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.icons_container {
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icons_container_mobile {
  display: none;
}
.menu_icon {
  background-color: rgb(37, 37, 37);
  padding: 0.5rem;
  height: 2rem;
  border-radius: 5px;
  border: 0.5px solid rgba(255, 255, 255, 0.33);
  margin-left: 0.5rem;
  width: auto;
}
.menu_icon:hover {
  opacity: 0.9;
}
.menu_icon_link {
  height: 2rem;
}
.languageButtonsContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
.languageButtonsContainerMobile {
  display: none;
}
.languageButton {
  margin: 0 0.25rem;
  cursor: pointer;
  height: 1.375rem;
  width: 1.375rem;
  filter: grayscale(50);
}
#hrButtonDesktop,
#hrButtonMobile,
#hrButtonHero {
  background-image: url(../icons/HRflag.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#enButtonDesktop,
#enButtonMobile,
#enButtonHero {
  background-image: url(../icons/ENflag.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.languageActive {
  filter: none;
}
#burger-menu {
  width: 35px;
  cursor: pointer;
  display: none;
  filter: sepia(50);
}
#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;
  }
}
.opacity {
  animation: opacity 500ms ease-in;
}

/*main_menu*/
/*footer_main_menu*/
.main_menu_background {
  clip-path: polygon(100% 0, 100% 100%, 33% 81%, 0 100%, 0 0);
  padding-bottom: 20px;
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: center;
  background-size: cover;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.upper_footer_background {
  clip-path: polygon(70% 19%, 100% 0, 100% 100%, 0 100%, 0 0);
  padding-top: 20px;
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: top;
  background-size: cover;
}
.lower_footer_background {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: bottom;
  background-size: cover;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lower_footer_holder {
  padding: 0.5rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.lower_footer_text {
  font-size: 0.9rem;
  opacity: 0.95;
  margin: 0.25rem 2rem;
  color: white;
  font-weight: 400;
}
.icons_container_footer {
  display: none;
  margin: 0.25rem 2rem;
}
#main_menu,
#footer_main_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.menu_item {
  text-align: center;
  padding: 1rem 0;
  color: white;
  text-shadow: 2px 2px 3px #000000d0;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.menu_item:hover {
  opacity: 0.85;
}
#main_menu .menu_item {
  padding: 2rem 0;
}
#footer_main_menu .menu_item {
  padding: 2rem 0;
}
.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);
}
.submenuIconRotationOn {
  transform: rotate(0deg);
  transition: all 250ms ease-in-out;
}
.submenuIconRotationOff {
  transform: rotate(-90deg);
  transition: all 250ms ease-in-out;
}
.footer_submenuIconRotationOn {
  transform: rotate(-180deg);
  transition: all 250ms ease-in-out;
}
.footer_submenuIconRotationOff {
  transform: rotate(-90deg);
  transition: all 250ms ease-in-out;
}
.menu_item_link {
  color: white;
  padding: 0.33rem 0.5rem;
}
.menu_mobile_hr {
  opacity: 0.5;
  display: none;
}
#submenu,
#footer_submenu {
  display: none;
  width: fit-content;
  background-color: black;
  background-color: var(--black);
  height: fit-content;
  text-align: center;
  padding: 10px 30px;
  position: absolute;
  flex-direction: column;
  justify-content: center;
}
#submenu {
  z-index: 98;
  top: 130px;
}
#footer_submenu {
  z-index: 98;
  bottom: 130px;
}
#closeSubmenu {
  width: 30px;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 60px;
  display: none;
  z-index: 99;
  filter: sepia(50);
}
#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: 1000px) {
  .footerViolinDecoration {
    width: 120px;
    height: auto;
  height: intrinsic;
    position: absolute;
    bottom: 120px;
    right: -40px;
    rotate: 6deg;
    z-index: 89;
  }
  .main_menu_background {
    clip-path: none;
    padding-bottom: 0px;
  }
  .menu_item {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 750px) {
  .footerViolinDecoration {
    width: 100px;
   height: auto;
  height: intrinsic;
    position: absolute;
    bottom: 60px;
    right: -40px;
    rotate: 6deg;
  }
  .languageButtonsContainerDesktop {
    display: none;
  }
  .languageButtonsContainerMobile {
    width: 100%;
    display: flex;
    margin: 0.75rem 0;
  }
  .submenuIcon {
    background-image: url(../icons/menuWhite.svg);
    transform: unset;
  }

  #burger-menu {
    display: block;
  }
  .main_menu_background {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: none;
    width: 100%;
    position: absolute;
    top: 50px;
    clip-path: none;
  }
  #main_menu {
    width: 100%;
    flex-direction: column;
    padding: 0;
  }
  #main_menu .menu_item {
    padding: 1rem 0;
  }
  #submenu {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    top: 50px;
    background-color: black;
    background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
    background-position: center;
    background-size: cover;
  }
  .icons_container_desktop {
    display: none;
  }
  .icons_container_mobile {
    display: block;
    margin: 0.625rem 0 0.5rem;
  }
  .menu_mobile_hr {
    display: block;
    height: 0.125px;
    background-color: rgb(255, 255, 255);
    border: none;
    width: 100%;
  }
  .upper_footer_background {
    display: none;
  }
  .lower_footer_background {
    background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
    background-position: center;
    background-size: cover;
    height: fit-content;
    padding-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .lower_footer_holder {
    height: 120px;
    flex-direction: column;
    padding: 3rem 0;
  }
  .lower_footer_text {
    margin: 0.5rem auto;
  }
  .icons_container_footer {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .footerViolinDecoration {
    width: 80px;
    height: auto;
    bottom: 50px;
    right: -30px;
    rotate: 6deg;
  }
  .lower_footer_background {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*main*/
main {
  max-width: 100vw;
  overflow: hidden;
}
.block {
  padding: 75px 0 100px;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.blockTitleContainer {
  width: 90%;
  background-image: url(../webPhotos/sepiaWood.png);
  background-image: -webkit-image-set(url(../webPhotos/sepiaWood.webp));
  background-image: image-set(url(../webPhotos/sepiaWood.webp));
  background-position: center;
  background-size: cover;
  padding: 2rem;
  margin: auto;
  margin-bottom: 75px;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  /*  filter: sepia(50);*/
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blockTitle {
  text-align: center;
  font-size: 4rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
  color: white;
  overflow: hidden;
}

.blockTitleBowDecoration {
  width: 80%;
  height: auto;
  object-fit: contain;
  rotate: -1deg;
}
aside.blockDecorationPhotoHolder {
  height: 300px;
  width: 400px;
  position: absolute;
  z-index: 89;
  clip-path: polygon(
    0% 10%,
    7% 0%,
    23% 5%,
    35% 0%,
    48% 4%,
    65% 0%,
    75% 5%,
    88% 0%,
    99% 4%,
    95% 14%,
    100% 20%,
    97% 30%,
    100% 46%,
    97% 59%,
    100% 72%,
    95% 83%,
    99% 95%,
    92% 100%,
    75% 97%,
    67% 100%,
    52% 94%,
    49% 100%,
    41% 94%,
    29% 100%,
    20% 94%,
    14% 100%,
    8% 93%,
    0% 100%,
    0% 86%,
    4% 76%,
    0% 66%,
    2% 54%,
    0% 40%,
    2% 26%
  );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
aside.blockDecorationPhotoHolder:nth-of-type(5n-1) {
  background-image: url(../webPhotos/homepageDecoration1.jpeg);
}
aside.blockDecorationPhotoHolder:nth-of-type(5n-2) {
  background-image: url(../webPhotos/homepageDecoration2.jpeg);
}
aside.blockDecorationPhotoHolder:nth-of-type(5n-3) {
  background-image: url(../webPhotos/homepageDecoration3.jpeg);
}
aside.blockDecorationPhotoHolder:nth-of-type(5n-4) {
  background-image: url(../webPhotos/homepageDecoration4.jpeg);
}
aside.blockDecorationPhotoHolder:nth-of-type(5n) {
  background-image: url(../webPhotos/homepageDecoration5.jpeg);
}
aside.blockDecorationPhotoHolder:nth-of-type(odd) {
  left: -275px;
  rotate: 15deg;
}
/*aside.blockDecorationPhotoHolder:nth-of-type(odd):hover {
  rotate: -15deg;
  transition: all 1s ease-in-out;
}*/
aside.blockDecorationPhotoHolder:nth-of-type(even) {
  right: -275px;
  rotate: -15deg;
}
/*aside.blockDecorationPhotoHolder:nth-of-type(even):hover {
  rotate: 15deg;
  transition: all 1s ease-in-out;
}*/

.blockGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 5rem;
  column-gap: 2rem;
}
div.blockContainerBig {
  position: relative;
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: center;
  background-size: cover;
  width: 90%;
  margin: 0 auto 50px;
  padding: 50px;
  clip-path: polygon(7% 0, 93% 5%, 100% 100%, 0% 100%);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 88;
}
div.blockContainerBigSepia:nth-of-type(2n-1) {
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  filter: sepia(50);
}
div.blockContainerSmall {
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: center;
  background-size: cover;
  padding: 50px;
  clip-path: polygon(3% 0, 100% 3%, 100% 93%, 0% 100%);
  color: white;
}
div.blockContainerSmall:nth-of-type(4n-1) {
  clip-path: polygon(0 3%, 100% 0, 89% 100%, 6% 100%);
}
div.blockContainerSmall:nth-of-type(4n-2) {
  clip-path: polygon(5% 2%, 96% 4%, 100% 100%, 0 100%);
}
div.blockContainerSmall:nth-of-type(4n-3) {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}
.blockMembers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 1rem;
  column-gap: 1rem;
}
.blockLink {
  width: min-content;
  font-style: normal;
}
.blockSubtitle {
  text-align: center;
  text-decoration: underline;
  font-size: 2rem;
  margin: 2rem 0;
  font-weight: 600;
  font-style: normal;
}
.blockButton {
  text-decoration: underline;
  text-align: right;
  font-size: 1.125rem;
  margin: 0.25rem 0;
}
.blockInstrument {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 2px;
  filter: sepia(50);
}
.blockMember {
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
  margin-bottom: 0.0625rem;
  font-size: 1.125rem;
  filter: sepia(50);
}
.blockMemberPosition {
  text-align: center;
  font-style: italic;
  margin-bottom: 0.75rem;
  filter: sepia(50);
}
.blockParagraphPhoto {
  float: left;
  object-fit: contain;
  height: 200px;
  width: auto;
  margin-bottom: 0.25rem;
  margin-right: 0.5rem;
  clip-path: polygon(
    0% 10%,
    7% 0%,
    23% 5%,
    35% 0%,
    48% 4%,
    65% 0%,
    75% 5%,
    88% 0%,
    99% 4%,
    95% 14%,
    100% 20%,
    97% 30%,
    100% 46%,
    97% 59%,
    100% 72%,
    95% 83%,
    99% 95%,
    92% 100%,
    75% 97%,
    67% 100%,
    52% 94%,
    49% 100%,
    41% 94%,
    29% 100%,
    20% 94%,
    14% 100%,
    8% 93%,
    0% 100%,
    0% 86%,
    4% 76%,
    0% 66%,
    2% 54%,
    0% 40%,
    2% 26%
  );
}
.blockParagraph {
  text-align: justify;
  padding: 50px;
  color: white;
  font-size: 1.25rem;
  white-space: pre-line;
}
.blockRepertoire {
  text-align: center;
  width: 100%;
  padding: 50px;
  color: white;
  font-size: 1.25rem;
  filter: sepia(50);
}
.blockLink {
  text-align: center;
  text-transform: uppercase;
  color: white;
  opacity: 0.8;
  text-decoration: underline;
}
@media screen and (max-width: 1000px) {
  aside.blockDecorationPhotoHolder:nth-of-type(odd) {
    width: 250px;
    height: 170px;
    left: unset;
    translate: 0px -50px;
    left: -100px;
    rotate: -15deg;
  }
  aside.blockDecorationPhotoHolder:nth-of-type(even) {
    width: 250px;
    height: 170px;
    right: unset;
    translate: 0px -50px;
    right: -100px;
    rotate: 15deg;
  }
  .block {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .blockTitleContainer {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    padding: 2rem 10px 3rem;
    margin-bottom: 3rem;
  }
  .blockTitleBowDecoration {
    max-width: 650px;
    rotate: -2deg;
  }
  .blockTitle {
    font-size: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .blockParagraphPhoto {
    width: 100%;
    height: auto;
    float: unset;
    margin-right: 0px;
  }
}
@media screen and (max-width: 750px) {
  aside.blockDecorationPhotoHolder:nth-of-type(odd) {
    width: 150px;
    height: 100px;
    left: unset;
    translate: 0px -20px;
    left: 0px;
    rotate: -15deg;
  }
  aside.blockDecorationPhotoHolder:nth-of-type(even) {
    width: 150px;
    height: 100px;
    right: unset;
    translate: 0px -20px;
    right: 0px;
    rotate: 15deg;
  }
  .block {
    padding: 0;
  }
  .blockTitleContainer {
    margin-bottom: 2rem;
  }
  .blockTitleBowDecoration {
    max-width: 450px;
    rotate: -3deg;
  }
  .blockGrid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
    margin-bottom: 25px;
  }
  .blockButton {
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    margin: 0.25rem 0;
  }
  .blockTitle {
    font-size: 2rem;
  }
  .blockContainerBig {
    max-width: 600px;
    min-height: 250px;
  }
  .blockParagraph {
    font-size: 1rem;
    padding: 0;
  }
}
@media screen and (max-width: 500px) {
  aside.blockDecorationPhotoHolder:nth-of-type(odd) {
    width: 100px;
    height: 70px;
    left: unset;
    translate: 0px -20px;
    left: 0px;
    rotate: -15deg;
  }
  aside.blockDecorationPhotoHolder:nth-of-type(even) {
    width: 100px;
    height: 70px;
    right: unset;
    translate: 0px -20px;
    right: 0px;
    rotate: 15deg;
  }
  .blockTitleContainer {
    padding: 25px 10px 40px;
    margin-bottom: 15px;
  }
  .blockTitleBowDecoration {
    width: 100%;
    rotate: -5deg;
  }
  div.blockContainerBig {
    width: 100%;
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
    padding: 50px 10px 30px;
    margin-bottom: 25px;
  }
  .blockParagraph {
    padding-top: 0;
  }
  .blockInstrument {
    font-size: 1.5rem;
  }
}

/*events*/
.eventHolder {
  padding: 2rem 1rem;
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
clip-path: polygon(8% 0, 91% 0, 98% 9%, 100% 94%, 88% 100%, 11% 100%, 0 93%, 1% 8%);
}
.eventHolderTitleHolder {
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eventHolderTitle {
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
  color: white;
}
.eventPosterHolder{
    width:100%;
    display: flex;
    align-items:center;
    justify-content:center;
}
.eventPoster {
  width: 100%;
  max-width:500px;
  height: auto;
  height: intrinsic;
  margin: 0;
  padding: 0;
}
.eventProgramLinkHolder {
  margin: 1rem 0;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.eventProgramLinkButton {
  background-color: rgb(243, 255, 235);
  padding: 0.5rem 2rem;
  width: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.eventProgramLinkIcon {
  height: 1rem;
  margin-right: 0.5rem;
}
.eventProgramLink {
  text-align: center;
  color: black;
  font-size: 1rem;
  font-weight: 400 ;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  height: min-content;
}
.eventHolderInfoHolder {
  margin: 0;
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eventHolderInfo {
  color: white;
  font-size: 1.5rem;
  text-align: center;
  margin: 1rem 0;
}
.eventHolderDescription {
  white-space: pre-line;
}
.eventLink {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (max-width: 1000px) {
  .eventHolderTitle {
    font-size: 3rem;
  }
  .eventHolderInfo {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 750px) {
  .eventHolderTitleHolder {
    padding: 30px;
  }
  .eventHolderTitle {
    font-size: 2rem;
  }
  .eventHolderInfoHolder {
    padding: 1rem;
  }
  .eventHolderInfo {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .eventHolderTitleHolder {
    padding: 20px 10px;
  }
  .eventHolderInfoHolder {
    padding: 20px 10px;
  }
  .eventHolderInfo {
    font-size: 1.125rem;
  }
}

/*news*/
.newsCards {
  padding: 0 0.5rem 100px;
  margin: 0 auto;
  margin-top: -2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  row-gap: 5rem;
}
.newsCardForm {
  width: 100%;
  height: 350px;
  position: relative;
  margin: auto;
}
.newsCardDateHolder {
  width: min-content;
  height: min-content;
  position: relative;
  z-index: 89;
  padding: 1rem 2rem;
  background-color: var(--black);
  clip-path: polygon(95% 0, 100% 41%, 96% 100%, 0 100%, 0 0);
  translate: -2rem 2rem;
}
.newsCardDate {
  width: min-content;
  height: min-content;
  color: rgb(241, 241, 241);
  font-size: 1.25rem;
}
.newsCard {
  height: 100%;
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: none;
  position: absolute;
  clip-path: polygon(3% 0, 96% 0, 100% 100%, 0 100%);
}
.newsCardPhotoHolder {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.newsCardPhoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsCardTitleBackground {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10%;
  overflow: hidden;
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: center;
  background-size: 100%;
}
.newsCardTitle {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  width: 280px;
  white-space: nowrap;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: white;
  filter: sepia(50);
}
@media screen and (max-width: 1000px) {
  .newsCards {
    column-gap: 1rem;
  }
  .newsCardDateHolder {
    translate: -0.5rem 2rem;
  }
}
@media screen and (max-width: 750px) {
  .newsCards {
    grid-template-columns: 1fr;
    row-gap: 6rem;
    padding-bottom: 150px;
  }
  .newsCardForm {
    height: 300px;
    max-width: 500px;
    width: 90%;
  }
  .newsCardDateHolder {
    translate: 0px 2rem;
  }
  form.newsCardForm:nth-of-type(2n) .newsCard {
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  }
  form.newsCardForm:nth-of-type(2n) .newsCardTitleBackground {
    filter: sepia(50);
  }
}
@media screen and (max-width: 500px) {
  .newsCards {
    background-image: url(../webPhotos/bckg4000x4000.png);
    background-image: -webkit-image-set(url(../webPhotos/bckg4000x4000.webp));
    background-image: image-set(url(../webPhotos/bckg4000x4000.webp));
    background-position: center;
    background-size: 300%;
    row-gap: 4rem;
    padding-bottom: 100px;
  }
  .newsCardForm {
    width: 100%;
  }
  .newsCardPhotoHolder {
    height: 200px;
  }
  .newsCardTitleBackground {
    height: 100px;
  }
}
/*animacije news kartica*/

.imageHoverIn {
  animation: imageHoverIn 500ms ease-out;
  transform: rotate(10deg) scale(1.35);
  filter: grayscale(50);
}

.imageHoverOut {
  animation: imageHoverOut 300ms ease-out;
}
.titleHoverIn {
  animation: titleHoverIn 300ms ease-out;
  color: rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.15);
}

.titleHoverOut {
  animation: titleHoverOut 300ms ease-out;
  background-color: var(--color_4);
}

@keyframes imageHoverIn {
  0% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(0);
  }
  100% {
    transform: rotate(10deg) scale(1.35);
    filter: grayscale(50);
  }
}

@keyframes imageHoverOut {
  0% {
    transform: rotate(10deg) scale(1.35);
    filter: grayscale(50);
  }
  100% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(0);
  }
}
@keyframes titleHoverIn {
  0% {
    background-color: var(--color_4);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.15);
  }
}

@keyframes titleHoverOut {
  0% {
    color: rgba(0, 0, 0, 0.9);
    background-color: rgba(0, 0, 0, 0.15);
  }
  100% {
    color: rgba(0, 0, 0);
    background-color: var(--color_4);
  }
}

/*post*/
.post_date {
  width: 100%;
  color: white;
  font-weight: 500;
  font-size: 1.75rem;
  border: none;
  height: min-content;
  padding: 50px;
  padding-bottom: 0;
  margin-bottom: 1rem;
  text-align: left;
  filter: sepia(50);
}
.post_documents {
  margin: 0.5rem 0;
  width: 100%;
  padding: 50px;
  padding-top: 0;
  filter: sepia(50);
}
a.post_document {
  color: white;
  font-size: 1.125rem;
  text-decoration: underline;
  opacity: 0.85;
}
.post_links {
  margin: 0.5rem 0;
  width: 100%;
  padding: 50px;
  padding-top: 0;
  filter: sepia(50);
}
a.post_link {
  color: white;
  font-size: 1.125rem;
  height: min-content;
  text-decoration: underline;
  opacity: 0.85;
}
.post_album_box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.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: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  position: absolute;
  top: 230px;
  left: -0.5rem;
  z-index: 1;
  height: 2rem;
  width: 2rem;
  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: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  position: absolute;
  top: 230px;
  right: -0.5rem;
  z-index: 1;
  height: 2rem;
  width: 2rem;
  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(-5px) rotate(-90deg);
    opacity: 0.5;
  }
  to {
    transform: translate(0px) rotate(-90deg);
    opacity: 1;
  }
}
@keyframes leftChevron {
  from {
    transform: translate(5px) rotate(90deg);
    opacity: 0.5;
  }
  to {
    transform: translate(0px) rotate(90deg);
    opacity: 1;
  }
}
.post_chevron_left,
.post_chevron_right {
  width: 1rem;
  height: auto;
  margin: auto;
  opacity: 0.8;
}
.post_video {
  color: white;
  position: relative;
  width: 90%;
  padding-bottom: 56.25%;
  height: 0;
  margin: auto;
  margin-bottom: 1rem;
  clip-path: polygon(
    0% 10%,
    7% 0%,
    23% 5%,
    35% 0%,
    48% 4%,
    65% 0%,
    75% 5%,
    88% 0%,
    99% 4%,
    95% 14%,
    100% 20%,
    97% 30%,
    100% 46%,
    97% 59%,
    100% 72%,
    95% 83%,
    99% 95%,
    92% 100%,
    75% 97%,
    67% 100%,
    52% 94%,
    49% 100%,
    41% 94%,
    29% 100%,
    20% 94%,
    14% 100%,
    8% 93%,
    0% 100%,
    0% 86%,
    4% 76%,
    0% 66%,
    2% 54%,
    0% 40%,
    2% 26%
  );
}
.post_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 750px) {
  .post_documents,
  .post_links,
  .post_date {
    padding: 0;
  }
  .post_album_box {
    margin-bottom: 1rem;
    flex-direction: column;
  }
  .post_chevron_left_holder,
  .post_chevron_right_holder {
    display: none;
  }
  .post_photo {
    margin: 0.25rem 0;
    height: unset;
  }
  .post_video {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  h4.post_date {
    font-size: 1.25rem;
    padding: 0;
    text-align: right;
  }

  a.post_document,
  a.post_link {
    font-size: 1rem;
  }
  .post_photo {
    margin-bottom: 0.125rem;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  #post_left_chevron,
  #post_right_chevron {
    display: none;
  }
  .post_video {
    margin: 0 0 0.5rem;
  }
}

/*contact*/
.contact_form {
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact_box {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  width: 100%;
}
.contact_label {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--white);
}
.contact_input {
  border: none;
  height: 40px;
  color: black;
}
.contact_input:focus {
  color: black;
}
.contact_message {
  height: 200px;
  resize: none;
  border: none;
  color: black;
}
.contact_message:focus {
  color: black;
}
input.contact_button {
  background-color: rgba(44, 44, 44, 0);
  font-size: 1.125rem;
  color: white;
  height: 40px;
  width: 250px;
  margin: 3rem auto 4rem;
  border: 2px dashed rgba(255, 255, 255, 0.85);
}
.contact_button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 750px) {
  .contact_form {
    padding: 0;
  }
  .contact_button {
    margin: 2rem auto 3rem;
  }
}
@media screen and (max-width: 500px) {
  .contact_label {
    font-size: 1rem;
    filter: sepia(50);
  }

  input.contact_button {
    margin: 1rem auto;
  }
}

/*press*/
.pressTitle {
  font-size: 1.5rem;
  color: white;
  text-align: center;
  text-transform: uppercase;
  margin-top: 1rem;
  width: 80%;
  opacity: 1;
}
.pressVideo {
  max-height: 400px;
  width: 90%;
  max-width: fit-content;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 750px){
  .pressTitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px){
  .pressVideo {
    width: 100%;
  }
}

/*media*/
/*photos*/
/*video*/
.media_photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 3rem;
}
.media_photo_background {
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: center;
  background-size: cover;
  padding: 50px;
  height: 400px;
  width: 100%;
  clip-path: polygon(0 0, 100% 4%, 100% 92%, 0 100%);
  position: relative;
}
.media_photo_holder {
  height: 300px;
  width: 100%;
  clip-path: polygon(0 0, 100% 4%, 100% 92%, 0 100%);
  overflow: hidden;
}
div.media_photo_background:nth-of-type(4n-2) {
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}
div.media_photo_background:nth-of-type(4n-2) .media_photo_holder {
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}
div.media_photo_background:nth-of-type(4n-1) {
  clip-path: polygon(6% 0, 93% 0, 100% 100%, 0 100%);
}
div.media_photo_background:nth-of-type(4n-1) .media_photo_holder {
  clip-path: polygon(6% 0, 93% 0, 100% 100%, 0 100%);
}
div.media_photo_background:nth-of-type(4n + 2) {
  clip-path: polygon(6% 0, 93% 0, 100% 100%, 0 100%);
}
div.media_photo_background:nth-of-type(4n + 2) .media_photo_holder {
  clip-path: polygon(6% 0, 93% 0, 100% 100%, 0 100%);
}
.media_photo_author {
  color: white;
  filter: sepia(50);
  font-size: 8px;
  opacity: 0.75;
  translate: 0px 2px;
}
.media_photo {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.media_photo:hover {
  transform: scale(1.1);
  transition: all 500ms ease-in-out;
  cursor: pointer;
}

.photoHoverOut {
  transform: scale(1.1);
  animation: photoHoverOut 500ms ease-in-out;
}

@keyframes photoHoverOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.photos_modal {
  padding: 0 10px;
  position: absolute;
  z-index: 97;
  background-color: rgb(3, 3, 3);
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  border: none;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
}
.media_bar {
  height: 5px;
  width: 100%;
  background-color: var(--white);
  display: block;
  border-radius: 5px;
}
#photos_modal_exit {
  opacity: 0.9;
  display: block;
  position: absolute;
  z-index: 99;
  top: 1rem;
  left: 0.5rem;
  flex-direction: column;
  justify-content: center;
  width: 2rem;
}
#photos_modal_exit:hover {
  opacity: 0.75;
  rotate: 10deg;
  transition: all 300ms ease-in-out;
}
#modal_bar1 {
  transform: translateY(-5px);
  transform: translateY(4px) rotateZ(-45deg);
}
#modal_bar2 {
  opacity: 0;
}
#modal_bar3 {
  transform: translateY(5px);
  transform: translateY(-6px) rotate(45deg);
}
.photo_chevron {
  width: 80%;
  height: auto;
  align-self: center;
  opacity: 0.9;
}

.photo_chevron:hover {
  opacity: 0.75;
}
.left_chevron {
  rotate: 90deg;
}
.left_chevron:hover {
  animation: leftChevron2 750ms ease-in-out infinite;
}
.right_chevron {
  rotate: -90deg;
}
.right_chevron:hover {
  animation: rightChevron2 750ms ease-in-out infinite;
}

@keyframes rightChevron2 {
  from {
    transform: translateY(-5px);
  }
  to {
    transform: translateY(0px);
    rotate: -90deg;
  }
}
@keyframes leftChevron2 {
  from {
    transform: translateY(5px);
  }
  to {
    transform: translateY(0px);
  }
}

.modal_photos {
  height: 100%;
  position: relative;
  width: 100%;
}
.modal_photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

@media screen and (max-width: 1000px) {
  .media_videos {
    margin: 50px auto;
  }
  .media_photos {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 750px) {
  .media_videos {
    grid-template-columns: 1fr;
  }
  .photos_modal {
    display: none;
  }
  .photoHoverOut {
    transform: none;
    animation: none;
  }
  .media_photos {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .media_photo_background {
    padding: 30px;
    height: unset;
  }
  .media_photo_holder {
    height: fit-content;
    width: 100%;
  }
  .media_photo:hover {
    transform: none;
    cursor: unset;
  }
}
@media screen and (max-width: 500px) {
  .media_photos {
    row-gap: 0px;
  }
  .media_photo_author {
    padding-left: 3px;
    transform: translateY(-11px);
  }
  .media_photo_background {
    background-image: none;
    height: min-content;
    padding: 0;
    clip-path: none;
    display: flex;
    flex-direction: column;
  }
  .media_photo_holder {
    height: min-content;
    display: flex;
    padding: 0;
    clip-path: none;
  }
  div.media_photo_background:nth-of-type(4n-2) {
    clip-path: none;
  }
  div.media_photo_background:nth-of-type(4n-2) .media_photo_holder {
    clip-path: none;
  }
  div.media_photo_background:nth-of-type(4n-1) {
    clip-path: none;
  }
  div.media_photo_background:nth-of-type(4n-1) .media_photo_holder {
    clip-path: none;
  }
  div.media_photo_background:nth-of-type(4n + 2) {
    clip-path: none;
  }
  div.media_photo_background:nth-of-type(4n + 2) .media_photo_holder {
    clip-path: none;
  }
}

/*login*/
.login_form {
  background-image: url(../webPhotos/Test1.png);
  background-image: -webkit-image-set(url(../webPhotos/Test1.webp));
  background-image: image-set(url(../webPhotos/Test1.webp));
  background-position: center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  filter: sepia(50);
  width: 90%;
  max-width: 500px;
  margin: auto;
  color: white;
  padding: 50px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.5px;
}
.login_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.login_label {
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}
.login_input {
  width: 100%;
  height: 40px;
  border: 1px solid black;
  color: black;
}

.login_button {
  background-color: rgba(44, 44, 44, 0);
  font-size: 1.125rem;
  color: white;
  height: 40px;
  width: 200px;
  text-align: center;
  margin: 2rem auto;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.login_error {
  color: var(--white);
  font-size: 1.125rem;
}
@media screen and (max-width: 1000px) {
  .login_form {
    margin: 2rem auto;
  }
}
@media screen and (max-width: 500px) {
  .login_form {
    width: 100%;
  }
}
/*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;
  border: 1px solid rgb(30, 30, 30);
  padding: 20px 30px;
}
.spinner_message {
  color: white;
  margin: 0 0 20px;
}
.spinner {
  height: 30px;
  width: 30px;
  border-radius: 30px;
  border: 5px solid rgba(255, 255, 255);
  border-left: 5px solid var(--color_3);
  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;
  margin: 100px auto;
  padding: 50px 50px 75px;
  background-color: white;
}
.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;
}
.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: 200;
  background-color: rgb(186, 186, 186);
}
.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;
}
.form_data {
  text-align: center;
  color: black;
  font-weight: 100;
  font-family: "Geologica", sans-serif;
  white-space: pre-line;
  margin-bottom: 0.5rem;
}
.form_data_title {
  font-weight: 500;
}
.form_data_movements {
  font-style: italic;
}
.form_input {
  width: 100%;
  background-color: white;
  color: black;
  height: 40px;
  border: 1px solid black;
}
.form_textarea {
  width: 100%;
  background-color: white;
  color: black;
  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, 0.5);
  color: white;
  border: none;
  font-weight: 400;
}
.form_button:hover {
  background-color: rgba(0, 0, 0, 0.47);
}
.form_small_button {
  width: 200px;
  height: 40px;
  margin: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-weight: 400;
}
.form_small_button:hover {
  background-color: rgba(0, 0, 0, 0.47);
}
.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;
}

/*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;
}
.modalMessage {
  text-align: center;
}
.modalButton {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 30px;
  margin-top: 10px;
  height: min-content;
  color: white;
  cursor: pointer;
  border-radius: 10px;
}
.modalButton:hover {
  opacity: 0.9;
}

/*special classes*/
.error {
  margin-top: 0.5rem;
  display: none;
  color: rgb(255, 255, 255);
  font-weight: 300;
}
.active {
  border: 2px dashed rgba(255, 255, 255, 0.85);
}
.active:hover {
  opacity: 1;
}
.clicked {
  background-color: rgba(0, 0, 0, 0);
}
.clicked2 {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
}
.mobileShow {
  display: none;
}
@media screen and (max-width: 750px) {
  .mobileShow {
    display: block;
  }
}
.hidden {
  display: none;
}
.hr,
.en {
  display: none;
}
