* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  -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(171, 37, 37);
  --color_3: rgb(0, 76, 103);
  --color_4: rgb(21, 21, 21);
}

html,
body {
  overflow-x: hidden;
}
body {
  background-color: var(--color_1);
  background-image: url(../images/TGOBackground3_4000x4000.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  a {
    color: var(--color_2);
  }
}
/*box, container, holder, block...*/
.container {
  max-width: 1250px;
  margin: auto;
}
.block {
  background-color: rgba(255, 255, 255, 0);
  padding: 50px 20px;
}
.contentBlock {
  background-color: var(--color_3);
  border-radius: 30px;
  color: var(--color_1);
  padding: 50px;
  margin-bottom: 2rem;
}
.contentCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
}
.contentCard {
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: none;
  border-radius: 30px;
}
.contentCardPhotoHolder {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.contentCardPhoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50);
}
.contentCardTitleBackground {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10%;
  background-color: var(--color_4);
}
.contentCardTitle {
  color: var(--color_1);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.contentHolder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 1rem;
  column-gap: 1rem;
}

.contentTitle {
  color: var(--color_1);
  height: min-content;
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.contentTitle_V2 {
  color: var(--color_1);
  height: min-content;
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.contentSubtitle {
  text-align: center;
  margin: -0.5rem auto 2rem;
}
.contentSmallTitle {
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.contentImage {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: 30px;
  justify-self: center;
  align-self: center;
}
.contentImage_V2 {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: contain;
  border-radius: 30px;
  justify-self: center;
  align-self: center;
}
.contentParagraph {
  height: min-content;
  line-height: 1.5;
  align-self: center;
  margin: 0.5rem auto 1.5rem;
}
.contentLink {
  opacity: 0.75;
  color: var(--color_1);
  font-style: italic;
  text-decoration: underline;
}
.contentHr {
  height: 0.5px;
  background-color: var(--color_1);
  border: none;
  width: 100%;
  margin: 1rem auto;
}

.contentMembersHolder {
  margin: 2rem 0;
}
.contentMembers {
  text-align: center;
  margin: 0.5rem 0;
  font-size: 1.125rem;
}
.contentFriends {
  margin-top: 75px;
}

.contentFriend {
  width: 100%;
  display: grid;
  grid-template-columns: 250px 1fr;
  column-gap: 2rem;
  margin: 2rem auto 3rem;
}
.contentFriend:nth-of-type(2n) {
  grid-template-columns: 1fr 250px;
}
.contentFriendHr {
  height: 0.5px;
  background-color: var(--color_1);
  border: none;
  width: 100%;
  opacity: 0.5;
}
div.contentFriend:nth-of-type(2n) .contentFriendPhotoHolder {
  order: 1;
}

.contentFriendPhoto {
  width: 100%;
  border-radius: 30px;
  object-fit: contain;
  margin-bottom: 10px;
}
.contentFriendTitle {
  text-align: left;
  font-size: 1.125rem;
}
.contentFriendParagraph {
  text-align: left;
  font-style: italic;
  line-height: 1.25;
}

@media screen and (max-width: 750px) {
  .block {
    padding: 30px 10px;
    height: min-content;
  }
  .contentBlock {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0;
    color: var(--color_4);
    padding: 0;
    margin: 0;
  }
  .contentCards {
    grid-template-columns: 1fr;
  }
  .contentCard {
    border-radius: 0;
  }
  .contentCardTitleBackground {
    /*background-color: var(--color_3);*/
  }
  .contentCardTitle {
    color: white;
  }
  .contentHolder {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .contentHolder .contentParagraph {
    margin-bottom: 0;
  }
  .contentTitle {
    font-size: 2rem;
    color: var(--color_4);
  }
  .contentTitle_V2 {
    font-size: 2rem;
    color: var(--color_2);
  }
  .contentSubtitle {
    font-size: 1.25rem;
    text-align: center;
    margin: -1rem auto 1rem;
  }
  .contentImage {
    border-radius: 0;
    order: -1;
    min-height: unset;
    max-height: 300px;
  }
  .contentImage_V2 {
    border-radius: 0;
    order: 2;
  }
  .contentLink {
    color: var(--color_3);
  }
  .contentHr {
    background-color: var(--color_3);
  }
}

@media screen and (max-width: 1000px) {
  .contentFriends {
    margin: 35px auto;
  }
  .contentFriend {
    column-gap: 1rem;
  }
}

@media screen and (max-width: 750px) {
  .contentFriend {
    grid-template-columns: 180px 1fr;
    margin: 1rem 0 2rem;
  }
  .contentFriend:nth-of-type(2n) {
    grid-template-columns: 1fr 180px;
  }
  .contentFriendHr {
    background-color: var(--color_3);
    margin: 0.25rem 0 0.5rem;
  }
  .contentFriendPhoto {
    border-radius: 10px;
  }
}
@media screen and (max-width: 500px) {
  .contentFriends {
    margin: 0;
  }
  .contentFriend {
    grid-template-columns: 1fr;
  }
  .contentFriend:nth-of-type(2n) {
    grid-template-columns: 1fr;
  }
  .contentFriendPhotoHolder {
    margin-bottom: 0.5rem;
  }
  div.contentFriend:nth-of-type(2n) .contentFriendPhotoHolder {
    order: unset;
  }

  .contentFriendTitle {
    text-align: center;
  }
  .contentFriendParagraph {
    text-align: center;
  }
}

/*header*/
.decorationLine {
  width: 100%;
  border-top: 12px dashed var(--color_2);
  position: absolute;
  top: 250px;
  z-index: -1;
  display: none;
}
@media screen and (max-width: 750px) {
  .decorationLine {
    display: none;
  }
}
.title_header_background {
  background-color: var(--color_3);
}
#titleHeader {
  height: 50px;
  padding: 10px;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.headerTitleLink {
  color: rgb(255, 255, 255);
}
.headerTitleLink:hover {
  opacity: 0.95;
}
.headerRightContainer {
  display: flex;
  flex-direction: row;
}
.languageButtonsContainer {
  display: flex;
  flex-direction: row;
  color: white;
  justify-content: center;
}
.languageButtonsContainerDesktop {
  margin-left: 1rem;
}
.languageButtonsContainerMobile {
  display: none;
}
.languageButton {
  margin: 0 0.25rem;
  text-transform: uppercase;
  cursor: pointer;
}
.languageActive {
  color: red;
  font-weight: 900;
}
#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);
  background-color: var(--color_4);
}
#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_background {
  background-color: var(--color_4);
}
#main_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 0 10px;
  z-index: 95;
}
.menu_item {
  height: min-content;
  text-align: center;
  padding: 1rem 0;
  color: white;
  letter-spacing: 0px;
}
li.menu_item:hover {
  color: var(--color_2);
  transition: all 200ms;
}
.submenuIcon {
  display: inline-block;
  height: 0.75rem;
  width: 1rem;
  margin-right: 0.125rem;
  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;
}

.menu_item_link {
  color: white;
}
.menu_item_link:hover {
  color: var(--color_2);
  transition: all 200ms;
}
.icons_container {
  text-align: center;
  height: 1rem;
}
.icons_container_mobile {
  display: none;
}
.menu_icon {
  height: 1rem;
  width: auto;
  margin-right: 0.5rem;
}
.menu_icon:hover {
  opacity: 0.9;
}
.menu_mobile_hr {
  display: none;
}
#submenu,
#submenu_2 {
  display: none;
  width: fit-content;
  background-color: var(--color_4);
  height: fit-content;
  text-align: center;
  padding: 10px 30px;
  position: absolute;
  flex-direction: column;
  justify-content: center;
}
#submenu {
  z-index: 96;
}
#submenu_2 {
  z-index: 98;
}
#closeSubmenu,
#closeSubmenu_2 {
  width: 30px;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 60px;
  display: none;
}
#closeSubmenu {
  z-index: 97;
}
#closeSubmenu_2 {
  z-index: 99;
}
#closeSubmenu:hover,
#closeSubmenu_2:hover {
  opacity: 0.9;
}
#bar4,
#bar7 {
  transform: translateY(4px) rotateZ(-45deg);
  animation: bar1 500ms ease-out;
  background-color: var(--color_2);
}
#bar5,
#bar8 {
  opacity: 0;
}
#bar6,
#bar9 {
  transform: translateY(-6px) rotate(45deg);
  animation: bar3 500ms ease-out;
}
.start #bar4,
.start #bar7 {
  transform: translateY(-5px);
  animation: bar1start 500ms ease-out;
}
.start #bar6,
.start #bar9 {
  transform: translateY(5px);
  animation: bar3start 500ms ease-out;
}

@media screen and (max-width: 1000px) {
  .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,
  #submenu_2 {
    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: rgb(255, 255, 255);
    border: none;
    width: 100%;
  }
}

/*index*/
h1.TGOtitle_1 {
  text-transform: uppercase;
  color: var(--color_1);
  height: min-content;
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
h1.TGOtitle_2 {
  text-transform: uppercase;
  display: none;
  height: 0;
  margin: 0;
}
.events_main_holder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
  column-gap: 2rem;
}
.events_holder {
  margin-bottom: 1rem;
}
.events_title {
  height: min-content;
  font-size: 2.125rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: right;
}

.event_holder {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  text-align: center;
  padding: 0;
}
.event_title_holder {
  display: grid;
  grid-template-columns: 1fr 2.5rem;
  grid-template-areas:
    "date date"
    "title chevron";
  column-gap: 0.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.event_title_date {
  text-align: left;
  font-size: 1.625rem;
  grid-area: date;
  margin-bottom: 1rem;
}
.event_title {
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  align-self: center;
  grid-area: title;
}

.event_chevron {
  width: 1.75rem;
  height: 1.5rem;
  padding: 0.5rem;
  border: 1px solid white;
  border-radius: 5px;
  align-self: center;
  transform: rotate(0deg);
  cursor: pointer;
  background-image: url(../icons/chevronWhite.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  grid-area: chevron;
}
.event_chevron_rotation {
  transform: rotate(180deg);
}
.event_description_holder {
  border: 1px solid white;
  border-radius: 10px;
  padding: 1rem;
  text-align: left;
  margin-bottom: 0.5rem;
}
.event_time_title,
.event_location_title,
.event_description_title,
.event_tickets_title {
  font-weight: 500;
  margin-bottom: 0.25rem;
  width: fit-content;
}

.event_time,
.event_location,
.event_description {
  margin-bottom: 0.5rem;
}
.event_description {
  white-space: pre-line;
}
.event_link {
  font-style: italic;
  font-weight: 400;
  color: white;
  text-decoration: underline;
}

.event_hr {
  border-top: 0.125px solid var(--color_1);
  border-bottom: none;
  margin: 1rem 0;
}
@media screen and (max-width: 1000px) {
  .events_image {
    height: unset;
  }
  .events_holder {
    order: -1;
  }
  .events_main_holder {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 750px) {
  h1.TGOtitle_1 {
    display: none;
    height: 0;
    margin: 0;
  }
  h1.TGOtitle_2.hr {
    display: none;
    /*  text-align: center;
    font-size: 2rem;
    color: var(--color_4);
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
    border-bottom: 5px solid var(--color_4);*/
  }
  h1.TGOtitle_2.en {
    display: none;
    /*  text-align: center;
    font-size: 2rem;
    color: var(--color_4);
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
    border-bottom: 5px solid var(--color_4);*/
  }
  .events_main_holder {
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
  }

  .events_title {
    color: var(--color_2);
    text-align: center;
  }
  .event_chevron {
    border: 1px solid black;
    background-image: url(../icons/chevronBlack.svg);
  }
  .event_description_holder {
    border: 1px solid black;
  }
  .event_title_date {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .event_hr {
    border-top: 0.125px solid black;
    margin: 0.5rem 0;
  }
  .event_link {
    color: var(--color_2);
    text-decoration: none;
  }
}

@media screen and (max-width: 500px) {
  .events_image_holder {
    position: unset;
    display: flex;
    flex-direction: column;
  }
  .events_image {
    border-radius: 20px 20px 0 0;
  }
  .events_image_text {
    position: unset;
    bottom: unset;
    background-color: var(--dark_biege);
  }
}

/*founders*/
.founder_card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  margin: 2rem 0;
}
.founder_card_title {
  font-size: 2rem;
  color: var(--color_1);
  margin-bottom: 1rem;
}
.founder_card_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.founder_card_paragraph {
  color: var(--color_1);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8; /* number of lines to show */
  line-clamp: 8;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.founder_card_button {
  color: var(--color_1);
  border: 1px solid var(--color_1);
  padding: 0.75rem;
  width: 150px;
  margin-top: 1.5rem;
  text-align: center;
}
.founder_card_button:hover {
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 0.9;
}
.founder_card_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

@media screen and (max-width: 750px) {
  .founder_card {
    grid-template-columns: 1fr;
    margin: 0;
  }
  .founder_card_title {
    font-size: 1.75rem;
    color: var(--color_3);
    margin: 0;
    margin-bottom: 1rem;
  }
  .founder_card_paragraph {
    color: var(--color_4);
  }
  .founder_card_image {
    margin: 0;
    height: 300px;
    border-radius: 0;
    order: 2;
  }
  .founder_card_button {
    background-color: var(--color_2);
    color: white;
    border: none;
    padding: 0.5rem;
    width: 150px;
    margin: 1rem 0;
    text-align: center;
  }
  .founder_card_button:hover {
    background-color: rgb(143, 21, 21);
  }
}

/*news*/

.imageHoverIn {
  animation: imageHoverIn 500ms ease-out;
  transform: rotate(10deg) scale(1.35);
  filter: grayscale(0);
}

.imageHoverOut {
  animation: imageHoverOut 300ms ease-out;
}
.titleHoverIn {
  animation: titleHoverIn 500ms ease-out;
  background-color: rgb(40, 40, 40);
}

.titleHoverOut {
  animation: titleHoverOut 300ms ease-out;
  background-color: var(--color_4);
}

@keyframes imageHoverIn {
  0% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(50);
  }
  100% {
    transform: rotate(10deg) scale(1.35);
    filter: grayscale(0);
  }
}

@keyframes imageHoverOut {
  0% {
    transform: rotate(10deg) scale(1.35);
    filter: grayscale(0);
  }
  100% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(50);
  }
}
@keyframes titleHoverIn {
  0% {
    background-color: var(--color_4);
  }
  100% {
    background-color: rgb(40, 40, 40);
  }
}

@keyframes titleHoverOut {
  0% {
    background-color: rgb(40, 40, 40);
  }
  100% {
    background-color: var(--color_4);
  }
}

/*post*/
.post_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.post_image {
  text-align: center;
  max-height: 300px;
  height: auto;
  border-radius: 30px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
h1.post_title {
  font-weight: 600;
  font-size: 2rem;
  text-align: left;
  border: none;
  height: fit-content;
}
.post_hr {
  height: 0.5px;
  background-color: var(--color_1);
  border: none;
  width: 100%;
  margin: 0.5rem 0;
  opacity: 0.5;
}
h4.post_date {
  color: var(--color_1);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  height: min-content;
}
p.post_content {
  color: var(--color_1);
  font-size: 1rem;
  white-space: pre-line;
  margin: 0.5rem 0;
  text-align: justify;
  user-select: text;
  border: none;
  height: min-content;
}
.post_documents {
  margin: 0.5rem 0;
  width: 100%;
}
a.post_document {
  color: var(--color_1);
  font-size: 1rem;
  text-decoration: underline;
  opacity: 0.85;
}
.post_links {
  margin: 0.5rem 0;
  width: 100%;
}
a.post_link {
  font-size: 1rem;
  color: var(--color_1);
  height: min-content;
  text-decoration: underline;
  opacity: 0.85;
}
.post_album_box {
  position: relative;
  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 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 1rem;
  border-radius: 30px;
}
.post_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

@media screen and (max-width: 750px) {
  h1.post_title {
    font-size: 1.75rem;
    color: var(--color_4);
  }
  h4.post_date,
  p.post_content,
  a.post_document,
  a.post_link {
    font-size: 1rem;
    color: var(--color_4);
  }
  .post_hr {
    background-color: var(--color_3);
  }
  .post_album_box {
    margin-bottom: 1rem;
    flex-direction: column;
  }
  .post_chevron_left,
  .post_chevron_right {
    display: none;
  }
  .post_photo {
    margin: 0.25rem 0;
    height: unset;
  }
}

@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;
  }
  .post_video {
    margin: 0 0 0.5rem;
  }
}

/*statut*/
.statut_title {
  font-size: 2.125rem;
  text-transform: uppercase;
  text-align: center;
  margin: 2rem auto 0;
}
.statut_subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 auto 2rem;
}
.statut_article {
  margin-bottom: 6rem;
  line-height: 1.25;
}
.statut_h2 {
  text-transform: uppercase;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2rem;
}
.statut_h3 {
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  margin: 2rem auto;
}

/*galerija*/
.gallery_container {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}

.gallery_small_container {
  padding: 0.5rem;
  padding-bottom: 100px;
  margin: 0 auto;
  max-width: 310px;
}

.timeline {
  position: relative;
  min-height: 150px;
}

.line {
  position: absolute;
  z-index: 2;
  left: calc(50% - 1px);
  width: 2px;
  top: -50px;
  bottom: -50px;
  background-color: var(--color_1);
  display: none;
}

.line:before,
.line:after {
  position: absolute;
  display: block;
  content: "";
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: var(--color_1);
  left: 50%;
  transform: translateX(-50%);
}

.line:after {
  bottom: 0;
}

.timeline_album {
  display: flex;
  transform: translateX(-100%);
  transition: 600ms ease;
  position: relative;
  z-index: 1;
  margin: 50px 0;
  padding: 1rem;
  border-radius: 1rem;
  align-items: center;
  min-height: 100px;
  opacity: 0;
  border: none;
}

.timeline_album:nth-child(odd) {
  flex-direction: row-reverse;
  transform: translateX(100%);
}

.bead {
  position: absolute;
  display: block;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: var(--color_1);
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
}

.content {
  width: calc(50% - 2rem);
}

.show-me:nth-child(n) {
  transform: none;
  opacity: 1;
}

.gallery_album_title {
  color: var(--color_1);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0.5rem;
  background: none;
  border: none;
  width: 100%;
  font-weight: 700;
  cursor: pointer;
}

.gallery_button {
  padding: 0;
  border: none;
  display: block;
  height: 60px;
  cursor: pointer;
}
.timeline_image {
  width: 100px;
  height: 60px;
  object-fit: cover;
}
.timeline_image:hover {
  opacity: 0.9;
}

@media screen and (max-width: 750px) {
  .line,
  .line:before,
  .line:after,
  .bead {
    background-color: #000;
  }
  .gallery_album_title {
    color: #000;
  }
}

/*album*/
.album_title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}

.album_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0.5rem;
  row-gap: 0.5rem;
}
.album_photo_holder {
  height: 300px;
  width: 100%;
  overflow: hidden;
}
.album_photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album_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: 10px;
  position: absolute;
  z-index: 100;
  background-color: rgb(3, 3, 3);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
}
.media_bar {
  height: 5px;
  width: 100%;
  background-color: white;
  opacity: 0.9;
  display: block;
  border-radius: 5px;
}
#photos_modal_exit {
  opacity: 0.9;
  display: block;
  position: absolute;
  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 {
  position: relative;
  width: 100%;
  height: 100%;
}
.modal_photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}
@media screen and (max-width: 1000px) {
  .album_title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .album_grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 750px) {
  .album_title {
    font-size: 2rem;
    color: var(--color_4);
  }
  .album_grid {
    grid-template-columns: 1fr;
    row-gap: 0.125rem;
  }
  .album_photo_holder {
    height: fit-content;
    width: 100%;
  }
  .album_photo {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .photos_modal {
    display: none;
  }
  .photoHoverOut {
    transform: none;
    animation: none;
  }
  .album_photo:hover {
    transform: none;
    cursor: unset;
  }
}

/*contact*/

.contact_form_holder {
  padding: 50px 1rem;
  color: var(--color_1);
}
.contact_form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact_box {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  width: 100%;
}
.contact_box_V2 {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  width: 100%;
}
.contact_label {
  margin-bottom: 0.5rem;
}
.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_checkbox {
  height: 1rem;
  width: 1rem;
  margin-right: 1rem;
}
.contact_button {
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  font-size: 1.125rem;
  color: white;
  height: 40px;
  width: 250px;
  margin: 3rem auto 4rem;
}
.contact_button:hover {
  background-color: rgba(0, 0, 0, 0.275);
}

@media screen and (max-width: 750px) {
  .contact_input,
  .contact_message {
    border: 1px solid var(--color_4);
  }
  .contact_button {
    background-color: rgb(0, 0, 0, 0.1);
    border: 1px solid black;
    color: black;
    margin: 2rem auto 3rem;
  }
  .contact_button:hover {
    background-color: rgb(0, 0, 0, 0.095);
  }
}

/*login*/
.login_holder {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  height: 100%;
  padding: 75px 0;
}

.login_form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login_box {
  width: 100%;
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 1rem;
  row-gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
}

.login_label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.login_input {
  height: 40px;
  border: 1px solid black;
}

.login_button {
  background-color: var(--color_1);
  color: black;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 30px;
  padding: 10px 30px;
  text-align: center;
  width: fit-content;
  border: none;
}

.login_button:hover {
  opacity: 0.95;
}

.login_error {
  margin-top: 0.5rem;
  color: white;
  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;
    color: red;
  }
  .login_button {
    background-color: var(--color_3);
    color: white;
    font-size: 1rem;
    margin-top: 30px;
    padding: 10px 30px;
    text-align: center;
    width: fit-content;
  }
}

/*insert*/
#translator {
  opacity: 0;
}
.modal,
.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;
}
.message {
  margin: 0 0 0.5rem;
  text-align: center;
}
.message_button {
  width: 75px;
  height: 30px;
  padding: 20px;
  background-color: rgb(218, 218, 218);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(35, 35, 35);
}
.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) {
  .modal,
  .spinner_container {
    top: 30vh;
  }
}

.adminMainButtons {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 0.5rem;
  row-gap: 0.5rem;
  margin: 1rem auto;
}
@media screen and (max-width: 500px) {
  .adminMainButtons {
    grid-template-columns: 1fr 1fr;
  }
}
.admin_buttons {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1rem;
  margin: 1rem auto;
}
.admin_button,
.admin_select_button {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color_3);
  border: 3px solid var(--color_3);
  border: none;
  color: white;
  font-weight: 600;
}
.admin_button:hover,
.admin_select_button:hover {
  opacity: 0.95;
}
.admin_button_clicked {
  background-color: rgba(0, 0, 0, 0);
  border: 3px solid var(--color_3);
  color: var(--color_3);
}
.admin_hr {
  height: 0.5px;
  background-color: var(--color_3);
  border: none;
  width: 100%;
  margin: 1rem auto;
}
.admin_container {
  width: 100%;
  min-height: 500px;
  margin: 1rem 0;
}

.admin_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.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;
  white-space: pre-line;
  margin-bottom: 0.5rem;
}
.form_input {
  width: 100%;
  background-color: white;
  color: black;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.form_textarea {
  width: 100%;
  background-color: white;
  color: black;
  height: 200px;
  resize: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  white-space: pre-line;
}
.form_file_upload {
  align-self: center;
}
.form_checkbox {
  width: min-content;
  height: min-content;
  align-self: center;
}
.form_translate_buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  display: none;
}
.form_translate_button {
  width: 120px;
  padding: 5px;
  margin: 0 0.5rem;
  background-color: rgb(0, 0, 0, 0.1);
  border: 1px solid black;
  color: black;
  text-align: center;
}
.form_translate_button:hover {
  background-color: rgb(0, 0, 0, 0.09);
}
.form_button {
  width: 200px;
  padding: 10px;
  margin: 2rem;
  background-color: rgb(0, 0, 0, 0.1);
  border: 1px solid black;
  color: black;
}
.form_button:hover {
  background-color: rgb(0, 0, 0, 0.09);
}
.form_small_button {
  width: 120px;
  padding: 5px;
  background-color: rgb(0, 0, 0, 0.1);
  border: 1px solid black;
  color: black;
  align-self: center;
}
.form_small_button:hover {
  background-color: rgb(0, 0, 0, 0.09);
}
.form_hr {
  height: 0.25px;
  background-color: black;
  border: none;
  width: 100%;
  margin: 1rem auto;
}
.update_select_box {
  width: 100%;
  display: grid;
  grid-template-columns: 100px 1fr 1rem;
  grid-template-areas: "date title chevron";
  column-gap: 0.5rem;
}
.update_select_box_date {
  margin: 0;
  grid-area: date;
}
.update_select_box_title {
  margin: 0;
  grid-area: title;
}
.update_select_box_content {
  margin: 0;
  grid-area: title;
}
.update_select_box_chevron {
  height: 0.5rem;
  width: auto;
  align-self: center;
  grid-area: chevron;
}
.chevron_rotation {
  transform: rotate(180deg);
}
.delete_select_box {
  width: 100%;
  display: grid;
  grid-template-columns: 100px 1fr 120px;
  grid-template-areas: "date title button";
  column-gap: 0.5rem;
}
.delete_select_box_date {
  margin: 0;
  align-self: center;
  grid-area: date;
}
.delete_select_box_title {
  grid-area: title;
  margin: 0;
  align-self: center;
}
.delete_select_box_content {
  margin: 0;
  align-self: center;
}
.delete_form {
  grid-area: button;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  .admin_buttons {
    column-gap: 0.5rem;
  }
  .form_box {
    grid-template-columns: 1fr;
  }
  .form_label {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
  .update_select_box {
    grid-template-columns: 1fr 1rem;
    grid-template-areas:
      "date chevron"
      "title chevron";
  }
  .delete_select_box {
    grid-template-columns: 1fr 120px;
    grid-template-areas:
      "date button"
      "title button";
  }
}

.error {
  color: red;
  margin-top: 0.25rem;
  display: none;
}
#contact .error,
#admission .error {
  color: var(--color_1);
  opacity: 0.75;
}
@media screen and (max-width: 750px) {
  #contact .error,
  #admission .error {
    color: red;
    opacity: 1;
  }
}

/*footer*/
.returnToBeginning {
  width: 100%;
  text-align: center;
  margin-bottom: 0px;
  display: none;
}
.returnToBeginningArrow {
  height: 0.75rem;
  width: auto;
  display: inline-block;
  transform: rotate(90deg);
}
.townDecoration {
  display: none;
  position: relative;
  width: 100%;
  opacity: 0.9;
  z-index: -1;
}
.footer_background {
  background-color: var(--color_3);
}
.footer_texts {
  padding: 2rem 0;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer_text {
  color: white;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .returnToBeginning {
    display: block;
  }
  .townDecoration {
    display: block;
  }
  .footer_texts {
    font-size: 0.9rem;
    font-weight: 100;
    flex-direction: column;
  }
}
/*special classes*/
.hidden {
  display: none;
}
.mobileShow {
  display: none;
}
.active {
  color: var(--color_2);
}

@media screen and (max-width: 750px) {
  .mobileShow {
    display: block;
  }
}
