/** Shopify CDN: Minification failed

Line 67:0 Unexpected "<"
Line 205:0 Unexpected "<"
Line 358:0 Unexpected "<"
Line 439:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.background-video-section {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
}

.background-video-section video,
.background-video-section iframe {
  height: 100%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.background-video-section iframe {
  width: 100vw;
  height: 100%;
  pointer-events: none;
}
.before-after-grid {
  display: grid;
  gap: 3rem;
}
.before-after-section h2{
  color: #929292;
}
/* Center the pagination bullets */
.swiper-pagination {
  text-align: center;
  margin-top: 2rem;
  position: relative !important;
}

/* Style for all pagination bullets */
.swiper-pagination-bullet {
  width: 16px !important;
  height: 16px !important;
  border: 2px solid #000; /* Black border */
  background-color: #fff !important;  /* White background */
  border-radius: 50% !important;      /* Circular shape */
  opacity: 1 !important;
  margin: 0 6px !important;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

/* Style for the active pagination bullet */
.swiper-pagination-bullet-active {
  background-color: #000 !important;  /* Black dot */
}
<style>
.custom-about-section {
  padding: 100px 20px;
  position: relative;
  background: #fff;
}
.custom-about-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  margin: 0 auto;
  position: relative;
}

/* Center logo */
.custom-about__center-logo {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.custom-about__center-logo img {
  width: 150px;
  height: auto;
}

/* Shared block style */
.custom-about__item {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: rgba(0, 0, 0, .25) 0 0 10px;
}

/* Top right column override */
.custom-about__item--top-right {
  align-items: flex-start;
  padding: 50px 50px 50px 100px;
}

/* Bottom left and right override */
.custom-about__item--bottom {
  align-items: center;
  text-align: center;
  padding: 50px 50px 20px;
}
.custom-about__item--bottom .rich-text {
  max-width: 550px!important;
  text-align: center;
}

.custom-about__item--bottom h3{
  font-size: 40px!important;
  width: 35%;
  text-transform: uppercase;
}
.custom-about_icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
  align-self: stretch;
  flex-direction: row;
}
.custom-about_icons .icons-column{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 33.33%;
}
.custom-about_icons .icons-column .rich-text{
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading-family);
}
.custom-about__item h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}
.custom-about__item .rich-text {
  max-width: 500px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.custom-about__item img {
  height: auto;
  width: 100%;
  object-fit: cover;
}

/* ✅ Custom button style */
.custom-about__item .button {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #01071d;
  border: 2px solid #01071d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.custom-about__item .button:hover {
  background-color: #01071d;
  color: #fff;
}

/* Icons container */
.custom-about__icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.custom-about__icons img {
  width: 27%;
  height: auto;
}

@media screen and (min-width: 768px) and (max-width: 1024px){
  
}
  
@media screen and (max-width: 767px) {
  .custom-about-wrapper {
    grid-template-columns: 1fr;
  }
  .custom-about__center-logo {
    position: static;
    transform: none;
    margin-bottom: 30px;
  }
}
</style>
.custom-flex-section {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  text-align: center;
}
.custom-flex-section h2{
    font-size: 45px;
    margin-bottom: 30px;
    text-align: center;
    color: #000;
    line-height: 1.2;
}
.custom-flex-section .rte p{
    max-width: 85%;
    margin: 0 auto 2rem;
    font-size: 18px;
    text-align: center;
    color: #000;
    line-height: 1.4;
}
.custom-flex-section .buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 70px;
}
.custom-flex-section .buttons .custom-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    background: #000d37;
    color: #fff;
    text-decoration: none;
}
.custom-flex-section .row {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}
.custom-flex-section .row .column{
    display: flex;
    justify-content: center;
}
.custom-flex-section .row img {
  width: 90%;
  height: auto;
  display: block;
}
@media (max-width: 767px){
  .custom-flex-section{
    padding-left: 15px;
    padding-right: 15px;
  }
  .custom-flex-section h2{
    font-size: 40px;
  }
  .custom-flex-section .rte p{
    max-width: 100%;
  }
  .custom-flex-section .buttons{
    margin-top: 40px;
  }
  .custom-flex-section .buttons .custom-button{
    padding: 12px 15px;
  }
}
@media (max-width: 1024px) {
  .testimonial-masonry {
    column-count: 2!important;
  }
}

@media (max-width: 768px) {
  .testimonial-masonry {
    column-count: 1!important;
  }
}

.testimonial-section h2{
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    line-height: 1.2;
}

.testimonial-masonry{
    margin-top: 50px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-box {
  display: inline-block;
  width: 100%;
  margin: 0 0 2rem;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 20px;
  break-inside: avoid;
}

.testimonial-box p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  text-align: center;
}

.testimonial-divider {
  height: 2px;
  background: #e5e5e5;
  margin: 10px 0 15px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-footer img.testimonial-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.testimonial-footer .name-stars {
  display: flex;
  flex-direction: column;
}

.testimonial-footer .name-stars .stars {
  max-width: 100px;
}
@media (max-width: 767px){
  .testimonial-section{
    padding-left: 15px;
    padding-right: 15px;
  }
  .testimonial-section h2{
    font-size: 32px;
  }
  .testimonial-masonry{
    margin-top: 30px;
    width: 100%;
  }
}
<style>
  .training-info-section{
    background: #eee;
  }

  .training-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .training-block {
    display: flex;
    flex-direction: column;
  }

  .training-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch; /* Ensures both columns are equal height */
    background: #fff;
    height: 100%;
  }

  .training-content{
    padding: 50px 20px;
  }

  .training-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .training-content p, .training-content ul{
    font-size: 14px;
    line-height: 1.5;
    padding-top: 20px;
    list-style-position: outside!important;
  }

  .training-divider {
    width: 70%;
    height: 2px;
    background: #929292;
    margin: 0 auto 1rem;
  }

  .training-content .rte {
    margin-bottom: 1rem;
  }

  .training-content a {
    display: inline-block;
    background-color: #01071d;
    color: #fff;
    padding: 10px 40px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
  }

  .training-image {
    height: 100%;
  }

  .training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Reverse layout for second row (block 3 & 4) */
  .reverse .training-inner {
    direction: rtl;
  }
  .reverse .training-content {
    direction: ltr;
  }
</style>