@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --red: #ff3133;
  --purple: #763ae8;
  --cyan: #2ac4ba;
  --black: #1b1d1b;
  --beige: #e1ded7;
  --beige-t: #e1ded764;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  background-color: var(--beige);
  overflow-x: hidden !important;
}

/*Submenu*/

#location-menu, #program-menu {
position: relative;
}

.location-hidden {
position: absolute;
  bottom: -6.5rem;
  display: none;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: black;
  width: max-content;
}

.program-hidden {
position: absolute;
  bottom: -4.25rem;
  display: none;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: black;
  width: max-content;
}

.location-hidden a, .program-hidden a {
color: var(--beige);
  padding: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: 300ms;
  width: calc(100% - 1rem);
}

.location-hidden a:hover, .program-hidden a:hover {
background-color: var(--purple);
  color: var(--beige);
  transition: 300ms;
}


/* HOME */
#hero {
  background-color: var(--beige);
  width: 100%;
}

.hero-ctr {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  gap: 2rem;
}

.hero-heading {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-heading p {
  font-size: 1.15rem;
  font-weight: 100;
}

.dates {
  font-weight: 500 !important;
  font-style: italic !important;
  font-size: 1.5rem !important;
}

.hero-title {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}

.hero-title img:nth-of-type(2) {
  margin-left: -7.5%;
  margin-top: 2.5%;
}

.hero-logo-ctr {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

.hero-logo-ctr img {
  height: 3rem;
  width: auto;
  margin-top: 2rem;
}

.uni-logos {
  display: flex;
  flex-flow: row;
  gap: 2rem;
}

#home-about {
  background-color: var(--black);
}

.about-ctr {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.about-mobile-decoration {
  opacity: 0;
  position: absolute;
}

.graphic-ctr {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.text-cta-ctr {
  display: flex;
  flex-flow: column;
  gap: 3rem;
  padding-right: 2rem;
}

.text-cta-ctr p {
  font-size: 1.25rem;
  color: var(--beige);
  font-weight: 500;
}

.btn {
  text-transform: uppercase;
  padding: 0.5rem 3rem;
  text-decoration: none;
  width: fit-content;
  font-weight: 500;
  font-size: 1.25rem;
}

.beige-bg {
  background-color: var(--beige);
  color: var(--black);
  transition: 300ms;
}

.beige-bg:hover {
  transition: 300ms;
  background-color: var(--cyan);
  color: var(--black);
}

.black-bg {
  background-color: var(--black);
  color: var(--beige);
  transition: 300ms;
}

.black-bg:hover {
  transition: 300ms;
  background-color: var(--purple);
  color: var(--beige);
}

#home-call {
  background-color: var(--beige);
}

.call-ctr {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  gap: 3rem;
}

.call-ctr p {
  max-width: 800px;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
}

#home-registration {
  background-color: var(--red);
  color: var(--black);
  position: relative;
}

.hr-decoration {
  position: absolute;
  top: -10rem;
  right: 0;
  height: 20rem;
  width: auto;
  pointer-events: none;
}

.registration-ctr {
  max-width: 1200px;
  margin: auto;
  padding: 6rem 2rem;
  display: flex;
  flex-flow: column;
  gap: 3rem;
}

.registration-ctr h3 {
  font-size: 4rem;
  font-weight: 700;
  max-width: 600px;
  margin: 0;
}

.registration-ctr p {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  max-width: 800px;
}

.home-footer {
  width: 100vw;
  height: auto;
  margin-top: -10rem;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .hero-ctr,
  .hero-title {
    max-width: 800px;
  }

  .hero-title img:nth-of-type(1) {
    height: 11.5rem;
    width: auto;
  }

  .hero-title img:nth-of-type(2) {
    height: 9.5rem;
    width: auto;
  }
}

@media (max-width: 850px) {
  .hero-ctr,
  .hero-title {
    max-width: 600px;
  }

  .hero-title img:nth-of-type(1) {
    height: 9rem;
    width: auto;
  }

  .hero-title img:nth-of-type(2) {
    height: 7rem;
    width: auto;
  }

  .hero-logo-ctr img, .udem-logo {
    height: 2.25rem !important;
    width: auto !important;
    margin-top: 2rem !important;
  }

  .about-ctr {
    gap: 2rem;
  }

  .graphic-ctr {
    width: 20%;
  }

  .graphic-ctr img {
    width: 100%;
  }

  .text-cta-ctr {
    width: 80%;
    gap: 1rem;
    padding: 2rem 2rem 2rem 0;
  }

  .text-cta-ctr p {
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
  }

  .btn {
    font-size: 1rem;
  }

  .call-ctr {
    margin: auto;

    padding: 4rem 2rem;
    gap: 1rem;
  }

  .call-ctr p {
    max-width: 600px;
    text-align: left;
    font-size: 1rem;
    font-weight: 300;
  }

  .hr-decoration {
    height: 12rem;
    top: -6rem;
  }
}

@media (max-width: 650px) {
  .hero-ctr {
    max-width: 400px;
    padding: 4rem 0;
  }

  .hero-title {
    max-width: 400px;
  }

  .hero-title img:nth-of-type(1) {
    height: 6.5rem;
    width: auto;
  }

  .hero-title img:nth-of-type(2) {
    height: 4.5rem;
    width: auto;
  }

  .hero-logo-ctr img, .udem-logo {
    height: 1.5rem !important;
    width: auto;
  }

  .hero-heading p {
    font-size: 1rem;
    font-weight: 100;
  }

  .dates {
    font-size: 1rem !important;
  }

  .about-ctr {
    position: relative;
    height: 238px;
    width: 100%;
    justify-content: center;
  }

  .graphic-ctr {
    width: 120px;
    position: absolute;
    left: -64px;
  }

  .text-cta-ctr {
    width: 100%;
    padding-left: calc(56px + 2rem);
  }

  .registration-ctr {
    gap: 2rem;
  }

  .registration-ctr h3 {
    font-size: 3rem;
  }

  .registration-ctr p {
    font-size: 1rem;
    font-weight: 300;
  }

  .registration-ctr .btn {
    margin-bottom: 2rem;
    z-index: 999;
  }
  .track-decor-2, 
  .track-decor-3 {
    opacity: .3 !important;
  }
  .cursor {
    display: none;
  }
}

@media (max-width: 525px) {
  .hero-ctr {
    max-width: calc(100% - 3rem);
    padding: 2rem 0 2.5rem;
  }

  .graphic-ctr {
    opacity: 0;
  }

  .about-ctr {
    height: auto;
  }

  .text-cta-ctr {
    padding: 2rem;
  }

  .about-mobile-decoration {
    opacity: 1;
    bottom: 0;
    right: 2rem;
    height: 4rem;
  }

  .registration-ctr {
    padding: 4rem 2rem;
  }

  .registration-ctr h3 {
    font-size: 2rem;
  }

  .hr-decoration {
    height: 6rem;
    top: -3rem;
  }
  #conference svg,
  .track-decor-3 {
    width: 100% !important;
  }
  .track-decor-3 {
    left: 0 !important;
  }
  .cursor {
    display: none;
  }
}

@media (max-width: 465px) {
  .hero-logo-ctr {
    flex-flow: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .hero-logo-ctr img {
    margin-top: 0;
  }

  .uni-logos {
    width: 100%;
    justify-content: space-between;
  }

  .hero-heading {
    flex-wrap: wrap;
    gap: 0;
  }

  .dates {
    text-align: right;
  }

  .hero-title {
    width: 100%;
    position: relative;
  }

  .hero-title img:nth-of-type(1) {
    position: absolute;
    left: 0;
    z-index: 1;
  }

  .hero-title img:nth-of-type(2) {
    z-index: 2;
    width: 95%;
    height: auto;
    margin: 0.5rem 0 0 auto;
  }
  #conference svg,
  .track-decor-3 {
    width: 100% !important;
  }
  .track-decor-3 {
    left: 0 !important;
  }
  .cursor {
    display: none;
  }
}

@media (max-width: 394px) {
  .dates {
    margin-left: auto;
    margin-top: -1.5rem;
    margin-bottom: 0;
  }

  .uni-logos {
    gap: 1rem;
  }

  .about-mobile-decoration {
    height: 2.5rem;
  }
  #conference svg,
  .track-decor-3 {
    width: 100% !important;
  }
  .track-decor-3 {
    left: 0 !important;
  }
  .cursor {
    display: none;
  }
}
/* ABOUT */

.page-heading {
  width: 100vw;
  position: relative;
  margin-bottom: 4rem;
  overflow: hidden;
}

.page-heading img {
  position: absolute;
  right: 0;
  top: 2rem;
  height: 6rem;
  width: auto;
}

.page-heading > div {
  margin: auto;
  max-width: 1200px;
  padding: 4rem 2rem 2rem;
  border-bottom: solid 2px var(--black);
}

.page-heading h1 {
  text-transform: uppercase;
  font-size: 3rem;
  margin: 0;
  line-height: 1;
}

.about-location {
  display: flex;
  flex-flow: column;
  gap: 4rem;
}

.image-text {
  display: flex;
  flex-flow: row;
  gap: 4rem;
  justify-content: space-between;
}

.image-text:nth-of-type(even) {
  flex-flow: row-reverse;
}

.image-text img {
  width: 100%;
  height: auto;
}

.title-image {
  width: 40.6%;
  display: flex;
  flex-flow: column;
  gap: 4rem;
}

.title-image h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.image-text:nth-of-type(odd) h3,
.image-text:nth-of-type(even) p {
  padding-left: 6rem;
  padding-right: 0;
}

.image-text:nth-of-type(even) h3 {
  padding-left: 0;
  padding-right: 6rem;
  text-align: right;
}

.image-text:nth-of-type(odd) p {
  padding-left: 0;
  padding-right: 6rem;
  text-align: left;
}

.image-text:nth-of-type(even) .btn {
  margin-left: 6rem;
}

.text-ctr {
  width: 60%;
  display: flex;
  flex-flow: column;
  gap: 4rem;
}

.text-ctr p {
  line-height: 1.5;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 800px;
}

.about-banner {
  background-color: var(--cyan);
}

.about-banner img {
  width: 100vw;
  height: auto;
}

#about-us {
  background-color: var(--black);
  color: var(--beige);
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 0;
}

#about-us img {
  width: 25%;
  height: auto;
}

#about-us img:nth-of-type(even) {
  margin-top: auto;
}

.about-us {
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 2rem;
}

.about-us h3 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

.about-us p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}

.about-us .btn {
  margin-bottom: 4rem;
}

#team {
  background-color: var(--black);
  color: var(--beige);
  padding-bottom: 8rem;
}

.team {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

#team h4 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 500;
}

.team-card-ctr {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.team-card {
  width: 200px;
  text-align: center;
  display: flex;
  flex-flow: column;
  gap: 1rem;
}

.team-card img {
  width: 100%;
  height: auto;
}

.team-card h5 {
  margin: 1rem 0 0;
  font-size: 1.25rem;
}

.team-card p {
  margin: 0;
  font-weight: 500;
}

#contact {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
}

#contact h4 {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0;
}

#contact a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--black);
}

@media (max-width: 1170px) {
  .image-text:nth-of-type(odd) h3,
  .image-text:nth-of-type(even) p {
    padding-left: 3rem;
  }

  .image-text:nth-of-type(even) h3 {
    padding-right: 3rem;
  }

  .image-text:nth-of-type(odd) p {
    padding-right: 3rem;
  }

  .image-text:nth-of-type(even) .btn {
    margin-left: 3rem;
  }

  .about-location {
    padding-bottom: 4rem;
  }
}

@media (max-width: 910px) {
  .image-text h3 {
    font-size: 1.75rem;
  }
  .image-text:nth-of-type(odd) h3,
  .image-text:nth-of-type(even) p {
    padding-left: 2rem;
  }

  .image-text:nth-of-type(even) h3 {
    padding-right: 2rem;
  }

  .image-text:nth-of-type(odd) p {
    padding-right: 2rem;
  }

  .image-text:nth-of-type(even) .btn {
    margin-left: 2rem;
  }

  #about-us {
    flex-flow: column;
    align-items: center;
    gap: 0;
  }

  #about-us img {
    width: 35%;
    margin-right: auto;
  }

  #about-us img:nth-of-type(even) {
    margin-left: auto;
    margin-right: 0;
    margin-top: -12rem;
    z-index: 1;
    position: relative;
  }

  .about-us {
    width: 70%;
    margin-top: -10rem;
    position: relative;
    z-index: 2;
    gap: 3rem;
  }

  .about-us h3,
  .about-us p {
    background-color: var(--black);
    padding: 1rem;
    margin: 0;
  }
}

@media (max-width: 800px) {
  .image-text,
  .image-text:nth-of-type(even) {
    flex-flow: column;
    gap: 0;
  }

  .title-image {
    width: 100%;
    gap: 0;
  }

  .text-ctr {
    width: calc(100% - 6rem);
    margin: auto;
    gap: 0;
    align-items: center;
  }

  .text-ctr p {
    padding: 1rem !important;
    background-color: var(--beige);
    margin-top: -4rem;
    z-index: 2;
    border-width: 4px;
    border-style: solid;
    border-image: linear-gradient(
        180deg,
        var(--black),
        var(--beige),
        transparent
      )
      1;
  }

  .image-text:nth-of-type(even) .btn {
    margin-left: 0;
  }

  .title-image h3 {
    padding: 1rem;
    background-color: var(--beige);
    font-size: 2.5rem;
    max-width: 15ch;
    z-index: 2;
    border-width: 4px;
    border-style: solid;
    border-image: linear-gradient(0deg, var(--black), var(--beige), transparent)
      1;
  }

  .image-text:nth-of-type(odd) h3 {
    border-left: none;
  }

  .image-text:nth-of-type(even) h3 {
    border-right: none;
  }

  .title-image img {
    margin-top: -3rem;
    z-index: 1;
  }

  .image-text:nth-of-type(even) h3 {
    margin-left: auto;
  }

  .about-us {
    width: 90%;
  }

  .team-card:last-of-type {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 728px) {
  .team-card:last-of-type {
    margin: 0;
  }

  .team-card-ctr {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .about-us h3 {
    font-size: 2rem;
  }

  .about-us p {
    font-weight: 300;
  }
  .schedule-item {
    width: 100% !important;
  }
}

@media (max-width: 440px) {
  .text-ctr {
    width: calc(100% - 4rem);
  }

  .text-ctr p {
    font-weight: 400;
  }

  .title-image h3 {
    font-size: 2rem;
  }
  .schedule-item {
    width: 100%  !important;
  }
  .track-decor-1 {
    width: 150px !important;
  }
}

/* LOCATION */

#location-heading {
  margin-bottom: 2rem;
}

/* variables */
:root {
  /* colors */
  --oh8-color-primary-hsl: 250, 84%, 54%;
  --oh8-color-bg-hsl: 0, 0%, 100%;
  --oh8-color-contrast-high-hsl: 230, 7%, 23%;
  --oh8-color-contrast-higher-hsl: 230, 13%, 9%;
  --oh8-color-black-hsl: 230, 13%, 9%;
  --oh8-color-accent-hsl: 342, 89%, 48%;
  --oh8-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --oh8-space-md: 1.25rem;
  --oh8-space-xl: 3.25rem;
  --oh8-space-sm: 0.75rem;
  --oh8-space-xs: 0.5rem;

  /* typography */
  --oh8-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --oh8-space-md: 2rem;
    --oh8-space-xl: 5.125rem;
    --oh8-space-sm: 1.125rem;
    --oh8-space-xs: 0.75rem;

    /* typography */
    --oh8-text-sm: 1rem;
  }
}

/* component */
.overscroll-section {
  --overscroll-section-opacity: 0;
}

.overscroll-section__sticky-content {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
}

.overscroll-section__scroll-content {
  position: relative;
  z-index: 2;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.overscroll-section__scroll-content::before,
.overscroll-section__scroll-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  pointer-events: none;
}
.overscroll-section__scroll-content::before {
  height: 100vh;
  background: hsl(var(--oh8-color-black-hsl));
  opacity: var(--overscroll-section-opacity, 0);
  z-index: 1;
}
.overscroll-section__scroll-content::after {
  height: 80px;
  background: linear-gradient(
      to top,
      hsla(var(--oh8-color-black-hsl), 0.025) 0%,
      hsla(var(--oh8-color-black-hsl), 0) 5%
    ),
    linear-gradient(
      to top,
      hsla(var(--oh8-color-black-hsl), 0.025) 0%,
      hsla(var(--oh8-color-black-hsl), 0) 10%
    ),
    linear-gradient(
      to top,
      hsla(var(--oh8-color-black-hsl), 0.025) 0%,
      hsla(var(--oh8-color-black-hsl), 0) 20%
    ),
    linear-gradient(
      to top,
      hsla(var(--oh8-color-black-hsl), 0.025) 0%,
      hsla(var(--oh8-color-black-hsl), 0) 50%
    ),
    linear-gradient(
      to top,
      hsla(var(--oh8-color-black-hsl), 0.025) 0%,
      hsla(var(--oh8-color-black-hsl), 0) 100%
    );
}

.overscroll-section--disabled .overscroll-section__sticky-content {
  position: static;
}
.overscroll-section--disabled .overscroll-section__scroll-content::before,
.overscroll-section--disabled .overscroll-section__scroll-content::after {
  display: none;
}

/* utility classes */
.oh8-text-gap-md {
  --oh8-space-multiplier: 1.25;
}

.oh8-line-height-lg {
  line-height: 1.58;
}

.oh8-text-component :where(h1, h2, h3, h4) {
  line-height: var(--oh8-heading-line-height, 1.2);
  margin-top: calc(var(--oh8-space-md) * var(--oh8-space-multiplier, 1));
  margin-bottom: calc(var(--oh8-space-sm) * var(--oh8-space-multiplier, 1));
}

.oh8-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--oh8-body-line-height, 1.4);
}

.oh8-text-component :where(ul, ol, p, blockquote, .oh8-text-component__block) {
  margin-bottom: calc(var(--oh8-space-sm) * var(--oh8-space-multiplier, 1));
}

.oh8-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.oh8-text-component ul :where(ul, ol),
.oh8-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.oh8-text-component ul {
  list-style-type: disc;
}

.oh8-text-component ol {
  list-style-type: decimal;
}

.oh8-text-component img {
  display: block;
  margin: 0 auto;
}

.oh8-text-component figcaption {
  margin-top: calc(var(--oh8-space-xs) * var(--oh8-space-multiplier, 1));
  font-size: var(--oh8-text-sm);
  text-align: center;
}

.oh8-text-component em {
  font-style: italic;
}

.oh8-text-component strong {
  font-weight: bold;
}

.oh8-text-component s {
  text-decoration: line-through;
}

.oh8-text-component u {
  text-decoration: underline;
}

.oh8-text-component mark {
  background-color: hsla(var(--oh8-color-accent-hsl), 0.2);
  color: inherit;
}

.oh8-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--oh8-color-contrast-lower-hsl));
  font-style: italic;
}

.oh8-text-component hr {
  margin: calc(var(--oh8-space-md) * var(--oh8-space-multiplier, 1)) auto;
  background: hsl(var(--oh8-color-contrast-lower-hsl));
  height: 1px;
}

.oh8-text-component > *:first-child {
  margin-top: 0;
}

.oh8-text-component > *:last-child {
  margin-bottom: 0;
}

.oh8-text-component.oh8-line-height-xs {
  --oh8-heading-line-height: 1;
  --oh8-body-line-height: 1.1;
}

.oh8-text-component.oh8-line-height-sm {
  --oh8-heading-line-height: 1.1;
  --oh8-body-line-height: 1.2;
}

.oh8-text-component.oh8-line-height-md {
  --oh8-heading-line-height: 1.15;
  --oh8-body-line-height: 1.4;
}

.oh8-text-component.oh8-line-height-lg {
  --oh8-heading-line-height: 1.22;
  --oh8-body-line-height: 1.58;
}

.oh8-text-component.oh8-line-height-xl {
  --oh8-heading-line-height: 1.3;
  --oh8-body-line-height: 1.72;
}

.oh8-padding-y-xl {
  padding-top: var(--oh8-space-xl);
  padding-bottom: var(--oh8-space-xl);
}

.oh8-max-width-sm {
  max-width: 48rem;
}

.oh8-container {
  width: calc(100% - 2 * var(--oh8-space-md));
  margin-left: auto;
  margin-right: auto;
}

.oh8-bg {
  --oh8-bg-o: 1;
  background: linear-gradient(
    90deg,
    rgba(27, 29, 27, 1) 10%,
    rgba(27, 29, 27, 0.5) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  color: var(--beige);
}

.oh8-text-center {
  text-align: center;
}

.oh8-flex-center {
  justify-content: center;
  align-items: center;
}

.oh8-flex {
  display: flex;
}

.oh8-min-height-100vh {
  min-height: 100vh;
}

.oh8-z-index-1 {
  z-index: 1;
}

.oh8-position-relative {
  position: relative;
}

#crgs {
  background-image: linear-gradient(
      90deg,
      rgba(27, 29, 27, 1) 10%,
      rgba(27, 29, 27, 0.5) 70%,
      rgba(255, 255, 255, 0) 100%
    ),
    url('assets/crgs.png');
  background-position: center;
  background-size: cover;
  position: relative;
}

#estoa {
  background-image: linear-gradient(
      90deg,
      rgba(27, 29, 27, 1) 10%,
      rgba(27, 29, 27, 0.5) 70%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("assets/estoa.png");
  background-position: center;
  background-size: cover;
  position: relative;
}

#itesm {
  background-image: linear-gradient(
      90deg,
      rgba(27, 29, 27, 1) 10%,
      rgba(27, 29, 27, 0.5) 70%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("assets/itesm.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}

.info-overlay {
  background: linear-gradient(
    90deg,
    rgba(27, 29, 27, 1) 10%,
    rgba(27, 29, 27, 0.5) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  color: var(--beige);
  position: absolute;
  top: 0;
  width: -webkit-fill-available;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}

.overlay-content {
  width: 65%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 2rem;
  color: white;
}

.overscroll-section__scroll-content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}

.overlay-content h3 {
  font-size: 3rem;
  width: 60%;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.overlay-content p {
  margin: 0 auto 1rem 0;
  width: 90%;
  font-size: 1.25rem;
  line-height: 1.5;
}

.mty-ctr {
  max-width: 1200px;
  padding: 4rem;
  margin: auto;
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.mty-img {
  width: 90%;
  height: auto;
  margin: 0 auto 4rem;
  text-align: center;
}

.floating-text {
  font-size: 4rem;
  position: absolute;
  top: 2rem;
  left: 1.35rem;
}

.mty-ctr p {
  width: 70%;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.nl-logo {
  width: 6rem;
  height: auto;
}

#accomodation {
  margin: 2rem auto;
  max-width: 1200px;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
}

#accomodation h3 {
  font-size: 3rem;
  margin: 0 0 1.5rem;
}

#accomodation h4 {
  font-size: 1.5rem;
}

#accomodation a {
  color: black;
  text-decoration: none;
  transition: 300ms;
}

#accomodation a:hover {
  color: var(--purple);
  transition: 300ms;
}

#accomodation h4, #accomodation p {
  margin: 0;
}

.accomodation-bg {
  width: 50%;
  background-image: url(https://www.corpo-rate.com/img/Login_Photo.0ec61bc7.png);
  display: flex;
  background-size: cover;
}

.accomodation-info {
  width: calc(50% - 4rem);
  display: flex;
  flex-flow: column;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hotel-link {
  color: var(--purple) !important;
  transition: 300ms;
  font-weight: bold;
}

.hotel-link:hover {
color: black !important;
  transition: 300ms;}
@media (max-width: 1200px) {
  .overlay-content {
    width: 70%;
  }
}

@media (max-width: 850px) {
  .overlay-content {
    width: calc(100% - 4rem);
    padding: 2rem;
  }

  #crgs {
    background-image: linear-gradient(
        90deg,
        rgba(27, 29, 27, 1) 20%,
        rgba(27, 29, 27, 0.7) 70%
      ),
      url("assets/crgs.png");
    
  }
  
  #estoa {
    background-image: linear-gradient(
        90deg,
        rgba(27, 29, 27, 1) 20%,
        rgba(27, 29, 27, 0.7) 70%
      ),
      url("assets/estoa.png");
  }

  .mty-ctr p {
    width: 100%;
    margin: 0 auto 2rem;
  }

  .floating-text {
    font-size: 3rem;
  }
}

@media (max-width: 750px) {
  #accomodation {
  flex-flow: column;
    gap: 2rem;
}
  
  .accomodation-bg {
  width: 100%;
  background-image: url(https://www.corpo-rate.com/img/Login_Photo.0ec61bc7.png);
  height: auto;
    aspect-ratio: 5 / 3;
}

.accomodation-info {
  width: calc(100% - 4rem);
}

}
@media (max-width: 600px) {
  .mty-img {
    width: 100%;
    margin: 3rem 0 2rem;
  }

  .floating-text{ 
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1;
  }
}

@media (max-width: 560px) {
  .overlay-content h3 {
    font-size: 2rem;
    width: 100%;
   
  }
  
  .overlay-content p {
    font-size: 1rem;
    width: 100%;
  }


}

@media (max-width: 400px) {
  .mty-ctr {
    padding: 4rem 2rem;
  }
  .floating-text {
    font-size: 2.5rem;
    top: 0.75rem;
  }
}

@media (max-height: 920px) {
  .overlay-content p {
    line-height: 1;
  }
}

@media (max-height: 700px) {
  .overlay-content {
    gap: 1rem;
  }

  .overlay-content h3{
    font-size: 1.5rem;
    max-width: 15ch;;
  }
}

@media (max-width: 380px) {
  #accomodation h3 { font-size: 2rem;}
}
/* CALL */

#call-hero .hero-ctr,
.conference-ctr {
  max-width: 1000px;
  margin: auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

#call-hero .hero-ctr p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 4rem;
  font-weight: 500;
}

#conference {
  position: relative;
}

#conference img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

.conference-ctr h3 {
  font-size: 2rem;
}

.conference-ctr p {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}

#tracks {
  position: relative;
}

#tracks h3 {
  max-width: 1000px;
  margin: auto;
  font-size: 2rem;
}

.track-decor-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: 10rem;
}

.track-decor-2 {
  position: absolute;
  left: 0;
  top: 37%;
  width: auto;
  height: 10rem;
}

.track-decor-3 {
  position: absolute;
  left: 4rem;
  bottom: 5%;
  width: auto;
  height: 10rem;
}
/* -------------------------------- 

File#: _1_vertical-timeline
Title: Vertical Timeline
Descr: A vertical timeline used to display a sequence of events/steps
Usage: codyhouse.co/license

-------------------------------- */

/* variables */
:root {
  /* colors */
  --vq4-color-primary-hsl: 250, 84%, 54%;
  --vq4-color-bg-hsl: 0, 0%, 100%;
  --vq4-color-contrast-high-hsl: 230, 7%, 23%;
  --vq4-color-contrast-higher-hsl: 230, 13%, 9%;
  --vq4-color-accent-hsl: 342, 89%, 48%;
  --vq4-color-warning-hsl: 35, 79%, 66%;
  --vq4-color-contrast-medium-hsl: 225, 4%, 47%;
  --vq4-color-bg-dark-hsl: 240, 4%, 95%;
  --vq4-color-bg-light-hsl: 0, 0%, 100%;
  --vq4-color-white-hsl: 0, 0%, 100%;
  --vq4-color-primary-darker-hsl: 250, 84%, 38%;
  --vq4-color-primary-light-hsl: 250, 84%, 60%;
  --vq4-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --vq4-space-2xs: 0.375rem;
  --vq4-space-sm: 0.75rem;
  --vq4-space-md: 1.25rem;
  --vq4-space-lg: 2rem;
  --vq4-space-xl: 3.25rem;
  --vq4-space-xs: 0.5rem;

  /* typography */
  --vq4-text-sm: 0.833rem;
  --vq4-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --vq4-space-2xs: 0.5625rem;
    --vq4-space-sm: 1.125rem;
    --vq4-space-md: 2rem;
    --vq4-space-lg: 3.125rem;
    --vq4-space-xl: 5.125rem;
    --vq4-space-xs: 0.75rem;

    /* typography */
    --vq4-text-sm: 1rem;
    --vq4-text-sm: 1rem;
  }
}

/* buttons */
.vq4-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--vq4-color-bg-dark-hsl));
  color: hsl(var(--vq4-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--vq4-space-2xs) var(--vq4-space-sm);
  border-radius: 0.25em;
}

.vq4-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--vq4-color-bg-hsl)),
    0px 0px 0px 4px hsla(var(--vq4-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.vq4-btn:active {
  transform: translateY(2px);
}

.vq4-btn--primary {
  background: hsl(var(--vq4-color-primary-hsl));
  color: hsl(var(--vq4-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--vq4-color-white-hsl), 0.15),
    0px 1px 3px hsla(var(--vq4-color-primary-darker-hsl), 0.25),
    0px 2px 6px hsla(var(--vq4-color-primary-darker-hsl), 0.1),
    0px 6px 10px -2px hsla(var(--vq4-color-primary-darker-hsl), 0.25);
}

.vq4-btn--primary:hover {
  background: hsl(var(--vq4-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--vq4-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--vq4-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--vq4-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--vq4-color-primary-darker-hsl), 0.25);
}

.vq4-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--vq4-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--vq4-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--vq4-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--vq4-color-primary-darker-hsl), 0.25),
    0px 0px 0px 2px hsl(var(--vq4-color-bg-hsl)),
    0px 0px 0px 4px hsl(var(--vq4-color-primary-hsl));
}

/* icons */
.vq4-icon {
  height: var(--vq4-size, 1em);
  width: var(--vq4-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.vq4-icon--sm {
  --vq4-size: 24px;
}

/* component */
:root {
  --v-timeline-marker-size: 16px;
  --v-timeline-track-width: 2px;
  --v-timeline-triangle-size: 12px;
  --v-timeline-sections-gap: var(--vq4-space-lg);
  --v-timeline-items-gap: var(--vq4-space-sm);
}

.v-timeline {
  position: relative;
  padding: var(--vq4-space-lg) 0;
}
.v-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(
    (var(--v-timeline-marker-size) - var(--v-timeline-track-width)) * 0.5
  );
  height: 100%;
  width: var(--v-timeline-track-width);
  background-color: black;
}

.v-timeline__section {
  position: relative;
  display: flex;
}
.v-timeline__section:not(:last-of-type) {
  margin-bottom: var(--v-timeline-sections-gap);
}

.v-timeline__marker {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  height: var(--v-timeline-marker-size);
  width: var(--v-timeline-marker-size);
  border-radius: 50%;
  margin-right: calc(var(--v-timeline-triangle-size) + var(--vq4-space-2xs));
}

.v-timeline__item {
  position: relative;
  top: calc(0.5 * var(--v-timeline-marker-size));
  flex-grow: 1;
  border: solid 2px black;
  border-radius: 0 !important;
  background-color: var(--beige-t);
}

.v-timeline__item:not(:last-child) {
  margin-bottom: var(--v-timeline-items-gap);
}
.v-timeline__item:not(:first-child) .v-timeline__date {
  display: none;
}
.v-timeline__item:not(:first-child)::before {
  display: none;
}

.v-timeline__date-value {
  color: black;
  font-size: var(--vq4-text-sm);
  text-transform: uppercase;
  font-weight: 500;
}

@media not all and (min-width: 64rem) {
  .v-timeline__item:first-child {
    border-top-left-radius: 0;
  }
}
@media (min-width: 64rem) {
  .v-timeline::before {
    left: calc(50% - var(--v-timeline-track-width) / 2);
  }

  .v-timeline__section {
    width: calc(50% + var(--v-timeline-marker-size) / 2);
  }
  .v-timeline__section:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .v-timeline__section:nth-child(odd) .v-timeline__marker {
    margin-right: 0;
    margin-left: calc(var(--v-timeline-triangle-size) + var(--vq4-space-2xs));
  }
  .v-timeline__section:nth-child(odd) .v-timeline__item::before {
    left: auto;
    right: calc(-1 * var(--v-timeline-triangle-size) + 1px);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .v-timeline__section:nth-child(odd) .v-timeline__item:first-child {
    border-top-right-radius: 0;
  }
  .v-timeline__section:nth-child(odd) .v-timeline__date {
    right: calc(
      -2 * (var(--v-timeline-triangle-size) + var(--vq4-space-2xs)) - var(--v-timeline-marker-size)
    );
    -webkit-transform: translateX(100%) translateY(-50%);
    transform: translateX(100%) translateY(-50%);
  }
  .v-timeline__section:nth-child(even) {
    margin-left: auto;
  }
  .v-timeline__section:nth-child(even) .v-timeline__item:first-child {
    border-top-left-radius: 0;
  }
  .v-timeline__section:nth-child(even) .v-timeline__date {
    left: calc(
      -2 * (var(--v-timeline-triangle-size) + var(--vq4-space-2xs)) - var(--v-timeline-marker-size)
    );
    -webkit-transform: translateX(-100%) translateY(-50%);
    transform: translateX(-100%) translateY(-50%);
  }

  .v-timeline__section--is-hidden {
    opacity: 0;
  }

  .v-timeline__date {
    position: absolute;
    top: 0;
    white-space: nowrap;
  }

  .v-timeline[data-animation="on"] .v-timeline__marker {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    transition: opacity 0.6s,
      -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s,
      -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .v-timeline[data-animation="on"] .v-timeline__item {
    opacity: 0;
    transition: opacity 0.6s,
      -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s,
      -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .v-timeline[data-animation="on"]
    .v-timeline__section:nth-child(odd)
    .v-timeline__item {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  .v-timeline[data-animation="on"]
    .v-timeline__section:nth-child(even)
    .v-timeline__item {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  .v-timeline[data-animation="on"]
    .v-timeline__section--animate
    .v-timeline__item {
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    opacity: 1;
  }
  .v-timeline[data-animation="on"]
    .v-timeline__section--animate
    .v-timeline__marker {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.v-timeline--icons {
  --v-timeline-marker-size: 3em;
}

/* utility classes */
.vq4-margin-top-md {
  margin-top: var(--vq4-space-md);
}

.vq4-text-component :where(h1, h2, h3, h4) {
  line-height: var(--vq4-heading-line-height, 1.2);
  margin-top: calc(var(--vq4-space-md) * var(--vq4-space-multiplier, 1));
  margin-bottom: calc(var(--vq4-space-sm) * var(--vq4-space-multiplier, 1));
}

.vq4-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--vq4-body-line-height, 1.4);
}

.vq4-text-component :where(ul, ol, p, blockquote, .vq4-text-component__block) {
  margin-bottom: calc(var(--vq4-space-sm) * var(--vq4-space-multiplier, 1));
}

.vq4-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.vq4-text-component ul :where(ul, ol),
.vq4-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.vq4-text-component ul {
  list-style-type: disc;
}

.vq4-text-component ol {
  list-style-type: decimal;
}

.vq4-text-component img {
  display: block;
  margin: 0 auto;
}

.vq4-text-component figcaption {
  margin-top: calc(var(--vq4-space-xs) * var(--vq4-space-multiplier, 1));
  font-size: var(--vq4-text-sm);
  text-align: center;
}

.vq4-text-component em {
  font-style: italic;
}

.vq4-text-component strong {
  font-weight: bold;
}

.vq4-text-component s {
  text-decoration: line-through;
}

.vq4-text-component u {
  text-decoration: underline;
}

.vq4-text-component mark {
  background-color: hsla(var(--vq4-color-accent-hsl), 0.2);
  color: inherit;
}

.vq4-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--vq4-color-contrast-lower-hsl));
  font-style: italic;
}

.vq4-text-component hr {
  margin: calc(var(--vq4-space-md) * var(--vq4-space-multiplier, 1)) auto;
  background: hsl(var(--vq4-color-contrast-lower-hsl));
  height: 1px;
}

.vq4-text-component > *:first-child {
  margin-top: 0;
}

.vq4-text-component > *:last-child {
  margin-bottom: 0;
}

.vq4-text-component.vq4-line-height-xs {
  --vq4-heading-line-height: 1;
  --vq4-body-line-height: 1.1;
}

.vq4-text-component.vq4-line-height-sm {
  --vq4-heading-line-height: 1.1;
  --vq4-body-line-height: 1.2;
}

.vq4-text-component.vq4-line-height-md {
  --vq4-heading-line-height: 1.15;
  --vq4-body-line-height: 1.4;
}

.vq4-text-component.vq4-line-height-lg {
  --vq4-heading-line-height: 1.22;
  --vq4-body-line-height: 1.58;
}

.vq4-text-component.vq4-line-height-xl {
  --vq4-heading-line-height: 1.3;
  --vq4-body-line-height: 1.72;
}

.vq4-margin-bottom-sm {
  margin-bottom: var(--vq4-space-sm);
}

.vq4-shadow-xs {
  box-shadow: 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.vq4-radius-md {
  border-radius: 0.25em;
}

.vq4-padding-md {
  padding: var(--vq4-space-md);
}

.vq4-bg {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-bg-hsl), var(--vq4-bg-o, 1));
}

.vq4-color-white {
  --vq4-color-o: 1;
  color: hsla(var(--vq4-color-white-hsl), var(--vq4-color-o, 1));
}

.vq4-bg-warning {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-warning-hsl), var(--vq4-bg-o, 1));
}

.vq4-bg-primary {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-primary-hsl), var(--vq4-bg-o, 1));
}

.vq4-bg-contrast-high {
  --vq4-bg-o: 1;
  background-color: hsla(
    var(--vq4-color-contrast-high-hsl),
    var(--vq4-bg-o, 1)
  );
}

.vq4-bg-accent {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-accent-hsl), var(--vq4-bg-o, 1));
}

.vq4-max-width-adaptive-lg {
  max-width: 32rem;
}

@media (min-width: 48rem) {
  .vq4-max-width-adaptive-lg {
    max-width: 48rem;
  }
}

@media (min-width: 64rem) {
  .vq4-max-width-adaptive-lg {
    max-width: 64rem;
  }
}

@media (min-width: 80rem) {
  .vq4-max-width-adaptive-lg {
    max-width: 80rem;
  }
}

.vq4-container {
  width: calc(100% - 2 * var(--vq4-space-md));
  margin-left: auto;
  margin-right: auto;
}

.vq4-text-center {
  text-align: center;
}

.vq4-margin-bottom-lg {
  margin-bottom: var(--vq4-space-lg);
}

.vq4-overflow-hidden {
  overflow: hidden;
}

.vq4-z-index-1 {
  z-index: 1;
}

.vq4-position-relative {
  position: relative;
}

.vq4-bg-light {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-bg-light-hsl), var(--vq4-bg-o, 1));
}

.vq4-border-3 {
  --vq4-border-width: 3px;
}

.vq4-border-bg-dark {
  --vq4-border-o: 1;
  border-color: hsla(var(--vq4-color-bg-dark-hsl), var(--vq4-border-o, 1));
}

/* PROGRAM */

#program {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem 4rem;
}

#program h3 {
  font-size: 2rem;
}

.schedule-ctr {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 2rem;
}

.schedule-item {
  text-align: center;
  width: 200px;
}

.schedule-head {
  padding: 1rem;
  width: calc(100% - 2rem);
  border: solid 2px black;
  font-weight: bold;
}

.schedule-item p {
  margin: 0;
  line-height: 2;
}

.schedule-time {
  margin: 2rem 0;
}

.schedule-time span {
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 500px) {
  .page-heading img {
    height: 4rem;
    top: 3rem;
  }
}

@media (max-width: 420px) {
  #program-heading h1,
  #about-us-heading h1,
  #location-heading h1 {
    font-size: 2rem;
  }

  #program h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .schedule-item {
    width: 100%;
  }
}
/* ANIMATION */
.rainbow-circle {
  animation: __rainbow 3s ease-in-out forwards;
}

@keyframes __rainbow {
  from {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-duration: 1500;
  }
}

[data-aos="half-circle"] {
  fill: transparent;
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos="half-circle"].aos-animate {
  opacity: 1;
  fill: #e1ded7;
}
.rotate {
  animation: __rotate 10s infinite;
}
.back-decor {
  position: absolute;
}
.back-decor path {
  opacity: 0.3 !important;
}

@keyframes __rotate {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 850px) {
  .hr-decoration svg {
    width: 150px;
    height: 150px;
  }
  .graphic-ctr svg {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 525px) {
  .hr-decoration svg {
    width: 100px;
    height: 100px;
  }
}

/* NAVBAR */

/* -------------------------------- 

File#: _2_flexi-header
Title: Flexi Header
Descr: Customizable header template
Usage: codyhouse.co/license

-------------------------------- */

/* variables */
:root {
  /* colors */
  --fw9-color-primary-hsl: 250, 84%, 54%;
  --fw9-color-bg-hsl: 0, 0%, 100%;
  --fw9-color-contrast-high-hsl: 230, 7%, 23%;
  --fw9-color-contrast-higher-hsl: 230, 13%, 9%;
  --fw9-color-contrast-lower-hsl: 240, 4%, 85%;
  --fw9-color-bg-light-hsl: 0, 0%, 100%;
  --fw9-color-bg-dark-hsl: 240, 4%, 95%;
  --fw9-color-white-hsl: 0, 0%, 100%;
  --fw9-color-primary-darker-hsl: 250, 84%, 38%;
  --fw9-color-primary-light-hsl: 250, 84%, 60%;
  --fw9-color-contrast-low-hsl: 240, 4%, 65%;

  /* spacing */
  --fw9-space-4xs: 0.125rem;
  --fw9-space-3xs: 0.25rem;
  --fw9-space-2xs: 0.375rem;
  --fw9-space-xs: 0.5rem;
  --fw9-space-sm: 0.75rem;
  --fw9-space-md: 1.25rem;
  --fw9-space-lg: 2rem;

  /* typography */
  --fw9-text-md: 1.2rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --fw9-space-4xs: 0.1875rem;
    --fw9-space-3xs: 0.375rem;
    --fw9-space-2xs: 0.5625rem;
    --fw9-space-xs: 0.75rem;
    --fw9-space-sm: 1.125rem;
    --fw9-space-md: 2rem;
    --fw9-space-lg: 3.125rem;

    /* typography */
    --fw9-text-md: 1.5625rem;
  }
}

/* buttons */
.fw9-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--fw9-color-bg-dark-hsl));
  color: hsl(var(--fw9-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--fw9-space-2xs) var(--fw9-space-sm);
  border-radius: 0.25em;
}

.fw9-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--fw9-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--fw9-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.fw9-btn:active {
  transform: translateY(2px);
}

.fw9-btn--primary {
  background: hsl(var(--fw9-color-primary-hsl));
  color: hsl(var(--fw9-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fw9-color-white-hsl), 0.15), 0px 1px 3px hsla(var(--fw9-color-primary-darker-hsl), 0.25), 0px 2px 6px hsla(var(--fw9-color-primary-darker-hsl), 0.1), 0px 6px 10px -2px hsla(var(--fw9-color-primary-darker-hsl), 0.25);
}

.fw9-btn--primary:hover {
  background: hsl(var(--fw9-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fw9-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--fw9-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--fw9-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--fw9-color-primary-darker-hsl), 0.25);
}

.fw9-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--fw9-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--fw9-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--fw9-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--fw9-color-primary-darker-hsl), 0.25), 0px 0px 0px 2px hsl(var(--fw9-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--fw9-color-primary-hsl));
}

/* form elements */
.fw9-form-control {
  font-size: 1em;
  padding: var(--fw9-space-2xs) var(--fw9-space-xs);
  background: hsl(var(--fw9-color-bg-dark-hsl));
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px hsl(var(--fw9-color-contrast-lower-hsl));
  transition: all 0.2s ease;
  border-radius: 0.25em;
}

.fw9-form-control::placeholder {
  opacity: 1;
  color: hsl(var(--fw9-color-contrast-low-hsl));
}

.fw9-form-control:focus, .fw9-form-control:focus-within {
  background: hsl(var(--fw9-color-bg-hsl));
  box-shadow: inset 0px 0px 0px 1px hsla(var(--fw9-color-contrast-lower-hsl), 0), 0px 0px 0px 2px hsl(var(--fw9-color-primary-hsl)), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  outline: none;
}

/* icons */
.fw9-icon {
  height: var(--fw9-size, 1em);
  width: var(--fw9-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
:root {
  --f-header-height: 50px;
  --f-header-logo-width: 104px;
}
@media (min-width: 64rem) {
  :root {
    --f-header-height: 70px;
  }
}

.f-header {
  height: var(--f-header-height);
  width: 100%;
  z-index: 3;
}
.f-header::before {
  /* used in JS to detect menu style */
  display: none;
  content: "mobile";
}

.f-header--expanded {
  /* class added when navigation is visible - small devices only */
}

.f-header__mobile-content {
  /* logo + menu button on small devices */
  position: relative;
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.f-header__logo {
  display: block;
  width: var(--f-header-logo-width);
  flex-shrink: 0;
  text-decoration: none;
}
.f-header__logo svg, .f-header__logo img {
  display: block;
}

.f-header__nav-control {
  /* menu button */
  --anim-menu-btn-size: 40px;
  /* 🍔 icon */
  --anim-menu-btn-icon-size: 28px;
  --anim-menu-btn-icon-stroke: 2px;
}

.f-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--f-header-offset, 0px));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  padding: 0 0 var(--fw9-space-md);
  background-color: var(--beige);
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-1em);
          transform: translateY(-1em);
}
.f-header__nav::before {
  /* top header bg + border */
  content: "";
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 5rem;
  background-color: inherit;
  border-bottom: 1px solid var(--black);
}

.f-header__nav--is-visible {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: visibility 0s, opacity 0.3s, -webkit-transform 0.3s;
  transition: visibility 0s, opacity 0.3s, transform 0.3s;
  transition: visibility 0s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.f-header__nav-logo-wrapper {
  display: none;
  /* hide logo nav on small devices */
}

.f-header__item {
  flex-shrink: 0;
  border-bottom: 1px solid var(--black);
}

.f-header__item:last-of-type {
  border-bottom: none;
}

.f-header .f-header__dropdown-icon {
  height: 16px;
  width: 16px;
  flex-shrink: 0;
  margin: 0 10px 0 auto;
  display: none;
  /* hide on mobile if link */
}
.f-header__dropdown-control .f-header__dropdown-icon {
  display: block;
}

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link,
.f-header__btn,
.f-header__form-control {
  font-size: var(--fw9-text-md);
}

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link {
  display: flex;
  align-items: center;
  color: hsl(var(--fw9-color-contrast-high-hsl));
  text-decoration: none;
  padding: var(--fw9-space-xs) 0;
}
.f-header__link:hover, .f-header__link[aria-current=page],
.f-header__dropdown-control:hover,
.f-header__dropdown-control[aria-current=page],
.f-header__dropdown-link:hover,
.f-header__dropdown-link[aria-current=page] {
  color: var(--purple);
  font-weight: bold;
}

.f-header__btn,
.f-header__form-control {
  width: 100%;
  margin: var(--fw9-space-xs) 0;
}

.f-header__dropdown-control {
  width: 100%;
}

.f-header__dropdown {
  /* sub navigation */
  padding-left: var(--fw9-space-md);
  /* offset sub nav */
}

.f-header__dropdown-control + .f-header__dropdown {
  display: none;
}
.f-header__dropdown-control[aria-expanded=true] + .f-header__dropdown {
  display: block;
}

@media (min-width: 64rem) {
  .f-header::before {
    content: "desktop";
  }

  .f-header__mobile-content {
    display: none;
    /* hide logo + menu (mobile content) */
  }

  .f-header__nav {
    /* reset */
    position: static;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition: none;
    max-height: none;
    overflow: visible;
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
    height: var(--f-header-height);
  }
  .f-header__nav::before {
    /* reset */
    display: none;
  }

  .f-header__nav-logo-wrapper {
    display: flex;
  }

  .f-header__nav-grid,
.f-header__list {
    display: flex;
    align-items: center;
  }

  .f-header__nav-grid {
    height: 100%;
  }

  .f-header__item {
    position: relative;
    border-bottom: none;
    margin-right: var(--fw9-space-xs);
    /* margin between nav items */
  }
  .f-header__item:last-child {
    margin-right: 0;
  }

  .f-header .f-header__dropdown-icon {
    height: 12px;
    width: 12px;
    display: block;
    margin: 0 0 0 var(--fw9-space-4xs);
  }

  .f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link,
.f-header__btn,
.f-header__form-control {
    font-size: 1.125rem;
  }

  .f-header__link {
    padding: var(--fw9-space-3xs) var(--fw9-space-2xs);
  }

  .f-header__link--icon span {
    display: none;
    /* hide icon label */
  }

  .f-header__btn,
.f-header__form-control {
    margin: 0;
    /* reset */
  }

  .f-header__dropdown {
    position: absolute;
    top: 100%;
    width: 220px;
    left: calc(50% - 110px);
    padding: var(--fw9-space-3xs) 0;
    background-color: hsl(var(--fw9-color-bg-light-hsl));
    border-radius: 0.25em;
    box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12);
    z-index: 5;
    /* hide */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s 0.2s, opacity 0.2s 0s;
  }
  .f-header__dropdown-control + .f-header__dropdown {
    display: block;
    /* reset style */
  }
  .f-header__item:hover .f-header__dropdown, .f-header__dropdown-control[aria-expanded=true] + .f-header__dropdown {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: visibility 0.2s 0s, opacity 0.2s 0s;
  }

  .f-header__dropdown-link {
    color: hsl(var(--fw9-color-contrast-high-hsl));
    padding: var(--fw9-space-xs) var(--fw9-space-sm);
    transition: 0.2s;
  }
  .f-header__dropdown-link:hover {
    background-color: hsla(var(--fw9-color-contrast-higher-hsl), 0.075);
    color: hsl(var(--fw9-color-contrast-higher-hsl));
  }
}

/* utility classes */
.fw9-max-width-lg {
  max-width: 80rem;
}

.fw9-container {
  width: calc(100% - 2*var(--fw9-space-md));
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 0;
}

.fw9-position-relative {
  position: relative;
}

.fw9-margin-left-2xs {
  margin-left: var(--fw9-space-2xs);
}

.fw9-flex-basis-0 {
  flex-basis: 0;
}

.fw9-flex-grow {
  flex-grow: 1;
}

@media(min-width: 64rem){
  .fw9-padding-2xs\@md {
    padding: var(--fw9-space-2xs);
  }

  .fw9-justify-between\@md {
    justify-content: space-between;
  }

  .fw9-justify-end\@md {
    justify-content: flex-end;
  }

  .fw9-justify-center\@md {
    justify-content: center;
  }

  .fw9-margin-left-auto\@md {
    margin-left: auto;
  }

  .fw9-margin-right-lg\@md {
    margin-right: var(--fw9-space-lg);
  }
}

/* -------------------------------- 

File#: _1_anim-menu-btn
Title: Animated Menu Button
Descr: A menu button w/ a morphing icon
Usage: codyhouse.co/license

-------------------------------- */

/* variables */
:root {
  /* colors */
  --ag6-color-primary-hsl: 250, 84%, 54%;
  --ag6-color-bg-hsl: 0, 0%, 100%;
  --ag6-color-contrast-high-hsl: 230, 7%, 23%;
  --ag6-color-contrast-higher-hsl: 230, 13%, 9%;
}

/* component */
:root {
  --anim-menu-btn-size: 48px;
  --anim-menu-btn-transition-duration: .2s;
  --anim-menu-btn-icon-size: 32px;
  --anim-menu-btn-icon-stroke: 2px;
}

.anim-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--anim-menu-btn-size);
  height: var(--anim-menu-btn-size);
  background-color: var(--black);
  border: none;
  color: var(--beige)
}

.anim-menu-btn__icon {
  position: relative;
  display: block;
  font-size: var(--anim-menu-btn-icon-size);
  width: 1em;
  height: var(--anim-menu-btn-icon-stroke);
  color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.anim-menu-btn__icon::before, .anim-menu-btn__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: inherit;
  border-radius: inherit;
}

.anim-menu-btn__icon--close {
  background-size: 100% 100%;
  will-change: transform, background-size;
  transition-property: background-size, -webkit-transform;
  transition-property: transform, background-size;
  transition-property: transform, background-size, -webkit-transform;
  transition-duration: var(--anim-menu-btn-transition-duration, 0.2s);
}
.anim-menu-btn:active .anim-menu-btn__icon--close {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.anim-menu-btn__icon--close::before, .anim-menu-btn__icon--close::after {
  will-change: inherit;
  transition: inherit;
}
.anim-menu-btn__icon--close::before {
  -webkit-transform: translateY(-0.25em) rotate(0);
          transform: translateY(-0.25em) rotate(0);
}
.anim-menu-btn__icon--close::after {
  -webkit-transform: translateY(0.25em) rotate(0);
          transform: translateY(0.25em) rotate(0);
}

.anim-menu-btn--state-b .anim-menu-btn__icon--close {
  background-size: 0% 100%;
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::before {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::after {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.anim-menu-btn__icon--arrow-left,
.anim-menu-btn__icon--arrow-right,
.anim-menu-btn__icon--arrow-up,
.anim-menu-btn__icon--arrow-down {
  border-radius: 50em;
  will-change: transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: var(--anim-menu-btn-transition-duration, 0.2s);
}
.anim-menu-btn:active .anim-menu-btn__icon--arrow-left,
.anim-menu-btn:active .anim-menu-btn__icon--arrow-right,
.anim-menu-btn:active .anim-menu-btn__icon--arrow-up,
.anim-menu-btn:active .anim-menu-btn__icon--arrow-down {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.anim-menu-btn__icon--arrow-left::before, .anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn__icon--arrow-down::before,
.anim-menu-btn__icon--arrow-down::after {
  -webkit-transform-origin: calc(var(--anim-menu-btn-icon-stroke)/2) 50%;
          transform-origin: calc(var(--anim-menu-btn-icon-stroke)/2) 50%;
  will-change: transform, width;
  transition-property: width, -webkit-transform;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform;
  transition-duration: var(--anim-menu-btn-transition-duration, 0.2s);
}
.anim-menu-btn__icon--arrow-left::before,
.anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn__icon--arrow-down::before {
  -webkit-transform: translateY(-0.25em) rotate(0);
          transform: translateY(-0.25em) rotate(0);
}
.anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn__icon--arrow-down::after {
  -webkit-transform: translateY(0.25em) rotate(0);
          transform: translateY(0.25em) rotate(0);
}

.anim-menu-btn__icon--arrow-right {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.anim-menu-btn:active .anim-menu-btn__icon--arrow-right {
  -webkit-transform: rotate(180deg) scale(0.9);
          transform: rotate(180deg) scale(0.9);
}

.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::before, .anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::after {
  width: 50%;
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::before {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::after {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.anim-menu-btn--state-b:active .anim-menu-btn__icon--arrow-up {
  -webkit-transform: rotate(90deg) scale(0.9);
          transform: rotate(90deg) scale(0.9);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.anim-menu-btn--state-b:active .anim-menu-btn__icon--arrow-down {
  -webkit-transform: rotate(-90deg) scale(0.9);
          transform: rotate(-90deg) scale(0.9);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* utility classes */
.ag6-color-contrast-high {
  --ag6-color-o: 1;
  color: hsla(var(--ag6-color-contrast-high-hsl), var(--ag6-color-o, 1));
}

ul {
  list-style-type: none;
}

/* Hover cursor */
body .cursor {
  pointer-events: none;
}
body .cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
}
body .cursor__ball circle {
  fill: #f7f8fa;
}

.udem-logo {
  height: 2rem !important;
  margin-top: 3rem !important;
}

footer {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  background-color: var(--black);
  color: var(--beige);
  flex-wrap: wrap;
}

footer a {
  text-decoration: none;
  color: var(--beige);
  font-weight: bold;
}

#visa-information {
  margin: 4rem auto;
  max-width: 800px;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  border: solid 2px var(--black);
  padding: 2rem;
  gap: 1rem;
}

#visa-information h4 {
  font-size: 2rem;
}

#visa-information a {
  color: var(--purple);
  text-decoration: none;
  font-weight: bold;
  transition: 300ms;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

#visa-information a:hover {
  color: var(--black);
  transition: 300ms;
}

#visa-information h4, #visa-information p {
  margin: 0;
}

#cultural-programmes h2 {
  font-size: 3rem;
  padding-left: 2rem;
  margin: 0;
  margin-top: 2rem;
}

#keynote-speakers h2 {
  font-size: 3rem;
  margin: 0;
  margin-top: 2rem;
}

#cultural-programmes, #keynote-speakers {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-flow: column;
  gap: 2rem;
  border-top: solid 2px var(--black);
}

#keynote-speakers {
  padding: 0 2rem;
}

.c-program {
  width: calc(100% - 4rem);
  padding: 2rem;
  display: flex;
  flex-flow: column;
  gap: 1rem;
  border-top: solid 2px var(--black);
}

.c-program h5 {
  font-size: 1.25rem;
  margin: 0;
}

.c-program h4 {
font-size: 1.5rem;
  margin: 0;
}
.program-img {
  width: 100%;
  height: auto;
}

.program-card {
  background-color: var(--black);
  color: var(--beige);
  border-radius: 10px;
  padding: 2rem 1rem;
  width: calc(100% - 2rem);
  display: flex;
  flex-flow: column;
  gap: 0.75rem;
}

.program-item {
display: flex;
flex-flow: row;
gap: 0.5rem;
  align-items: center;
}

.program-item a {
    background: #fff;
    color: #000;
    padding: 5px;
    border-radius: 3px;
    text-decoration: none;
}
.c-program p {
margin: 0;
}

.program-item img {
  height: 1.5rem;
  width: auto;
}

/* Keynote speakers */

.speaker {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.speaker img {
  width: 150px;
  height: auto;
}

.speaker-info {
display: flex;
flex-flow: column;
  gap: 1rem;
}

.speaker-info p {
font-weight: bold;
margin: 0;
}

@media(max-width: 540px) {
  .speaker {
  flex-flow: column;
  }

}

.venue-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem !important;
}

.venue-container h3 {
  font-size: 1.5rem;
  margin: 0;
}

.venue-container p {
  margin: 0;
}

.venue-container h4 {
margin-bottom: 0;
}

.venue-grid {
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.venue {
  width: calc(50% - 0.75rem);
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

@media (max-width: 575px) {
.venue {
  width: 100%;
}
  
  .venue-grid {
  flex-flow: column;
    gap: 1rem;
}
  
}