/** Shopify CDN: Minification failed

Line 128:15 Expected identifier but found whitespace
Line 128:17 Unexpected "{"
Line 128:26 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:image-blocks (INDEX:50, SCOPED:FALSE) */
.image-box {
    display: flex;
    gap: 12px;
    flex-direction: row;
    cursor: pointer;
    margin-bottom: 0;
    margin: auto;
}
    
.image-box .block {
    position: relative;
    height: 480px;
    flex: 1;
    background-position: left;
    background-size: cover !important;
    transition: .9s;
    overflow: hidden;
}

.image-box .block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

/* Desktop: First block - rounded left corners */
.image-box .block:first-child img {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

/* Desktop: Last block - rounded right corners */
.image-box .block:last-child img {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.image-box .block:hover {
    flex: 1.4;
}

.image-box .block .text{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    padding: 0 20px 27px 44px;
}

.image-box .block .text h3{
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color:rgb(255, 255, 255);
    z-index: 1;
}

@media (max-width: 767px) {
    .image-box {
        max-width: 94%;
        display: flex;
        gap: 12px;
        flex-direction: column;
        cursor: pointer;
        margin-bottom: 0;
        margin: auto;
    }
    
    .image-box .block {
        height: auto;
        border-radius: 0 !important;
    }
    
    /* Mobile: Remove all image border-radius */
    .image-box .block img {
        border-radius: 0 !important;
    }
    
    /* Mobile: First block - rounded top corners ONLY (not if it's also last) */
    .image-box .block:first-child:not(:last-child) {
        border-top-left-radius: 18px !important;
        border-top-right-radius: 18px !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    /* Mobile: Last block - rounded bottom corners ONLY */
    .image-box .block:last-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 18px !important;
        border-bottom-right-radius: 18px !important;
    }
    
    /* Mobile: If only one block exists, round all corners */
    .image-box .block:first-child:last-child {
        border-radius: 18px !important;
    }
}
/* END_SECTION:image-blocks */

/* START_SECTION:teaching-circle (INDEX:97, SCOPED:FALSE) */
:root {
  --primary-color: #6a0dad;
  --text-color: {{ section.settings.heading_color }};
  --background-color: #f4f4f4;
}

.teaching-circle {
  padding: 50px 20px;
  background-color: var(--background-color);
}

.section-heading {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.instructors-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.instructor-card {
  background: white;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.instructor-card:hover {
  transform: translateY(-5px);
}

.instructor-image {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-info {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: none;
    text-align: center;
    width: max-content;
}

.instructor-name {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.2rem;
}

.instructor-role {
  color: #555;
  margin: 5px 0 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
  
  .instructor-card {
    width: 150px;
    height: 150px;
  }
  
  .instructor-info {
    bottom: -30px;
    padding: 8px 15px;
  }
}
@media (max-width: 767px) {
  .instructors-container {
      gap: 7rem;
}
  .instructor-info {
    bottom: -12px;
}
  .teaching-circle {
    padding: 10px 20px;
}
  }
/* END_SECTION:teaching-circle */

/* START_SECTION:video-section (INDEX:103, SCOPED:FALSE) */
.responsive-video-section {
  padding: 0px;
  text-align: center;
}

.responsive-video-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height:650px;
  overflow: hidden;
  border-radius: 0px;
}
video.mobile-video {
    display: none;
}
.video-container iframe,
.video-container video {
  position: absolute;
   object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0px;
}

  @media only screen and (max-width: 420px){
    video.desktop-video {
    display: none;
}
    video.mobile-video {
    display: inline-block;
}
  }
/* END_SECTION:video-section */