:root {
  --bg-color-red-lightBlue: #B00D13;
  --btn-bg-color: #f75842;
  --btn-border-color: #fff;
  --p-font-color: #000;
}

.dark-theme {
  --bg-color-red-lightBlue: #6c63ff;
  --btn-bg-color: transparent;
  --btn-border-color: #fff;
  --p-font-color: #fff;
}

nav {
  background-color: var(--bg-color-red-lightBlue);
}

/* ==================== SPLASH SCREEN ============================*/
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0.9;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fade-out {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  100% {
      opacity: 0;
      visibility: hidden;
  }
}

.slideshow-container {
  position: relative;
  max-width: 50%;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(176, 13, 19, 0.8);
}

.text {
  color: #f2f2f2;
  font-size: clamp(0.3rem,2.5vw,1.2rem );
  
  padding: 8px 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}


.siadm__modules article {
  display: flex;
  justify-content: center;
  width: 100%;
}