header {
  background: #1E3277;
  color: #ffffff;
  padding: 16px;
  position: relative;
}
header a:link {
  color: #ffffff;
}
header .mobile-menu {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 32px;
  right: 32px;
}
header .mobile-menu img {
  filter: invert(100%);
}
header .language img {
  height: 20px;
}
header nav {
  margin: 0 auto;
  width: 100%;
}
header nav > a {
  display: block;
}
header nav > a > img {
  height: 64px;
  margin: 0 16px;
}
header nav > ul {
  padding: 0;
  margin: 16px;
}
header nav > ul li {
  list-style: none;
}
header nav > ul li a {
  display: block;
  padding: 8px;
  text-decoration: none;
}
header nav > ul li > span {
  display: block;
  padding: 8px;
}

@media (min-width: 992px) {
  header .mobile-menu {
    display: none;
  }
  header nav {
    display: flex;
  }
  header nav > a {
    flex: 30%;
    font-size: 1.5rem;
  }
  header nav > ul {
    flex: 70%;
    display: flex;
    justify-content: flex-end;
  }
  header nav > ul > li {
    float: left;
    position: relative;
  }
  header nav > ul > li:hover {
    background: #223885;
  }
  header nav > ul > li:hover ul {
    display: block;
  }
  header nav > ul > li ul {
    padding: 8px;
    background: #223885;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    display: none;
    position: absolute;
    min-width: 160px;
  }
  header nav > ul > li ul li, header nav > ul > li ul a {
    display: block;
  }
}
@media (min-width: 768px) {
  header nav {
    max-width: 1200px;
  }
}
footer {
  background: #1E3277;
  color: #ffffff;
  padding: 16px;
  margin-bottom: -32px;
}
footer a:link {
  color: #ffffff;
}
footer section {
  margin: 0 auto;
  width: 100%;
}
footer section.features > ul > li {
  margin: 12px;
}
footer section.banner {
  text-align: center;
}
footer section.banner ul {
  margin: 0;
  padding: 0;
  font-size: 0.7em;
  display: inline-block;
}
footer section.banner ul li {
  list-style: none;
  display: inline-block;
}
footer section.banner ul li:nth-child(n+2)::before {
  content: "| ";
}

@media (min-width: 768px) {
  footer section {
    max-width: 1200px;
  }
}
.features > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.features > ul > li {
  flex: 100%;
  max-width: 100%;
  list-style: none;
}
.features > ul.images > li > a {
  display: block;
  background: #1E3277;
  border-radius: 8px;
  color: #ffffff;
  margin: 12px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
}
.features > ul.images > li > a img {
  border-radius: 8px 8px 0 0;
}
.features > ul.images > li > a h2, .features > ul.images > li > a h3, .features > ul.images > li > a h4 {
  display: block;
  padding: 12px 12px 16px 12px;
  margin: 0 16px 0 16px;
}

@media (min-width: 576px) {
  .features > ul > li {
    flex: 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .features > ul > li {
    flex: 25%;
    max-width: 33%;
  }
}
@media (min-width: 768px) {
  .aside {
    display: flex;
  }
  .aside > div {
    flex: 60%;
  }
  .aside > aside {
    flex: 40%;
  }
}
.agenda-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  margin-bottom: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.agenda-item:hover {
  border-color: #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.agenda-item .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  width: 110px;
  padding: 0.75rem;
  background: #e5e7eb;
  border-radius: 6px;
  flex-shrink: 0;
}
.agenda-item .date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #111827;
  text-align: center;
  white-space: nowrap;
}
.agenda-item .date .month {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-top: 0.25rem;
  text-align: center;
  white-space: nowrap;
}
.agenda-item .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.agenda-item .content .title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  margin: 0;
}
.agenda-item .content .description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}
.agenda-item .content .link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1E3277;
  text-decoration: none;
  margin-top: 0.25rem;
  transition: color 0.2s ease;
}
.agenda-item .content .link svg {
  transition: transform 0.2s ease;
}
.agenda-item .content .link:hover {
  color: #223885;
}
.agenda-item .content .link:hover svg {
  transform: translateX(2px);
}
@media (max-width: 991px) {
  .agenda-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .agenda-item .date {
    flex-direction: row;
    min-width: auto;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }
  .agenda-item .date .day {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .agenda-item .date .month {
    font-size: 0.8125rem;
    margin-top: 0;
    align-self: center;
  }
}

.input {
  margin: 0 0 16px 0;
}
.input.error input {
  border: 1px solid #dc3545;
}
.input.error p {
  color: #dc3545;
}
.input label {
  display: block;
  margin: 0 0 8px 0;
  font-weight: bold;
}
.input input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 8px;
  margin: 0 0 8px 0;
}
.input input:user-invalid {
  border: 1px solid #dc3545;
}
.input input[type=checkbox] {
  display: inline;
  width: auto;
}
.input input[type=checkbox] + label {
  display: inline-block;
  font-weight: normal;
}
.input input + span {
  font-size: 0.9rem;
}

.input-radio span {
  display: block;
  font-weight: bold;
}
.input-radio label {
  display: block;
  margin: 8px 0 16px 0;
}

input[type=submit] {
  padding: 8px 16px;
  background-color: #1E3277;
  color: #ffffff;
  border: none;
  border-radius: 8px;
}

.loader {
  border-radius: 9999px;
  border-color: #e5e7eb;
  border-top-color: #253e94;
  border-style: solid;
  animation: spin 1s linear infinite;
}

.overlay-container {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
}
.overlay .loader {
  position: relative;
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
  margin-top: -2.25rem;
  margin-left: -2.25rem;
  width: 4rem;
  height: 4rem;
  border-width: 8px;
}

.button {
  position: relative;
  transition: padding 0.2s ease;
}
.button.button-loading {
  padding-right: 2.5rem;
}
.button .loader {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  margin-top: -0.5rem;
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}
.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.notification {
  background-color: #17a2b8;
  margin: 8px;
  padding: 8px 16px;
  color: #ffffff;
}
.notification.success {
  background-color: #28a745;
}
.notification.fail {
  background-color: #dc3545;
}

.schedule {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.schedule h2 {
  grid-column: 1/-1;
  display: flex;
}
@media (min-width: 768px) {
  .schedule {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .schedule {
    grid-template-columns: repeat(3, 1fr);
  }
}
.schedule .day {
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.schedule .day:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.schedule .day .header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
  text-transform: capitalize;
}
.schedule .day .header h3 {
  margin: 0;
}
.schedule .day .slot {
  padding: 1rem;
  margin: 0.75rem 0;
  border-radius: 8px;
  border-left: 4px solid;
}
.schedule .day .slot span {
  margin-bottom: 8px;
}
.schedule .day .slot .time {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}
.schedule .day .slot .activity {
  display: block;
}
.schedule .day .slot .location {
  display: inline-block;
}
.schedule .day .slot .location a {
  color: #1E3277;
  text-decoration: none;
}
.schedule .day .slot .location a:hover {
  color: #253e94;
  text-decoration: underline;
}
.schedule .day .slot .note {
  display: block;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #e5e7eb;
}

.legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
  border-radius: 8px;
}
.legend .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.legend .item .color {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid;
}

table {
  border-collapse: collapse;
  border: 1px solid #1E3277;
  width: 100%;
}
table th, table td {
  padding: 8px;
}
table td {
  border: 1px solid #1E3277;
}
table thead {
  background-color: #253e94;
  color: #ffffff;
}
table * {
  border: 0;
}

* {
  font-family: "Roboto Light", sans-serif;
}

a:visited {
  color: inherit;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

li a {
  text-decoration: none;
}
li a:hover, li a li.active a {
  text-decoration: underline;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
}

.seo {
  display: none;
}

.cta {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 0 16px 0;
  background: #1E3277;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
}
.cta:hover {
  text-decoration: underline;
}
.cta:visited {
  color: #ffffff;
}

.right {
  float: right;
}

@media (max-width: 991px) {
  .mobile-hide {
    display: none;
  }
}
/* ---------- MAIN ---------- */
main {
  margin: 0 auto;
}
main section {
  margin: 32px 16px;
}

@media (min-width: 768px) {
  main {
    max-width: 1200px;
  }
}

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