@font-face {
  font-family: Grandstander;
  src: url(../fonts/Grandstander/Grandstander-VariableFont_wght.ttf);
}

:root {
  --black: rgb(0, 0, 0);
  --white: rgb(255, 255, 255);
  --beige: rgb(215, 204, 183);
  --beige_dark: rgb(98, 88, 70);
  --orange: #e15e01;
  --red: rgb(219, 0, 0);
  --green: #52722f;
}

* {
  box-sizing: border-box;
  font-family: Grandstander;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--beige);
}

.background {
  width: 100%;
  max-width: 1200px;
  background-image: url(../images/Pozadina_bež.webp);
  background-repeat: repeat;
  background-size: 100%;
  margin: auto;
  min-height: 100vh;
}

@media screen and (max-width: 750px) {
  .background {
    background-size: 200%;
  }
}

/*header*/
header {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  padding: 30px 10px;
  height: min-content;
}

.headerImage {
  width: 100%;
  height: auto;
  border-radius: 30px 30px 0 0;
  margin-bottom: 30px;
}
.headerImageMobile {
  display: none;
}
.languageButtonsContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 1rem;
}
.languageButtonsContainerMobile {
  display: none;
}
.languageButtonsContainerDesktop {
  position: absolute;
  background-color: var(--black);
  padding: 0.5rem;
  top: 30px;
}
.languageButton {
  margin: 0 0.25rem;
  cursor: pointer;
}
.languageActive {
  color: orange;
  font-weight: 900;
}
.mobile_title_menu {
  padding: 0.5rem;
  display: none;
  background-color: var(--black);
  flex-direction: row;
  width: 100%;
  height: 40px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.75);
}
.main_menu_background {
  width: 100%;
  background-color: var(--black);
  padding: 0 1rem;
}

#main_menu {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.menu_item {
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  cursor: pointer;
}
#main_menu .menu_item {
  padding: 1rem 0;
}
.menu_item_link {
  color: var(--white);
}
.menu_item_link:hover {
  opacity: 0.9;
}
.menuHr {
  border: none;
  height: 0.5px;
  background-color: rgba(255, 255, 255, 0.5);
}
.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;
}
#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;
  }
}
.opacity {
  animation: opacity 500ms ease-in;
}
#submenu {
  display: none;
  width: fit-content;
  background-color: var(--black);
  border: 1px solid black;
  border-top: none;
  height: fit-content;
  text-align: center;
  padding: 10px 30px;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  z-index: 95;
}
#submenu .menu_item_link:hover {
  opacity: 0.9;
}
#closeSubmenu {
  width: 30px;
  cursor: pointer;
  position: absolute;
  right: 5px;
  display: none;
  z-index: 99;
}
#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: 750px) {
  header {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .main_menu_background {
    position: absolute;
    display: none;
  }
  #burger-menu {
    display: block;
  }
  .headerImage {
    border-radius: 0;
    margin-bottom: 0;
  }
  .languageButtonsContainerDesktop {
    display: none;
  }
  .languageButtonsContainerMobile {
    display: flex;
  }
  .mobile_title_menu {
    display: flex;
  }
  #main_menu {
    flex-direction: column;
  }
  #main_menu .menu_item {
    padding: 0.5rem 0;
  }
  #submenu {
    background-color: var(--black);
    width: 100%;
    left: 0;
  }
  .submenuIcon {
    background-image: url(../icons/menuWhite.svg);
    transform: unset;
  }
}
@media screen and (max-width: 500px) {
  .headerImageMobile {
    display: block;
  }
  .headerImageDesktop {
    display: none;
  }
}

/*main*/
main {
  min-height: 100vh;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 30px 2px;
}
.indexSubtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.mainTitle {
  font-size: 2rem;
  font-weight: 800;
  width: fit-content;
  /* background-image: linear-gradient(-90deg, black, var(--orange));
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;*/
  text-align: center;
  padding: 0 3px;
}
.mainTitleUnderline {
  background-image: linear-gradient(-90deg, #a92d0a, #cb6f31);
  height: 8px;
  width: 100%;
  border-radius: 5px;
}
.mainTitleUnderlineArchives {
  filter: grayscale(100);
}
.mainTitleHolderInner {
  width: fit-content;
}
.mainTitleHolder {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.mainSubtitle {
  text-align: center;
}
.mainNotification {
  text-align: center;
  margin: 1rem auto;
}
.mainLink {
  background-image: linear-gradient(90deg, #a92d0a, #cb6f31);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.mainLink:hover {
  opacity: 0.85;
}
.mainArticle {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 400;
  margin: 1rem auto 2rem;
  padding: 2rem 0.5rem;
  text-align: center;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.smallTitle {
  padding: 0 3px;
}
.block {
  border: 2px solid black;
  padding: 10px 5px;
  border-radius: 10px;
  background-color: var(--beige_light);
  margin-bottom: 2rem;
}
.blockTitle {
  width: 100%;
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
.blockHr {
  border: none;
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0.5rem 0;
}
.blockText {
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7; /* number of lines to show */
  line-clamp: 7;
  -webkit-box-orient: vertical;
}

.readMoreButton {
  padding: 10px 0;
  margin: 0 auto;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--beige);
  color: black;
  font-weight: 700;
  cursor: pointer;
}
.blockBig {
  border: 2px solid black;
  padding: 10px 5px;
  border-radius: 10px;
  background-color: var(--beige);
  margin-bottom: 2rem;
}
.blockBigTitle {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.blockBigHr {
  border: none;
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0.5rem 0;
}
.blockBigText {
  margin-bottom: 0.5rem;
}
.organizationImageMobile {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  float: unset;
  margin: 0 auto;
}
.organizationImageDesktop {
  display: none;
}

@media screen and (min-width: 750px) {
  .indexSubtitle {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .mainArticle {
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 400;
    margin: 1rem auto 2rem;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }
  .mainTitle {
    font-size: 3.5rem;
    text-align: right;
  }
  .mainTitleHolder {
    display: flex;
    margin-bottom: 2rem;
  }
  .mainSubtitle {
    font-size: 1.5rem;
  }
  .block {
    padding: 30px;
  }
  .blockBig {
    padding: 30px;
  }
  .organizationImageDesktop {
    display: block;
    width: 50%;
    max-width: 300px;
    height: auto;
    float: left;
    margin: 1rem;
  }
  .organizationImageMobile {
    display: none;
  }
}

/*licence*/
.licenceContainer {
  border: 2px solid black;
  padding: 30px;
  /* border-radius: 10px;*/
  background-color: var(--beige);
  background-color: rgba(255, 255, 255, 0.35);
}
.licenceGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 150px;
  column-gap: 3rem;
}
.licenceText {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.licenceTitleHolder {
  width: 100%;
  display: flex;
}
.licenceTitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  width: min-content;
  color: var(--orange);
  background-image: linear-gradient(90deg, #a92d0a, #cb6f31);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.licenceSubtitle {
  width: 100%;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.licenceInfo {
  line-height: 1.5rem;
}
.licenceImage {
  width: 150px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}
.licenceHr {
  border: none;
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0.5rem 0;
}
.licenceImage {
  width: 150px;
  height: auto;
  object-fit: contain;
  justify-self: center;
}
.licenceArrow {
  height: 1rem;
  width: auto;
  rotate: -90deg;
  margin: 0 5px;
}
.licenceButton {
  margin-top: 0.5rem;
  background-color: var(--black);
  color: white;
  padding: 7px 10px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.licenceButton:hover {
  background-color: rgb(75, 75, 75);
}

@media screen and (max-width: 750px) {
  .licenceContainer {
    border: none;
    padding: 10px 5px;
    border-radius: 0;
    background-color: unset;
    margin-bottom: 0;
  }
  .licenceGrid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  .licenceTitleHolder {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .licenceText {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .licenceImage {
    order: 2;
    margin-top: 2rem;
    border-radius: 0;
  }
  .licenceButton {
    max-width: 280px;
  }
  .licenceHr {
    display: none;
  }
}

/*donate*/
.donateContainer {
  border: 2px solid black;
  padding: 30px;
  /* border-radius: 10px;*/
  background-color: var(--beige);
  background-color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}
.donateGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 280px;
  column-gap: 3rem;
  margin-bottom: 2rem;
}
.donateText {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.donateTitleHolder {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.donateTitle {
  width: min-content;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  color: var(--green);
  background-image: linear-gradient(-90deg, #a92d0a, #cb6f31);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.donateSubtitle {
  width: 100%;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.donateInfo {
  width: 100%;
  line-height: 1.5rem;
  text-align: right;
}
.donateImage {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}
.donateHr {
  border: none;
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0.5rem 0;
}
.barkodImage {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}
.donateArrow {
  height: 1rem;
  width: auto;
  rotate: -90deg;
}
.donateButton {
  margin-top: 1rem;
  border: 1px solid black;
  padding: 10px;
  width: 100%;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donateButton:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 750px) {
  .donateContainer {
    border: none;
    padding: 10px 5px;
    border-radius: 0;
    background-color: unset;
    margin-bottom: 0;
  }
  .donateGrid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  .donateTitleHolder {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .donateText {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .donateInfo {
    text-align: center;
  }
  .donateImage {
    order: 2;
    margin-top: 2rem;
    border-radius: 0;
  }
  .donateHr {
    display: none;
  }
}

/*donate*/
.pristupnicaContainer {
  border: 2px solid black;
  padding: 30px;
  /* border-radius: 10px;*/
  background-color: var(--beige);
  background-color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}
.pristupnicaGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 300px;
  column-gap: 3rem;
  margin-bottom: 2rem;
}
.pristupnicaText {
  text-align: right;
}
.pristupnicaTitleHolder {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.pristupnicaTitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  color: var(--green);
  background-image: linear-gradient(-90deg, #a92d0a, #cb6f31);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.pristupnicaSubtitle {
  width: 100%;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.pristupnicaInfo {
  line-height: 1.5rem;
}
.pristupnicaImage {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  min-height: 350px;
}
.pristupnicaHr {
  border: none;
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0.5rem 0;
}
.pristupnicaArrow {
  height: 1rem;
  width: auto;
  rotate: -90deg;
}
.pristupnicaButton {
  margin-top: 1rem;
  border: 1px solid black;
  padding: 10px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pristupnicaButton:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 750px) {
  .pristupnicaContainer {
    border: none;
    padding: 10px 5px;
    border-radius: 0;
    background-color: unset;
    margin-bottom: 0;
  }
  .pristupnicaGrid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  .pristupnicaTitleHolder {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .pristupnicaText {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pristupnicaImage {
    order: 2;
    margin-top: 2rem;
    border-radius: 0;
    min-height: unset;
  }
  .pristupnicaHr {
    display: none;
  }
}

/*statute*/
.statuteContainer {
  border: 2px solid black;
  padding: 30px;
  /* border-radius: 10px;*/
  background-color: var(--beige);
  background-color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}
.statuteGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 280px 1fr;
  column-gap: 3rem;
  margin-bottom: 2rem;
}
.statuteText {
  text-align: left;
}
.statuteTitleHolder {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.statuteSubtitle {
  width: 100%;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.statuteTitle {
  width: min-content;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  color: var(--green);
  background-image: linear-gradient(-90deg, #a92d0a, #cb6f31);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.statuteImage {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}
.statuteHr {
  border: none;
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0.5rem 0;
}
.statuteArrow {
  height: 1rem;
  width: auto;
  rotate: -90deg;
}
.statuteButtonsHolder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.statuteButton {
  margin-top: 1rem;
  border: 1px solid black;
  padding: 10px;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.statuteButton:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 750px) {
  .statuteContainer {
    border: none;
    padding: 10px 5px;
    border-radius: 0;
    background-color: unset;
    margin-bottom: 0;
  }
  .statuteGrid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  .statuteTitleHolder {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .statuteText {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .statuteImage {
    order: 2;
    margin-top: 2rem;
    border-radius: 0;
  }
  .statuteButtonsHolder {
    align-items: center;
  }
  .statuteHr {
    display: none;
  }
}

/*contact*/
.contactContainer {
  border: 2px solid black;
  padding: 30px;
  /*border-radius: 10px;*/
  background-color: var(--beige);
  background-color: rgba(255, 255, 255, 0.35);
}
.contactGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 3rem;
}
.contactText {
  text-align: left;
}
.contactTitleHolder {
  width: 100%;
  display: flex;
}
.contactTitle {
  width: min-content;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  color: var(--green);
  background-image: linear-gradient(90deg, #a92d0a, #cb6f31);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.contactSubtitle {
  width: 100%;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.contactInfo {
  line-height: 1.25rem;
}
.contactLink {
  background-image: linear-gradient(90deg, #a92d0a, #cb6f31);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.contactSocialIcon {
  background-color: rgb(23, 23, 23);
  padding: 0.25rem 0.375rem;
  height: 30px;
  border-radius: 5px;
  width: auto;
  opacity: 0.75;
  margin-right: 5px;
}
.contactSocialIcon:hover {
  opacity: 0.67;
}
.contactImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  filter: grayscale(100);
}
.contactHr {
  border: none;
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0.5rem 0;
}

@media screen and (max-width: 750px) {
  .contactContainer {
    border: none;
    padding: 10px 5px;
    border-radius: 0;
    background-color: unset;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
  .contactTitleHolder {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .contactText {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contactImage {
    order: 2;
    margin-top: 2rem;
    border-radius: 0;
  }
  .contactHr {
    display: none;
  }
}

/*footer*/
footer {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footerTextBackground {
  height: 100%;
  width: 100%;
  min-height: 100px;
  background-color: var(--orange);
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 30px 30px;
}
.footer_text {
  color: white;
  font-size: 0.9rem;
}
@media screen and (max-width: 750px) {
  footer {
    padding: 0;
  }
  .footerTextBackground {
    border-radius: 0;
    min-height: 75px;
  }
  .footer_text {
    font-size: 0.8rem;
  }
}

/*posts === index*/
.postsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
  margin: 2rem 0;
  padding: 0 5px;
}
.cardForm {
  justify-self: center;
  width: 100%;
  max-width: 500px;
}
.postCard {
  width: 100%;
  max-width: 500px;
  cursor: pointer;
  border: none;
  margin: auto;
}
.postCardTitleBackground {
  background-color: var(--black);
  padding: 2rem 1rem 2.5rem;
}
.postCardTitle {
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
  color: rgb(242, 242, 242);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.postCardHr {
  border: none;
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.25);
}
.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);
}
.imageHoverIn {
  animation: imageHoverIn 500ms ease-out;
  transform: rotate(15deg) scale(1.35);
  filter: grayscale(50);
}
.imageHoverInArchives {
  animation: imageHoverInArchives 500ms ease-out;
  transform: rotate(15deg) scale(1.35);
  filter: grayscale(50);
}

.imageHoverOut {
  animation: imageHoverOut 300ms ease-out;
}
.imageHoverOutArchives {
  animation: imageHoverOutArchives 300ms ease-out;
}
.titleHoverIn {
  animation: titleHoverIn 500ms ease-out;
  background-color: rgb(40, 40, 40);
}

.titleHoverOut {
  animation: titleHoverOut 300ms ease-out;
  background-color: var(--black);
}

@keyframes imageHoverIn {
  0% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(0);
  }
  100% {
    transform: rotate(15deg) scale(1.35);
    filter: grayscale(50);
  }
}
@keyframes imageHoverInArchives {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(15deg) scale(1.35);
  }
}

@keyframes imageHoverOut {
  0% {
    transform: rotate(15deg) scale(1.35);
    filter: grayscale(50);
  }
  100% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(0);
  }
}

@keyframes imageHoverOutArchives {
  0% {
    transform: rotate(15deg) scale(1.35);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes titleHoverIn {
  0% {
    background-color: var(--black);
  }
  100% {
    background-color: rgb(40, 40, 40);
  }
}

@keyframes titleHoverOut {
  0% {
    background-color: rgb(40, 40, 40);
  }
  100% {
    background-color: var(--black);
  }
}
@media screen and (max-width: 750px) {
  .postsGrid {
    grid-template-columns: 1fr;
    margin: 1rem 0;
  }
  .postCardPhotoHolder {
    height: 200px;
  }
  .postCardTitleBackground {
    padding: 1.25rem 0 1.5rem;
  }
}

/*post*/
.postContainer {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.postContent,
.postDescription,
.postLocation {
  white-space: pre-line;
  line-height: 1.5;
}
.postTitleImage {
  float: left;
  width: 400px;
  height: auto;
  margin: 0 1rem 1rem;
}
.postTitle {
  font-size: 3rem;
  font-weight: 800;
  width: fit-content;
  /* background-image: linear-gradient(-90deg, black, var(--orange));
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;*/
  text-align: center;
  padding: 0 3px;
}
.postTitleUnderline {
  background-image: linear-gradient(90deg, #a92d0a, #cb6f31);
  height: 5px;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 2rem;
}
.postTitleHolderInner {
  width: fit-content;
}
.postTitleHolder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.postSubtitle {
  font-size: 1.5rem;
  font-weight: 800;
  width: fit-content;
  /* background-image: linear-gradient(-90deg, black, var(--orange));
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;*/
  text-align: center;
  padding: 0 3px;
  margin-bottom: 1rem;
}
.postDate,
.postTime,
.postLocation,
.postTickets {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
}

.postTicketsLink {
  text-underline-offset: 2px;
  text-decoration: underline;
  text-transform: uppercase;
  text-align: center;
  background-image: linear-gradient(90deg, #a92d0a, #cb6f31);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.postDescription {
  text-align: center;
  font-style: italic;
  margin-bottom: 1rem;
}

.postContent {
  text-align: center;
  margin-bottom: 1rem;
}
.postLinkDescription {
  text-align: center;
  font-size: 1.125rem;
}
.postVideoDescription {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.postDocumentOpen,
.postDocumentDownload {
  text-align: center;
  width: 120px;
  background-color: var(--black);
  background-image: linear-gradient(#a92d0a, #cb6f31);
  color: white;
  padding: 10px;
  margin: 0.5rem;
}

.postLink {
  text-align: center;
  background-image: linear-gradient(90deg, #a92d0a, #cb6f31);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.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: 2rem;
}
.post_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 750px) {
  .postTitle {
    font-size: 2rem;
  }
  .postTitleImage {
    float: unset;
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: 0 0 1rem;
  }
  .postDate,
  .postTime,
  .postLocation,
  .postTickets {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
  }
  .postTitleUnderline {
    margin-bottom: 1rem;
  }
  .postVideoDescription {
    margin-bottom: 0rem;
  }
  .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) {
  .post_photo {
    margin-bottom: 0.125rem;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  #post_left_chevron,
  #post_right_chevron {
    display: none;
  }
}

/*login*/
.login_form {
  filter: sepia(50);
  width: 90%;
  max-width: 500px;
  margin: auto;
  padding: 50px;
  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;
  color: black;
}
.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;
  height: 40px;
  width: 180px;
  text-align: center;
  margin: 2rem auto;
  border: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
}
.login_error {
  text-align: center;
  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(--orange);
  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;
  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;
}
@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: 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;
}

/*arhiva*/
.arhiva_link_container {
  margin-top: 320px;
  padding: 2rem 0;
  width: 100%;
  text-align: center;
  background-color: gray;
}
.arhivaIcon {
  height: 1rem;
  margin-right: 0.5rem;
}
.arhiva_link {
  width: 100%;
  text-align: center;
  color: white;
  text-decoration: underline 1px;
  font-size: 1.25rem;
}
.arhiva_link:hover {
  opacity: 0.85;
}

/*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: red;
  font-weight: 300;
}
.active {
  color: var(--orange);
}
.active:hover {
  opacity: 1;
}
.clicked {
  background-color: rgba(0, 0, 0, 0);
}
.clicked2 {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
}

.emptyMessage {
  text-align: center;
  margin: 2rem auto;
}

.mobileShow {
  display: none;
}
@media screen and (max-width: 750px) {
  .mobileShow {
    display: block;
  }
}

.hidden {
  display: none;
}

.en,
.hr {
  display: none;
}
