/** Shopify CDN: Minification failed

Line 921:53 Expected identifier but found "*"
Line 1071:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.revamped-col--media{
    position: relative;
}
.acc-background-svg{
    position: absolute;
left: -45px;
    top: -10vh;
    height: 68vh;
    object-fit: contain;
}

  .revamped-section {
    padding: 60px!important;
  }
  .revamped-main-heading {
    text-align: center;
    color: #12899B;
    text-transform: uppercase;
    font-family: "KG Red Hands", sans-serif;
    font-weight: 100 !important;
    font-size: clamp(2em, 5vw, 3em);
    margin-bottom: 40px;
  }
  .revamped-layout-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0px;
  }
  .revamped-col {
    width: 100%;
    flex-shrink: 0;
  }
  .revamped-media-wrapper {
    width: 100%;
    position: relative;
  }
  .revamped-media-wrapper img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    padding: 20px;
    border-radius: 20px;
    border: 0 solid #F1592E;
    background: #F1592E;
  }

  .revamped-content-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .revamped-content-heading {
    text-align: left;
    color: #000;
    text-transform: uppercase;
    font-family: "KG Red Hands", sans-serif;
    font-weight: 100 !important;
    margin: 0;
    color: #12899B;
  }
  .revamped-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
  }
  .revamped-desc p {
    margin: 0;
  }
  .revamped-button-wrapper {
    margin-top: 15px;
  }
  .revamped-btn {
    background: #12899b !important;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
  }
  .revamped-btn:hover {
    background: #32b44c !important;
  }
  .revamped-button-icon {
    width: 24px;
    height: 24px;
    margin-left: 8px;
  }

  @media (min-width: 901px) {
    .revamped-col {
      width: 50%;
    }
  }
  @media(max-width:1200px){
        .acc-background-svg{
    left: -29px;
    top: -57px;
    height: 400px;
}
  }
  @media (max-width: 900px) {
        .revamped-layout-container {
      flex-direction: column-reverse;
    }
      .revamped-section {
    padding: 60px 12px!important;
  }
    .revamped-media-wrapper img {
      max-width: 100%;
    }
    .revamped-main-heading {
      font-size: clamp(1.8em, 4.5vw, 2.5em);
    }
    .revamped-content-heading {
      font-size: clamp(1.3em, 3.5vw, 2em);
    }
  }
/* Container & layout */
  .info-tabs-main-heading{
    font-weight:400;
    font-family:KG RED HANDS;
    width:50%;
  }
  .info-tabs-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; 
}
.image-accordion {
  padding: 60px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  
  color: #333;
}

.accordion_container {
  display: flex;
  gap: 80px;
  justify-content: center;
  /* flex-wrap: wrap; */
}

.acc-col {
  width: 48%;
  box-sizing: border-box;
}

/* Image & video */
.image-accordion__image-wrapper {
  
  border-radius: 20px;
  overflow: hidden;
  /* max-height: 667px; */
}

.image-accordion__image-wrapper img,
.image-accordion .video-wrapper iframe {
  border: 20px solid #f15e2e;
  width: 100%;
  height: 710px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  aspect-ratio: 1 / 1;
}
.st-9-img{
  padding:0px 30px!important;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  border: 20px solid #f15e2e;
}

/* Tabs navigation */
.tabs-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-link {
  background: #fff;
  color: #007c91;
  border: 1px solid #f1592e;
  padding: 10px 25px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-link.is-active {
  background: #f1592e;
  color: #fff;
  border-color: #f1592e;
}

.tab-link:hover:not(.is-active) {
  background: #e0f7fa;
}

/* Tabs content panels */
.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

/* Accordion styles */
.image-accordion__accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-accordion__accordion-item {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  background: #fff;
  overflow: hidden;
}

.image-accordion__accordion-header {
  background: transparent;
  border: none;
  padding: 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  color: #000!important;
  transition: background-color 0.3s ease;
}

.image-accordion__accordion-header:hover {
  background-color: #f5e9d2;
}

.image-accordion__accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.image-accordion__accordion-header[aria-expanded="true"] .image-accordion__accordion-icon {
  transform: rotate(0deg)!important;
}

.image-accordion__accordion-content {
  max-height: 0;
  overflow: hidden;
  font-family:Montserrat;
  font-weight: 500;
  color: #555;
  transition: max-height 0.3s ease;
  margin-left: 20px;
}

  .image-accordion__accordion-content p{
    padding: 20px 20px 10px 0px!important;
  }
/* When accordion is open, JS sets max-height inline */

/* Headings & text */
.image-accordion__heading {
  color: #12899b;
  text-transform: uppercase;
  
  font-weight: 100 !important;
  margin-bottom: 15px;
}

.image-accordion__desc,
.image-accordion__desc2 {
  color: #444;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Button */
  .image-accordion__button-wrapper.d-flex{
    padding-top:40px!important;
    justify-content: center;
    padding-left:10px;
  }
.acc-button {
  background: #12899b !important;
  padding: 12px 25px;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.acc-button:hover {
  background: #32b44c !important;
}

.acc-button img {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .info-tabs-main-heading{
    width:100%;
    padding-bottom:10px;
  }
  .info-tabs-header-row {
    flex-direction: column;
    align-items: center;
    text-align:center;
  }
  .accordion_container {
    flex-direction: column !important;
    gap: 40px !important;
  }
  .acc-col {
    width: 100% !important;
  }
  .image-accordion__image-wrapper img,
  .image-accordion .video-wrapper iframe {
    max-height: 460px !important;
    height: auto !important;
  }
  .tabs-nav {
    justify-content: center;
  }
  .tab-link {
    padding: 8px 15px;
    font-size: 14px;
  }
}
.hero-container .trusted-by-card{
    display: flex;
    gap:10px;
    justify-content: center;
align-items: center;
border-radius: 8px;
background: #FFF;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
padding:10px;
position: absolute;
left: -100px;
bottom: 100px;
z-index: 9;
  }
  .hero-container .st-9-img{
    padding:0px!important;
  }
  .hero-container .st-9-img:before {
    background: none;
  }
  .hero-container{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .es-orange-svg, .es-arrow-svg, .es-pink-svg{
    position: absolute;
    
  }

  .es-pink-svg{
    bottom: 0px;
    left: -18px;
  }

  .es-arrow-svg{
    left: -181px;
    z-index: 9;
    top: -76px;
  }

  .es-orange-svg{
    right: 10px;
    z-index: 9;
    top: -50px;
  }
  

  .hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .hero-container .hero-col {
    width: 50% !important;
  }

  .sales-hero-heading {
    color: #292929;
    font-family: "KG Red Hands";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 4px;
  }

  @media(min-width:1024px){
    .hero-container h1{
        font-size: 56px!important;
    }
  }
  @media (max-width: 900px) {
      .hero-container{
    padding-top: 30px;
    padding-bottom: 30px;
  }
    .hero-container .trusted-by-card{
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
     .es-orange-svg, .es-arrow-svg, .es-pink-svg{
        display: none;
     }
    .hero-container .hero-col {
      width: 100% !important;
    }

    .hero-container {
      flex-direction: column-reverse !important;
      gap: 40px;
    }
  }
.escalation-svg-bg{
    position: absolute;
    width: 600px;
    height: 600px;
    top: -165px;
    z-index: -1;
  }
  .esimage-icon-list {
    padding: 60px 12px !important;
  }
  .esimage-icon-list__layout-container {
    display: flex;
    flex-direction: row;
    gap: 76px;
    align-items: center;
    justify-content: space-between;
  }
  .esimage-icon-list__layout-container--reverse-desktop {
     flex-direction: row-reverse!important;
  }
  .esimage-icon-list__col {
    display: flex;
    justify-content: end;
    width: 50%;
    flex-shrink: 0;
  }
  .esimage-icon-list__media-wrapper {
    width: 100%;
    border-radius: 10px;
  }
  .esimage-icon-list__media-wrapper img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: contain;
  }
  .esimage-icon-list__content-area {
    width:100%;
    max-width: 595px;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .esimage-icon-list__content-heading {
    text-align: left;
    color: #000;
    text-transform: uppercase;
    font-family: "KG Red Hands", sans-serif;
    font-weight: 100 !important;
    margin: 0;
  }
  .esimage-icon-list__items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .esimage-icon-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .esimage-icon-list__item-icon,
  .esimage-icon-list__item-default-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.2em;
  }
  .esimage-icon-list__item-icon {
     object-fit: contain;
  }
  .esimage-icon-list__item-default-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #12899B;
  }
  .esimage-icon-list__item-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500!important;
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
  }
  .esimage-icon-list__item-text p {
    margin: 0;
  }
  @media (max-width: 900px) {
      .esimage-icon-list {
    padding: 30px 12px !important;
  }
    .escalation-svg-bg{
        display: none;
    }
    .esimage-icon-list__layout-container {
      flex-direction: column-reverse !important;
      gap: 20px;
    }
    .esimage-icon-list__layout-container--reverse-mobile {
       flex-direction: column !important;
    }
    .esimage-icon-list__col {
      width: 100% !important;
    }
    .esimage-icon-list__media-wrapper img {
    max-width:100%;
    }
    .esimage-icon-list__content-heading {
        font-size: clamp(1.3em, 3.5vw, 2em);
    }
    .esimage-icon-list__item-text {
      font-size: 16px;
    }
  }
/* Replace matchHeight with CSS flexbox/grid */
/* Equal height for .only-course h3 */
.only-course {
  display: flex;
  flex-direction: column;
}
.only-course h3 {
  flex: 1;
  min-height: 0;
}

/* Equal height for .st-1-itm-con h4 (by row) */
.st-1-itm-con {
  display: flex;
  flex-direction: column;
}
.st-1-itm-con h4 {
  flex: 1;
  min-height: 0;
}

/* Equal height for .price-cart */
.price-cart {
  display: flex;
  align-items: stretch;
}
.price-cart > * {
  flex: 1;
}

/* Equal min-height for .st-1-itm-img img (by row) */
.st-1-itm-img {
  display: flex;
  flex-direction: column;
}
.st-1-itm-img img {
  flex: 1;
  min-height: 0;
  object-fit: cover;
}

/* Equal min-height for .st-1-itm-con .reviews (by row) */
.st-1-itm-con .reviews {
  flex: 1;
  min-height: 0;
}

/* Equal min-height for .st-3-itm-con .reviews (by row) */
.st-3-itm-con {
  display: flex;
  flex-direction: column;
}
.st-3-itm-con .reviews {
  flex: 1;
  min-height: 0;
}

/* Equal min-height for .st-3-itm h3 (by row) */
.st-3-itm {
  display: flex;
  flex-direction: column;
}
.st-3-itm h3 {
  flex: 1;
  min-height: 0;
}

/* For row-based equal heights, use grid or flexbox on parent */
.row .st-1-itm-con,
.row .st-3-itm-con,
.row .st-3-itm {
  height: 100%;
}
.image-accordion {
    padding: 60px 12px;
    max-width: 1200px;
    margin: 0 auto;

    color: #333;
  }

  .accordion_container {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .acc-col {
    width: 50%;
    box-sizing: border-box;
  }

  /* Video wrapper & embed */
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 0;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 20px solid #f15e2e;
    border-radius: 20px;
    transform: translate(0, 0);
  }

  .video-embed {
    border: 20px solid #F1592E;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    background-color: #000;
    position: relative;
    overflow: hidden;
  aspect-ratio:16/9;
  }

  .video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    cursor: pointer;
    background-color: #222;
    border-radius: 20px;
    overflow: hidden;
  }

  .video-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-play-icon-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1;
  }

  .video-play-icon-button .play-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.2s ease-out;
  }

  .video-play-icon-button:hover .play-icon {
    transform: scale(1.1);
  }

  /* Accordion */
  .image-accordion__accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .image-accordion__accordion-item {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    background: #fff;
    overflow: hidden;
  }

  .image-accordion__accordion-header {
    background-color: transparent;
    border: none;
    padding: 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "KG Red Hands", cursive, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000!important;
    transition: background-color 0.3s ease;
  }

  .image-accordion__accordion-header:hover {
    background-color: #f5e9d2;
  }

  .image-accordion__accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .image-accordion__accordion-header[aria-expanded="true"] .image-accordion__accordion-icon {
    transform: rotate(90deg);
  }

  .image-accordion__accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-weight: 500;
    color: #555;
    transition: max-height 0.3s ease;
    margin-left: 20px;
  }

  /* When accordion is open, JS sets max-height inline */

  /* Headings & text */
  .image-accordion__heading {
    color: #12899b;
    text-transform: uppercase;
    font-family: "KG Red Hands", cursive, sans-serif;
    font-weight: 100 !important;
    margin-bottom: 15px;
  }

  .image-accordion__desc,
  .image-accordion__desc2 {
    color: #444;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .image-accordion__desc2{
    margin-top:20px;
  }

  /* Button */
  .acc-button {
    background: #12899b !important;
    padding: 12px 25px;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .acc-button:hover {
    background: #32b44c !important;
  }

  .acc-button img {
    width: 24px;
    height: 24px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .accordion_container {
      flex-direction: column !important;
      gap: 40px !important;
    }

    .acc-col {
      width: 100% !important;
    }

    .video-wrapper iframe {
      max-height: 460px !important;
      height: auto !important;
    }
  }
.image-icon-list { /* Main section container */
    padding: 60px 12px !important;
  }

  .image-icon-list__section-main-heading {
    text-align: center;
    color: #12899B; /* Example color, adjust as needed */
    text-transform: uppercase;
    font-family: "KG Red Hands", sans-serif;
    font-weight: 100 !important;
    font-size: clamp(2em, 5vw, 3em);
    margin-bottom: 40px;
  }

  .image-icon-list__layout-container {
    display: flex;
    flex-direction: row;
    /* Dynamic gap: no gap if media column is hidden, otherwise a responsive gap */
    gap: 60px;
    align-items: center; /* Align items to the top of columns */
    justify-content: space-between;
  }

  .image-icon-list__col {
    width: 50%;
    flex-shrink: 0;
  }



  /* Media Styles */
  .image-icon-list__media-wrapper {
    width: 100%;
  }
  .image-icon-list__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border: 15px solid #f15e2e;
    border-radius: 25px;
    background-color: #111; /* Fallback bg for video */
  }
  .image-icon-list__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 364px;
    border: none;
  }
  .image-icon-list__media-wrapper img {
    display: block;
    width: 100%;
    max-width:505px;
    height: 100%; /* Control max image height */
    /* height: 364px; /* Control max image height */ */
    object-fit: cover;
  }

  /* Content Area Styles */
  .image-icon-list__content-area {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Spacing between elements in the content column */
  }
  .image-icon-list__content-heading {
    text-align: left;
    color: #000; /* Example color for content heading */
    text-transform: uppercase;
    font-family: "KG Red Hands", sans-serif;
    font-weight: 100 !important; /* Typically headings are bolder */
    margin: 0;
  }
  .image-icon-list__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
  }
  .image-icon-list__desc p { /* Remove default margins from richtext paragraphs */
    margin: 0;
  }

  /* Icon List Styles */
  .image-icon-list__items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between list items */
    margin-top: 10px; /* Space above the list */
    margin-bottom: 10px; /* Space below the list */
  }
  .image-icon-list__item {
    display: flex;
    align-items: flex-start; /* Align icon with the top of the text */
    gap: 12px; /* Space between icon and text */
  }
  .image-icon-list__item-icon,
  .image-icon-list__item-default-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 0.2em; /* Fine-tune vertical alignment with text */
  }
  .image-icon-list__item-icon {
     object-fit: contain;
  }
  .image-icon-list__item-default-icon svg {
    display: block; /* Remove extra space below SVG */
    width: 100%;
    height: 100%;
    fill: #12899B; /* Color for default icon */
  }
  .image-icon-list__item-text {
    font-family: "KG Red Hands", sans-serif; /* Or your desired font */
    font-weight: normal; /* Or 700 for bold */
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
  }
  .image-icon-list__item-text p { /* Remove default margins */
    margin: 0;
  }

  /* Button Styles */
  .image-icon-list__button-wrapper {
    margin-top: 15px; /* Space above button */
  }
  .image-icon-list__button {
    background: #12899b !important;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    /* Add other button styles from default-btn btn-2 here if needed */
  }
  .image-icon-list__button:hover {
    background: #32b44c !important;
  }
  .image-icon-list__button-icon {
    width: 24px;
    height: 24px;
    margin-left: 8px;
  }

  /* Responsive Adjustments */
  @media (max-width: 900px) {
    .image-icon-list__layout-container {
      flex-direction: column-reverse !important;
      gap: 40px;
    }
    .image-icon-list__col {
      width: 100% !important;
    }
    .image-icon-list__video-wrapper {
      border-width: 10px; /* Smaller border for video on mobile */
      /* Consider adjusting padding-bottom for different aspect ratio on mobile if needed */
    }
     .image-icon-list__media-wrapper img {
    max-width:100%;
    
  }
     .image-icon-list__section-main-heading {
        font-size: clamp(1.8em, 4.5vw, 2.5em);
    }
    .image-icon-list__content-heading {
        font-size: clamp(1.3em, 3.5vw, 2em);
    }
    .image-icon-list__item-text {
      font-size: 16px;
    }
  }
.hero-container .st-9-img:before{
    background:none;
  }
   .hero-container{
  display:flex;
    flex-direction:row;
  /* gap:80px; */
    align-items: center;
    justify-content:center;
  }

  .hero-container .hero-col{
    width:50%!important;
  }
 
  .sales-hero-heading{
    color: #292929;
font-family: "KG Red Hands";
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 4px;
  }


  @media (max-width: 900px) {
    .hero-container .hero-col{
    width:100%!important;
  }
    .hero-container{
    flex-direction:column-reverse!important;
    gap:40px;
  
  }
.hidden {
  display: none;
}