/** Shopify CDN: Minification failed

Line 138:7 Expected "}" to go with "{"

**/
.schedule {
  position: relative;
  padding: 4rem 0;
}

.schedule .wrapper {
  position: relative;
  border-radius: 320px;
  padding: 2rem 12rem;
}

.schedule .heading-wrapper {
  text-align: center;
  padding-bottom: 4rem;
}

.schedule .title {
  max-width: 60rem;
  margin: auto;
}

.schedule .title h2 {
  font-weight: 700;
  color: #ffffff;
}

.schedule .info h4 {
  font-weight: 700;
  color: #ffffff;
}

.schedule h2 {
  font-size: 4rem;
}

.schedule .classname {
  font-size: 20px;
  font-weight: 600;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  
}

.schedule strong {
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text; /* Clip the background to the text */
  -webkit-text-fill-color: transparent; /* Make the text transparent */
  background-clip: text;
  text-fill-color: transparent; 
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0;
  padding-bottom: 4rem;
  margin-bottom: 8rem;
  color: #202020;
}

.schedule .row {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 0 4rem;
}

.item p {
  padding: 0 4rem;
}

.schedule .day {
  background-color: #EEE5FF;
  font-weight: 600;
}

.schedule .description {
  flex-grow: 1;
  text-align: center;
}

.schedule .item {
  background-color: #ffffff;
}

.schedule .item:nth-child(odd) {
  background-color: #F8F8F8;
}

.schedule-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: -1;
  border-radius: 320px;
}

@media screen and (max-width: 750px) {
    .schedule .wrapper {
      border-radius: 120px;
      padding: 2rem 4rem;
    }

    .schedule-background img {
      border-radius: 120px;
    }

   .item p {
      padding: 1rem 0;
    }
  
}

@media screen and (max-width: 990px) {
    .schedule .wrapper {
      border-radius: 120px;
      padding: 2rem 4rem;
    }

@media screen and (max-width: 480px) {
    .schedule .wrapper {
      border-radius: 120px;
      padding: 2rem 2rem;
    }  