html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.default-image {
  width: 100vw;
  min-height: 400px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-title > div > h1 {
  font-size: 80px;
}

#header {
  width: 100%;
  position: relative;
  background-color: var(--brand-dark);
  margin-bottom: 30px;
}
#header .poster {
  padding: 70px 20px 20px;
  max-height: 60vh;
  max-width: 90%;
  margin: 0 auto;
  display: block;
}

@keyframes parallax-animation {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(500px);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.image-parallax {
  width: 100vw;
  min-height: 40vh;
  position: relative;
}
.image-parallax .inner {
  position: absolute;
  top: 0;
  left: 0;
  animation-name: parallax-animation;
  animation-timing-function: linear;
  animation-timeline: scroll();
  width: 100vw;
  min-height: 40vh;
  background-color: var(--grey-medium);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.image-parallax .no-animation {
  animation: none;
}

.video-parallax {
  height: 40vh;
  width: 100vw;
  background-color: var(--grey-light);
  position: relative;
}
.video-parallax .inner {
  position: absolute;
  top: 0;
  left: 0;
  animation-name: parallax-animation;
  animation-timing-function: linear;
  animation-timeline: scroll();
  width: 100vw;
  height: 40vh;
  object-fit: cover;
  visibility: hidden;
  clip-path: inset(1px 1px);
}

.parallax {
  background-attachment: fixed;
  width: 100vw;
  min-height: 40vh;
  background-color: var(--concrete-light);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 768px) {
  .parallax.desktop {
    display: none;
  }
}
.parallax.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .parallax.mobile {
    margin: 30px 0;
    display: flex;
    width: 100%;
    background: none;
    min-height: auto;
  }
}

#spinner {
  width: 100vw;
  height: 40vh;
  background: var(--concrete-dark);
}

#spinner > div {
  animation-play-state: paused;
  border: 4px solid rgb(200, 200, 200);
  border-radius: 50%;
  animation: rotate 0.7s infinite linear;
  border-left-color: rgba(200, 200, 200, 0.4);
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.black-box {
  height: 60px;
  width: 100vw;
  background-color: var(--black);
}

.page {
  background-color: var(--white);
  position: relative;
  overflow-x: hidden;
}
.page h3,
.page h2 {
  max-width: var(--page-width);
  margin: auto;
  padding: 0 20px 5px;
}
.page .title {
  max-width: var(--page-width);
  margin: 25px auto 20px;
  padding: 0 20px;
}
.page .margin-bottom-none {
  margin-bottom: 0;
}
.page .article-h1 {
  margin-bottom: 30px;
  text-align: center;
}
.page .image {
  background-color: var(--cream);
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}
.page .image img {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  outline: 5px solid var(--white);
}
.page .image figcaption {
  font-style: normal;
  max-width: var(--page-width);
  font-size: 14px;
  font-weight: 400;
  font-family: "Open Sans Condensed", serif;
  line-height: 30px;
  margin: 10px auto -15px;
  color: #666666;
  text-align: left;
}
.page .image figcaption::before {
  content: "";
  padding-left: 5px;
}
.page a {
  color: var(--brand-light);
}
.page p {
  max-width: var(--page-width);
  padding: 0 20px;
}
.page p a {
  font-size: 16px;
  font-weight: 300;
  font-family: "Open Sans", serif;
  line-height: 26px;
}
.page p:last-child {
  margin-bottom: 30px;
}
.page .frame {
  background-color: var(--cream);
  padding: 15px 0;
}
.page .frames {
  background-color: var(--cream);
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page .frames .frame {
  padding: 0;
  background-color: transparent;
}
.page .frames iframe {
  display: flex;
  max-width: var(--page-width);
}
.page .wrapper-content {
  display: grid;
  gap: 50px;
  padding: 0 20px;
}
.page .wrapper-content .section {
  background: #ffffff;
}
.page .wrapper-content .section .box {
  max-width: var(--page-width);
  margin: 0 auto;
  box-sizing: border-box;
  display: grid;
  gap: 30px;
  grid-template-columns: 200px 1fr;
}
.page .wrapper-content .section .box img {
  background: #fafafa;
}
.page .wrapper-content .section .box .content h3 {
  font-weight: 700;
  margin: 0 0 2px;
}
.page .wrapper-content .section .box .content .info {
  display: contents;
}
.page .wrapper-content .section .box .content .name {
  margin: 0;
}
.page .wrapper-content .section .box .content .teacher-info {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}
.page .wrapper-content .section .box .content .teacher-info a {
  color: black;
  display: flex;
  align-items: center;
}
.page .wrapper-content .section .box .content .teacher-info .icon {
  margin: 0 5px 0 0;
  width: 20px;
  height: 20px;
}
.page .wrapper-content .section .box .content p {
  padding: 0;
}
.page .filters {
  display: flex;
  flex-direction: row;
  max-width: var(--page-width);
  margin: auto;
  padding: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.page .filters .title {
  min-width: max-content;
  font-size: 16px;
  font-weight: 500;
  font-family: "Open Sans Condensed", serif;
  line-height: 22px;
  margin: 0 14px 0 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0;
}
.page .filters .filter {
  cursor: pointer;
  font-style: normal;
  background-color: var(--cream);
  font-size: 16px;
  font-weight: 500;
  font-family: "Open Sans Condensed", serif;
  line-height: 22px;
  border-radius: 5px;
  padding: 9px 12px;
  text-align: center;
  text-transform: uppercase;
  color: var(--concrete-medium);
  margin-right: 20px;
  border: none;
}
.page .filters .filter:last-child {
  margin-right: 0;
}
.page .filters .filter.selected {
  background-color: var(--concrete-light);
}
.page .wrapper-center {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}
.page .wrapper-center a {
  height: 79px;
  background-color: var(--brand-medium);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 250px;
}
.page .wrapper-center a:hover {
  background-color: var(--brand-light);
}
.page .wrapper-center a .title {
  font-size: 30px;
  font-weight: 700;
  font-family: "Open Sans Condensed", serif;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--white);
}
.page .graduates,
.page .breadcrumb {
  display: none;
  max-width: var(--page-width);
  margin: 25px auto 20px;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  font-family: "Open Sans Condensed", serif;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .page .graduates,
  .page .breadcrumb {
    margin-bottom: 10px;
  }
}
.page .graduates {
  display: grid;
  gap: 30px;
}
.page .updates a {
  font-size: 16px;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 20px;
}
.page .updates .location {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--brand-light) !important;
}
.page .updates h1 {
  text-align: center;
  padding: 50px 0 20px;
}
.page .updates h2 {
  color: var(--black);
  margin: 29px auto 7px;
  text-align: center;
}
.page .updates h3 {
  margin: 40px auto 10px;
  text-align: center;
}
.page .updates p {
  text-align: center;
  color: var(--black);
  margin-bottom: 20px;
}
.page .updates p span {
  display: block;
}
.page .updates em {
  font-style: normal;
  color: var(--brand-light);
}
.page .updates .default-color p, .page .updates .default-color h3 {
  color: black;
}
.page .updates .bottom-info {
  background-color: var(--cream);
  padding: 20px;
  margin-top: 40px;
}
.page .updates .bottom-info h3 {
  margin-top: 0;
  color: black;
}
.page .updates .bottom-info p {
  color: var(--black);
  margin: auto;
}
.page .updates .organizers {
  max-width: var(--page-width);
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}
.page .updates .guests {
  max-width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 16px;
}
.page .updates .invited {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 20px;
}
.page .updates .sponsors {
  margin: 0 auto;
  text-align: center;
}
.page .updates .sponsors .sponsor {
  padding: 10px;
}
.page .updates .sponsors .sponsor img {
  max-height: 70px;
  max-width: 80vw;
}
.page .updates .names {
  font-weight: 500;
}
.page .updates .names > span {
  color: var(--brand-light);
  display: inline;
  padding: 0 6px;
}
.page .updates .registration-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 0;
}
.page .updates .programs-view {
  max-width: var(--page-width);
  margin: 40px auto;
  display: grid;
  gap: 10px;
}
.page .updates .programs-view_item {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 10px;
  align-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .page .updates .programs-view_item {
    grid-template-columns: 1fr;
  }
}
.page .updates .programs-view .center {
  display: flex;
  align-items: center;
}
.page .updates .programs-view .center .program-wrapper {
  width: 100%;
}
.page .updates .programs-view .center .program-wrapper .schedule-header th {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page .updates .programs-view .center .program-wrapper .schedule-header th {
    justify-content: start;
  }
}
.page .updates .programs-view .center .program-wrapper .schedule-item .class-item {
  justify-content: center;
}
.page .updates .programs-view .center .program-wrapper .schedule-item .class-item span {
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .page .updates .programs-view .center .program-wrapper .schedule-item .class-item {
    justify-content: start;
  }
}
@media screen and (max-width: 768px) {
  .page .updates .program-wrapper {
    padding: 0 20px;
  }
}

.title-desktop {
  margin: 0 auto;
  max-width: var(--page-width);
}
@media screen and (max-width: 768px) {
  .title-desktop {
    display: none;
  }
}

.title-mobile {
  display: none;
  margin: 0 auto;
  font-size: 30px;
  font-weight: 500;
  font-family: "Open Sans Condensed", serif;
  line-height: 50px;
  font-style: normal;
  max-width: var(--page-width);
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .title-mobile {
    display: block;
  }
}

.calendar-entry {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
}
.calendar-entry .date {
  color: var(--brand-medium);
  font-size: 18px;
  font-family: "Open Sans Condensed", serif;
  font-weight: 400;
  margin-bottom: 10px;
}
.calendar-entry .holiday-label {
  background-color: var(--blue-holiday);
  height: 20px;
  border-radius: 4px;
  width: max-content;
  padding: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  font-family: "Open Sans Condensed", serif;
  margin-bottom: 10px;
}
.calendar-entry .info {
  margin-top: 20px;
}
.calendar-entry .info p {
  padding: 0;
}
.calendar-entry .info h3, .calendar-entry .info h4 {
  max-width: none;
  padding: 0;
  margin: 0 0 5px;
}
.calendar-entry .info a {
  color: var(--brand-light);
}
.calendar-entry .calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
.calendar-entry .calendar-nav a, .calendar-entry .calendar-nav div {
  display: flex;
  align-items: center;
}
.calendar-entry .calendar-nav a img {
  width: 30px;
  height: 30px;
}
.calendar-entry .calendar-nav .calendar-link {
  color: var(--black);
  font-family: "Open Sans Condensed", serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  flex: 1;
  justify-content: center;
}
.calendar-entry .calendar-nav .prev, .calendar-entry .calendar-nav .next {
  width: 30px;
}

.calendar-list {
  max-width: 550px;
  margin: 0 auto 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.calendar-list .calendar {
  display: grid;
  gap: 15px;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .calendar-list .calendar {
    align-items: start;
    padding: 15px 20px 0 20px;
  }
}
.calendar-list .calendar:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.calendar-list a.calendar .calendar-data > .title {
  text-decoration: underline;
}
.calendar-list .calendar-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  height: 50px;
}
.calendar-list .calendar-icon div:first-child {
  height: 19px;
  background-color: var(--brand-light);
  color: var(--white);
  font-size: 12px;
  font-family: "Roboto Condensed", serif;
  font-weight: 700;
  text-transform: uppercase;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-list .calendar-icon div:last-of-type {
  background-color: var(--cream);
  color: var(--black);
  font-size: 20px;
  font-family: "Roboto Condensed", serif;
  font-weight: 500;
  width: 100%;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.calendar-list .calendar-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calendar-list .calendar-data > .title {
  color: var(--black);
  font-size: 18px;
  line-height: 1.2;
  font-family: "Open Sans Condensed", serif;
  font-weight: 500;
  max-width: none;
  margin: 0;
  padding: 0;
}
.calendar-list .calendar-data .date {
  color: var(--brand-medium);
  font-size: 16px;
  font-family: "Open Sans Condensed", serif;
  font-weight: 400;
}
.calendar-list .calendar .holiday-label {
  background-color: var(--blue-holiday);
  height: 20px;
  border-radius: 4px;
  width: max-content;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  font-family: "Open Sans Condensed", serif;
}

.stepper-container {
  max-width: var(--page-width);
  margin: 48px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.stepper-container p {
  padding: 0;
}
@media screen and (max-width: 991px) {
  .stepper-container {
    padding: 0 20px;
    margin-top: 20px;
  }
}
.stepper-container .step {
  display: flex;
  flex-direction: row;
}
.stepper-container .step a {
  color: var(--black);
}
.stepper-container .step .circle {
  margin-top: 5px;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: var(--brand-light);
  cursor: pointer;
}
.stepper-container .step .line {
  top: 30px;
  left: 10px;
  height: 100%;
  position: absolute;
  border-left: 2px solid var(--brand-light);
}
.stepper-container .step .date-desktop {
  margin-right: 20px;
  color: var(--brand-light);
  font-size: 20px;
  font-weight: 400;
  font-family: "Open Sans Condensed", serif;
  line-height: 30px;
  max-width: 150px;
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .stepper-container .step .date-desktop {
    display: none;
  }
}
.stepper-container .step .date-mobile {
  display: none;
  color: var(--brand-light);
  font-size: 20px;
  font-weight: 400;
  font-family: "Open Sans Condensed", serif;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .stepper-container .step .date-mobile {
    display: block;
  }
}
.stepper-container .step .content {
  margin-left: 20px;
  height: max-content;
}
.stepper-container .step-newsletter {
  display: grid;
  grid-template-columns: 150px 20px 1fr;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .stepper-container .step-newsletter {
    grid-template-columns: 20px 1fr;
    gap: 20px;
  }
}
.stepper-container .step-newsletter .circle {
  margin-top: 5px;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: var(--brand-light);
  cursor: pointer;
}
.stepper-container .step-newsletter .line {
  top: 30px;
  left: 10px;
  height: calc(100% - 10px);
  position: absolute;
  border-left: 2px solid var(--brand-light);
}
.stepper-container .step-newsletter .date-desktop {
  color: var(--brand-light);
  font-size: 20px;
  font-weight: 400;
  font-family: "Open Sans Condensed", serif;
  line-height: 30px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .stepper-container .step-newsletter .date-desktop {
    display: none;
  }
}
.stepper-container .step-newsletter .date-mobile {
  display: none;
  color: var(--brand-light);
  font-size: 20px;
  font-weight: 400;
  font-family: "Open Sans Condensed", serif;
  line-height: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .stepper-container .step-newsletter .date-mobile {
    display: block;
  }
}
.stepper-container .step-newsletter.active .content .description {
  height: 100%;
  margin-top: 10px;
}
.stepper-container .step-newsletter .content {
  height: max-content;
}
.stepper-container .step-newsletter .content h2 {
  cursor: pointer;
}
.stepper-container .step-newsletter .content .description {
  height: 0;
  overflow: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.stepper-container .v-stepper {
  position: relative;
}
.stepper-container .content {
  font-size: 22px;
  font-weight: 500;
  font-family: "Open Sans Condensed", serif;
  line-height: 30px;
  font-style: normal;
}
.stepper-container .content .info {
  display: grid;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .stepper-container .content .info {
    gap: 10px;
    margin-top: 10px;
  }
}
.stepper-container .content h2, .stepper-container .content h3 {
  padding: 0;
  margin: 0;
}
.stepper-container .content .holiday-label {
  background-color: var(--blue-holiday);
  height: 20px;
  border-radius: 4px;
  width: max-content;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  font-family: "Open Sans Condensed", serif;
  line-height: 18px;
  margin-top: 2px;
}
.stepper-container .content .date-wrapper {
  gap: 20px;
  align-items: center;
  display: none;
}
@media screen and (max-width: 768px) {
  .stepper-container .content .date-wrapper {
    display: flex;
  }
}
.stepper-container .content .title-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}
.stepper-container .content .title-wrapper .holiday-label {
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .stepper-container .content .title-wrapper .holiday-label {
    visibility: hidden;
  }
}

@media screen and (max-width: 991px) {
  .page .updates .wrapper-options.fixed {
    top: 60px;
  }
  .page .updates .guests {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .black-box {
    height: 60px;
  }
  .page .frame {
    background-color: var(--white);
    padding: 0;
  }
  .page .frame iframe {
    width: 100vw;
    height: 60vw;
  }
  .page .frame iframe:last-of-type {
    margin-bottom: 0;
  }
  .page .title {
    font-size: 30px;
    line-height: 36px;
    margin: 15px 0;
  }
  .page .image {
    background-color: var(--cream);
    margin-bottom: 20px;
  }
  .page .image figcaption {
    font-size: 14px;
    line-height: 30px;
    padding: 0 20px;
  }
  .page .image figcaption::before {
    display: none;
  }
  .page .image img {
    padding: 0;
  }
  .page iframe {
    width: 100vw;
    height: 60vw;
  }
  .page .updates h3 {
    color: #018A55;
    margin: 40px auto 10px;
    text-align: center;
  }
  .page .updates .organizers {
    grid-template-columns: repeat(2, 1fr);
  }
  .page .updates .guests,
  .page .updates .invited {
    grid-template-columns: repeat(2, 1fr);
  }
  .page .updates .programs {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .page .wrapper-content {
    gap: 50px;
  }
  .page .wrapper-content .section .box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page .wrapper-content .section .box .content .info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .page .wrapper-content .section .box .content .teacher-info {
    display: contents;
  }
  .page .wrapper-content .section .box img {
    width: 100%;
    height: 100%;
    margin: 0 0 20px 0;
  }
  .page .updates .organizers {
    grid-template-columns: 1fr;
  }
  .page .updates .invited {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (orientation: landscape) {
  .video-parallax .inner,
  .video-parallax {
    height: 100vh;
  }
}
