* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: none;
  display: block;
}

html, body {
  height: 100vh;
  width: 100vw;
}

body {
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
}
body ul {
  display: flex;
  flex-direction: column;
}
body ul, body li, body a {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: #e0e0e0;
}
body li a {
  padding: 10px;
}
body li a:hover {
  color: #ffa726;
}
body content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
body .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  min-width: 100%;
  align-items: center;
  justify-items: center;
  padding-top: 6vh;
  overflow-x: hidden;
  overflow-y: auto;
}
body footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 10%;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.8);
}
body header {
  display: flex;
  position: sticky;
  width: 100%;
  height: 10%;
  z-index: 10;
  background-color: rgba(30, 30, 30, 0.8);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
body header .header-items {
  font-size: 2em;
}
body header .header-items ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
body header .menu {
  padding-right: 15px;
  display: flex;
  height: 100%;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}
body header .menu .hamburger {
  display: block;
  height: 45%;
  transition: all 0.1s ease-in-out;
}
body header .menu .hamburger:hover {
  cursor: pointer;
  transform: scale(1.05);
}
body header .logo {
  display: flex;
  flex-direction: row;
  justify-content: start;
  height: 100%;
  padding-left: 15px;
}
body header .logo a {
  display: flex;
}
body header .logo img {
  height: 100%;
}

#menu-modal {
  background-color: rgba(30, 30, 30, 0.9);
  display: none;
  flex-direction: column;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  transition: all 0.1s ease-in-out;
}
#menu-modal #menu-close {
  right: 10px;
  top: 10px;
  display: block;
  position: fixed;
  max-height: 4vh;
  transition: all 0.1s ease-in-out;
}
#menu-modal #menu-close:hover {
  cursor: pointer;
  transform: scale(1.05);
}
#menu-modal .modal-content {
  background-color: #2a2a2a;
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 80%;
  justify-content: space-between;
}
#menu-modal .modal-content .footer {
  display: none;
  flex-direction: column;
  width: 100%;
}
#menu-modal .modal-content .footer .program, #menu-modal .modal-content .footer .program-logo, #menu-modal .modal-content .footer .program-text, #menu-modal .modal-content .footer .program-contact {
  display: flex;
  width: 100%;
  text-align: center;
}
#menu-modal .modal-content .footer .program {
  flex-direction: column;
}
#menu-modal .modal-content .footer .program-logo, #menu-modal .modal-content .footer .program-text {
  flex-direction: row;
}
#menu-modal .modal-content .footer .program-text {
  font-size: 12pt;
}
#menu-modal .modal-content .footer .program-logo {
  justify-content: space-between;
  width: 100%;
}
#menu-modal .modal-content .footer .program-logo img {
  width: auto;
  height: auto;
  max-width: 50%;
}
#menu-modal .modal-content .footer .program-contact {
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20vh);
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.card-big {
  left: 0;
  top: 0;
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: rgba(30, 30, 30, 0.7);
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-items: center;
}
.card-big .card-big-close {
  right: 10px;
  top: 10px;
  display: block;
  position: fixed;
  max-height: 4vh;
  transition: all 0.1s ease-in-out;
}
.card-big .card-big-close:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.card-big .card-big-content {
  font-size: 14pt;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
}
.card-big .card-big-content .card-big-control {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  height: 50px;
  width: 100%;
  margin-top: 10px;
}
.card-big .card-big-content .card-big-control input, .card-big .card-big-content .card-big-control select {
  padding: 10px 20px 10px 20px;
  border-radius: 5px;
}
.card-big .card-big-content .card-big-news {
  background-color: #2a2a2a;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 20px;
  line-height: 1.5em;
}
.card-big .card-big-content .card-big-news .ql-align-justify {
  text-align: justify;
}
.card-big .card-big-content .card-big-news img {
  display: block;
  margin: 0 auto;
  padding-top: 10px;
}
.card-big .card-big-content .card-big-news img {
  width: 40vw;
  height: auto;
}

.card {
  min-height: 250px;
  height: 300px;
  width: 400px;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: scale 0.1s ease-in-out;
}
.card:hover {
  cursor: pointer;
  transform: scale(1.01);
}
.card .card-header {
  width: 100%;
  height: 100px;
  background-color: rgba(30, 30, 30, 0.5);
  z-index: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 18pt;
}

.program-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14pt;
}
.program-text p {
  display: block;
}
.program-text img {
  display: block;
  width: auto;
  height: auto;
}

.about {
  display: flex;
  flex-direction: column;
  margin: 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(30, 30, 30, 0.8);
  height: 100%;
  max-height: 75vh;
  width: 60%;
  border-radius: 10px;
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 14pt;
  text-align: justify;
  line-height: 1.5em;
}

.events {
  display: flex;
  flex-direction: column;
  margin: 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(30, 30, 30, 0.8);
  height: 100%;
  max-height: 75vh;
  width: 60%;
  border-radius: 10px;
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 14pt;
  text-align: justify;
  line-height: 1.5em;
}

.program {
  display: flex;
  height: 100%;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding: 2px;
}
.program .program-logo {
  display: flex;
  height: 100%;
  flex-direction: row;
  align-items: center;
}
.program .program-logo img {
  display: block;
  max-height: 70%;
  width: auto;
  height: auto;
}

.program-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.post-form {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.post-form .post-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 30%;
  padding: 10px;
}
.post-form .post-edit {
  display: flex;
  flex-direction: column;
  width: 70%;
  height: 100%;
  padding: 10px;
}
.post-form input, .post-form select {
  display: flex;
  width: 100%;
  border: none;
  border-radius: 5px;
  margin: 5px;
  padding: 10px;
}

#editor, .ql-editor, .ql-toolbar {
  background-color: white;
  color: black;
}

#editor {
  min-height: 0;
  width: 100%;
}

.upload-overlay {
  background-color: rgba(30, 30, 30, 0.9);
  display: none;
  flex-direction: column;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  left: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.loader {
  border: 8px solid #f3f3f3; /* Light gray background */
  border-top: 8px solid #3498db; /* Blue top border (spinner color) */
  border-radius: 50%; /* Make it circular */
  width: 60px; /* Size of the spinner */
  height: 60px;
  animation: spin 1s linear infinite; /* Rotation animation */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 700px) {
  body .content {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    min-width: 100%;
    justify-items: center;
  }
  body footer {
    display: none;
  }
  .card {
    margin: 20px 0;
  }
  #menu-modal .modal-content {
    width: 100%;
    height: 80%;
  }
  #menu-modal .modal-content .footer {
    display: flex;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 1200px) {
  body .content {
    overflow-x: hidden;
    overflow-y: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 20px;
  }
  .program-text {
    font-size: 10pt;
  }
}

/*# sourceMappingURL=main.css.map */
