* {
    font-family: proximanova !important;
  }
  
  body.body-redesign {
    background: #F5F7FA;
  }
  
  img, video {
    max-width: 100%;
  }
  
  .bg-img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
  }
    
  .bg-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  main h1 {
      margin: 0 0 20px;
      font-size: 50px;
      line-height: 54px;
      font-weight: 600;
      color: #140532;
      letter-spacing: -0.14px;
  }
  
  main h2 {
      font-size: 32px;
      line-height: 35px;
      font-weight: 600;
      color: #140532;
      margin: 0;
      letter-spacing: -0.4px;
  }
  
  main h3 {
      font-size: 28px;
      font-weight: 600;
      color: #140532;
      margin: 0 0 15px;
      line-height: 33px;
      letter-spacing: -0.47px;
  }

  main .Single_Column h3  {
    font-size: 28px;
  }

  main .card-wrapper h3 {
    margin-bottom: 15px;
  }
  
  main p {
      margin: 0;
      font-size: 18px;
      line-height: 24px;
      font-weight: 300;
      color:#140532;
  }
  
  main .btn-link {
    font-size: 15px;
    line-height: 23px;
    color: #140532;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 0;
    position: relative;
    transition: all 0.25s ease-in-out;
  }

  .btn-link::before {
    position: absolute;
    width: 100%;
    height: 3px;
    content: "";
    left: 0;
    bottom: -4px;
    background: #8C82FF;
    transition: all 0.25s ease-in-out;
  }

  .box-wrapper:hover .btn-link::before {
    width: 50%;
  }
  
  .page-template main.page {
    padding-top: 130px;
  }
  
  .head-section {
      text-align: center;
      padding-bottom: 30px;
  }
  
  .cta-last-section {
      padding-top: 60px;
  }
  
  .breadcumb-section {
      font-size: 15px;
      font-weight: 600;
      line-height: 120%;
      margin-bottom: 15px;
      text-transform: uppercase;
      color: rgba(85,40,255,1);
  }
  
  .breadcumb-section a,
  .breadcumb-section span:first-child {
      color: rgba(20,5,50,0.5);
      text-decoration: none;
  }
  
  .breadcumb-section span:not(:last-child)::after {
      content: ">";
      display: inline-block;
      padding: 0 5px;
      font-size: 15px;
      font-weight: 600;
      line-height: 120%;
      color: rgba(20,5,50,0.5);
  }

  .breadcumb-section span:last-child::after {
      content: none;
      display: none;
  }

  .breadcumb-section span.breadcrumb-dropdown-wrapper span::after {
      content: none !important;
      display: none !important;
  }

  .breadcumb-section span.breadcrumb-dropdown-arrow::after {
      content: none !important;
  }

  /* Breadcrumb Dropdown Styles */
  .breadcrumb-dropdown-wrapper {
      position: relative;
      display: inline-block;
  }

  .breadcrumb-dropdown-wrapper .breadcrumb-dropdown-current {
      color: #5528FF !important;
      text-decoration: underline;
      text-underline-offset: 3px;
  }

  .breadcrumb-dropdown {
      position: relative;
      display: inline-block;
  }

  .breadcrumb-dropdown-current {
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: rgba(85,40,255,1);
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 3px;
  }

  .breadcrumb-dropdown-arrow {
      display: inline-flex;
      align-items: center;
      /* margin-left: 5px; */
      transition: transform 0.3s ease;
  }

  .breadcrumb-dropdown-arrow img {
      width: 16px;
      height: 16px;
      display: block;
      transition: transform 0.3s ease;
      transform: rotate(180deg);
  }

  .breadcrumb-dropdown.active .breadcrumb-dropdown-arrow img {
      transform: rotate(0deg);
  }

  .breadcrumb-dropdown-list {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 6px;
      margin-top: 8px;
      padding: 0;
      min-width: 220px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.2s ease;
      z-index: 999;
      max-height: 400px;
      overflow-y: auto;
      text-align: left;
  }

  .breadcrumb-dropdown.active .breadcrumb-dropdown-list {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      margin-left: -16px;
  }

  .breadcrumb-dropdown-list li {
      margin: 7px 7px 0 7px;
      padding: 0;
      width: calc(100% - 14px);
      box-sizing: border-box;
  }

  .breadcrumb-dropdown-list li:last-child {
      margin-bottom: 7px;
  }

  .breadcrumb-dropdown-list li a {
      display: block;
      padding: 10px;
      color: #140532;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      text-transform: none;
      transition: background-color 0.15s ease, color 0.15s ease;
      line-height: 1.4;
      text-align: left;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%;
      box-sizing: border-box;
  }

  .breadcrumb-dropdown-list li a:hover {
      background-color: rgba(85,40,255,0.08);
      /* color: rgba(85,40,255,1); */
  }

  .breadcrumb-dropdown-list li.current a {
      background-color: rgba(85,40,255,0.08);
      /* color: rgba(85,40,255,1); */
      font-weight: 600;
      border-radius: 6px;
  }

  /* .title-box-wrapper.extraspace {
    padding-top: 55px;
  } */
  
  .card-wrapper {
      gap: 30px;
      display: flex;
      margin: 0 auto;
  }

  .card-wrapper.Single_Column {
    display: block;
}

/* .nocardwrapperspace  .card-wrapper{
  margin: 0 auto;
} */

/* .card-wrapper.Single_Column .box-wrapper {
    margin-bottom: 50px;
} */
  
  .box-wrapper {
    text-decoration: none;
  }
  
  .box-wrapper.col-2 {
      gap: 35px;
      width: 50%;
      flex-direction: column;
      padding: 28px 28px 42px;
  }
  .box-wrapper.col-2 .img-box {
      max-height: 310px;
  }
  
  .box-wrapper.col-3 {
      gap: 35px;
      flex: 1;
      flex-direction: column;
      padding: 28px 28px 42px;
  }
  .content-box {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
  }
  .content-box:not(:has(.btn-link)) {
    display: block;
    }
  .content-box .btn-link {
    /* align-self: flex-end; */
    width: fit-content;
  }
  .content-box a {
    text-decoration: none;
  }
  .box-wrapper.col-3 .content-box h3 {
      font-size: 25px;
      line-height: 29px;
  }
  
  .box-wrapper .content-box-wrap {
    align-self: flex-start;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    text-decoration: none;
  }

  .Single_Column .box-wrapper .content-box-wrap {
    align-self: center;
  }

  .Single_Column .box-wrapper {
    gap: 55px;
  }
  
  .tab-container #tabs-nav {
      padding: 0;
      display: flex;
      /* margin: 0 auto 20px; */
      list-style: none;
      overflow: hidden;
      gap: 15px;
      justify-content: center;
      margin: 0;
  }
  
  .tab-container #tabs-nav li {
      margin: 0;
      text-align: center;
  }

  .tab-container #tabs-nav a {
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    color: #140532;
    font-size: 15px;
    line-height: 120%;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    background-color: #FFFFFF;
    border: 1px solid #DBE2E7;
    font-family: proximanova !important;
    display: inline-block;
    text-decoration: none;
  }
  .tab-container #tabs-nav a:hover,
  .tab-container #tabs-nav a.active {
    background:-webkit-linear-gradient(45deg,rgba(103,63,255,1) 0%,rgba(140,130,255,1) 100%) !important;
    background:linear-gradient(45deg,rgba(103,63,255,1) 0%,rgba(140,130,255,1) 100%) !important;
    color: #FFFFFF !important;
  }

  .tab-container #tabs-nav .VTSAI a:hover, .tab-container #tabs-nav .VTSAI a.active {
    background: linear-gradient(90deg, #8B32FF 0%, #181818 100%) !important;
  }

  /* Hide VTSAI tab content when All Updates tab is active */
  /* .tab-container.separator-section .tab-content.VTSAI {
    display: none !important;
  } */

  /* Sticky Tab Wrapper Styles - Desktop */
  .tab-wrapper {
    position: relative;
    z-index: 11;
    border-radius: 50px;
    padding: 10px 10px;
    height: auto;
    background-color: #f6f7fa;
    /* margin: 0 0 30px; */
    transition: all 0.25s ease-in-out;
  }
  .tab-wrapper.sticky {
    position: fixed;
    top: calc(var(--header-height, 105px) + 0px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    z-index: 999;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f6f7fa;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .tab-wrapper.sticky.sticky-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .tab-wrapper.sticky .toggle-btn {
    border-radius: 0;
  }

  .tab-separator {
    display: none !important;
  }
  
  .VTSAI .tab-separator {
    display: none !important;
  }
  
  .separator-section .tab-separator,
  .separator-section .hero-video-div .tab-separator {
    display: none !important;
  }
  /* #tab2 .big-card.box-wrapper:last-child {
      margin: 22px 0 0;
  }
  #tab2 > div:nth-child(2)  {
      padding: 24px 0 0;
  } */
  .tab-content {
      display: block;
  }
  
  .tab-content.active {
      display: block;
  }
  /* Badge pill styling */
  .box-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 12px 17px 10px 17px;
    gap: 8px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 11px;
    line-height: 1;
    color: #6B2BBE;
    background: #F9F5FF; /* soft lavender fill */
    /* border: 2px solid transparent; */
    /* background-image: linear-gradient(#F8F3FF, #F8F3FF), linear-gradient(90deg, #8B32FF 0%, #181818 100%); */
    /* background-origin: border-box; */
    background-clip: padding-box, border-box;
    /* box-shadow: 0 1px 0 rgba(0,0,0,0.05); */
    white-space: nowrap;
    margin-bottom: 22px;
    width: fit-content;
  }

  .box-badge img {
    margin-top: -3px;
  }
  
  .box-wrapper {
      gap: 35px;
      display: flex;
      padding: 28px;
      border-radius: 10px;
      flex-wrap: wrap;
      background: #ffffff;
      border: 1px solid #DBE2E7;
      flex: 1 1 !important;
      align-content: flex-start;
  }
  .box-wrapper .img-box {
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      width: 100%;
  }

  .Single_Column .box-wrapper .img-box {
    width: 55%
}

  .box-wrapper .img-box picture {
      /* display: flex; */
      width: 100%;
  }
  .box-wrapper .img-box img {
      width: 100%;
      height: auto;
      object-fit: contain;
      overflow: hidden;
      border-radius: 10px;
  }
  .box-wrapper .type {
      font-size: 10px;
      color: #979797;
      margin: 0 0 25px;
      font-weight: 600;
      padding: 7px 16px;
      line-height: 120%;
      border-radius: 20px;
      letter-spacing: 1px;
      display: inline-block;
      background: #F5F7FA;
      text-transform: uppercase;
  }
  .box-wrapper .type:empty {
    display: none;
  }
  .big-card.box-wrapper {
      flex-wrap: initial;
      align-items: center;
  }
  .big-card.box-wrapper .content-box-wrap {
      align-self: center;
      width: 42%;
  }
  .big-card.box-wrapper .img-box {
      width: 58%;
  }
  .big-card.box-wrapper.after-section {
      margin-top: 100px;
      /* padding-top: 100px; */
  }
  .big-card.box-wrapper .img-box.video {
      position: relative;
      /* overflow: hidden; */
      display: inline-block;
  }
  .big-card.box-wrapper .img-box.video .wistia_responsive_padding {
    height: 402px !important;
    overflow: hidden;
    border-radius: 10px;
  }
  .big-card.box-wrapper .img-box.video .wistia_embed,
  .big-card.box-wrapper .img-box.video .wistia_embed > div {
    border-radius: 10px;
    overflow: hidden;
  }
  .big-card.box-wrapper .img-box.video .wistia_embed > div {
    height: 100% !important;
  }
  .big-card.box-wrapper .content-box h2 {
      margin-bottom: 20px;
      width: 100%;
  }
  .title-box-wrapper {
    padding-top: 100px;
}
  .title-box-wrapper h2 {
      text-align: center;
      padding-top: 0px;
  }


  /* Featured Section */

.featured-section.section {
    padding: 80px 0 55px 0;
    position: relative;
    z-index: 1000;
}

  .featured-section h2 {
    font-size: 32px;
    line-height: 35px;
    font-weight: 600;
    color: #140532;
    margin: 0;
    letter-spacing: -.4px;
    text-align: center;
  }

  

  .featured-wrapper {
    border: 1px solid #dbe2e7;
    border-radius: 16px;
    background: white;
    margin-top: 45px;
    position: relative;
    max-height: 750px;
    overflow: scroll;
  }

  .featured-wrapper_inner {
    padding: 40px 82px;
    
    
    /* position: relative; */
  }

  .featured-wrapper::after {
    content: '';
    display: block;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    height: 75px;
    background: linear-gradient(to bottom, rgb(255 255 255 / 46%) 0%, rgb(255 255 255 / 99%) 100%);
    pointer-events: none;
    z-index: 10;
  }

  .featured-content-box-wrap {
    padding: 40px 0;
    border-bottom: 1px solid #dbe2e7;
  }


  .featured-box-wrapper:last-child .featured-content-box-wrap {
    border-bottom: 0;
  }

  .featured-content-box-wrap h3 {
    font-size: 20px;
    line-height: 1.1em;
  }

  .featured-content-box-wrap .featured-category {
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 24px;
    font-weight: 300;
    color: #140532;
    font-weight: 600;
  }

  .featured-category-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    margin-left: -22px
  }
  
  .featured-category-wrap h3 {
    margin: 0 0 10px;
  }
  
  /* CTA section */
  .cta-last-section {
      text-align: center;
      z-index: 1;
      margin-bottom: -160px;
  }
  .cta-last-section-inner {
      position: relative;
      padding: 80px;
      overflow: hidden;
      max-width: 1035px;
      border-radius: 10px;
      margin: 0 auto;
      background:-webkit-linear-gradient(45deg,rgba(103,87,202,1) 0%,rgba(131,134,212,1) 100%);
      background:-o-linear-gradient(45deg,rgba(103,87,202,1) 0%,rgba(131,134,212,1) 100%);
      background:linear-gradient(45deg,rgba(103,87,202,1) 0%,rgba(131,134,212,1) 100%);
  }
  .cta-last-section-inner h2, 
  .cta-last-section-inner p, 
  .cta-last-section-inner .intro__control {
      position: relative;
  }
  .cta-last-section h2 {
      margin: 0 0 20px;
      color: #ffffff;
  }
  .cta-last-section p {
      color: #ffffff;
      margin: 0;
  } 
  .cta-last-section .intro__control {
      margin-top: 25px;
      display: flex;
      gap: 15px;
      justify-content: center;
  }
  main .cta-last-section .cta-last-section-inner .btn {
      background: white;
      color: #140532;
      margin: 0;
      min-width: 146px;
  }
  
  .card-wrapper.Triple_Column h3 {
    font-size: 25px;

  }


  
  @media (max-width:991px) {
      .cta-last-section .intro__control .btn {
          font-size: 13px;
          padding: 12px 15px;
      }
      .cta-last-section p br, main h3 br{
          display: none;
      }
      .big-card.box-wrapper .content-box h2 br {
        display: none;
      }
  }
  @media (max-width:767px) {
      .cta-last-section .intro__control {
          margin-top: 20px;
      }

      /* .box-badge { 
        position: relative;
        width: fit-content;
        margin-bottom: 20px;
      } */
  }
  @media (max-width:599px) {
      .cta-last-section .intro__control .btn {
          margin: 0;
      }
  }
  
  
  .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .resources-main-section {
      padding-top: 300px;
  }
  
  .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .header .header-logo {
      background: transparent url(../images/vts-dark-logo.svg) center center no-repeat;
      background-size: contain;
  }
  .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .header.header_sticky .header-logo {
      background-image: url(../images/vts-blue-logo.svg);
  }

  .header_nav_vts_ai a path {
    fill: #7753ff !important;
  }
  .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .header .header-logo > * {
      display: none !important;
      opacity: 0 !important;
  }
  .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .header .header-navigation__link {
      color: #140532 !important;
  }
  .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .header .header-navigation__item--btn .header-navigation__link {
      background:-webkit-linear-gradient(45deg,rgba(103,63,255,1) 0%,rgba(140,130,255,1) 100%) !important;
      background:linear-gradient(45deg,rgba(103,63,255,1) 0%,rgba(140,130,255,1) 100%) !important;
      color: #ffffff !important;
  }
  .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .header .header-navigation__link:after {
      background-image: url(../images/icons/menu-arrow-indigo.svg);
  }


.title-box-header.has-content {
    padding-bottom: 50px;
}

  .resources-inner-section .resources-card .resources-content {width: 100%;}
  @media (max-width:1199px) {
      .cta-last-section {
          padding-top: 40px;
      }
      .cta-last-section-inner {
          max-width: 800px;
      }
      .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .resources-main-section {
          padding-top: 250px;
      }
      main h1 {
          font-size: 40px;
          line-height: 46px;
      }
      main h2 {
          font-size: 32px;
          line-height: 38px;
      }
      main h3 {
          font-size: 24px;
          line-height: 30px;
      }
      main p {
          font-size: 16px;
          line-height: 23px;
      }
      /* .title-box-wrapper {
          padding-top: 80px;
      } */

      /* .title-box-wrapper.extraspace {
        padding-top: 45px;
      } */

      /* .tab-container #tabs-nav {
        margin-bottom: 50px;
      } */
      .tab-container #tabs-nav a {
          font-size: 14px;
          padding: 12px 30px;
      }
      .box-wrapper {
          padding: 24px;
      }
      .big-card.box-wrapper .img-box.video .wistia_responsive_padding {
        height: 330px !important;
      }
      main h3, .box-wrapper.col-3 .content-box h3 {
        font-size: 22px;
        line-height: 26px;
      }
  }
  @media (max-width:991px) {
      .breadcumb-section {
          font-size: 14px;
      }
      .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .header .header__mobile .header-button__line {
          background-color: #140532;
      }
      .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .header.header_sticky .header__mobile .header-button__line {
          background-color: #5528ff;
      }
      .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .header__mobile .nav-demo-request {
          background:-webkit-linear-gradient(45deg,rgba(103,63,255,1) 0%,rgba(140,130,255,1) 100%) !important;
          background:linear-gradient(45deg,rgba(103,63,255,1) 0%,rgba(140,130,255,1) 100%) !important;
          color: #ffffff !important;
      }
      .vts-new-update.body-redesign .container {
          padding-left: 15px;
          padding-right: 15px;
      }
      .page-template-template-vts-spring-release-2025 main.page {
          padding-top: 120px !important;
      }
      main h1 {
          font-size: 34px;
          line-height: 35px;
          letter-spacing: 0;
      }
      main h2 {
          font-size: 23px;
          line-height: 25px;
          margin: 0 0 35px;
      }
      main h3, .box-wrapper.col-3 .content-box h3 {
          font-size: 20px;
          line-height: 1.2em;
      }
      main p br {
          display: none;
      }

      
      .tab-container #tabs-nav a {
          font-size: 15px;
          padding: 13px 30px;
      }
      .big-card.box-wrapper {
          flex-wrap: wrap;
          padding-bottom: 35px;
      }
      .big-card.box-wrapper .img-box,
      .big-card.box-wrapper .content-box-wrap {
          width: 100%;
      }
      
      .box-wrapper {
          gap: 25px;
      }
      .card-wrapper {
          gap: 14px;
      }
      .box-wrapper.col-2,
      .box-wrapper.col-3 {
          gap: 25px;
          padding: 20px 20px 30px;
      }
      .box-wrapper {
          padding: 20px;
          border-radius: 12px;
      }
      .box-wrapper .img-box img, .big-card.box-wrapper .img-box.video .wistia_responsive_padding {
        border-radius: 12px;
      }
      #tab2 .big-card.box-wrapper:last-child {
          margin: 18px 0 0;
      }
      .title-box-wrapper {
          padding-top: 80px;
      }
      .big-card.box-wrapper .img-box.video .wistia_responsive_padding {
        height: 413px !important;
      }
      .box-wrapper .type {
        margin-bottom: 18px;
      }
      .cta-last-section-inner {
        max-width: 630px;
        padding: 60px;
     }
  }
  @media (max-width:767px) {
      .page-template-template-vts-spring-release-2025 main.page {
          padding-top: 105px !important;
      }

      .vts-new-update.body-redesign .container {
        padding-left: 20px;
        padding-right: 20px;
      }

      .breadcumb-section {
          font-size: 13px;
      }
      main h1 {
          font-size: 28px;
          line-height: 29px;
      }
      main h2 {
          font-size: 20px;
          line-height: 24px;
          margin: 0 0 25px;
      }
      main h3, .box-wrapper.col-3 .content-box h3 {
        font-size: 20px;
        line-height: 1.2em;
      }
      .box-wrapper {
          padding: 20px;
          border-radius: 12px;
      }
      .box-wrapper .img-box {
          border-radius: 12px;
      }
      .box-wrapper .type {
          margin: 0 0 15px;
      }
      .big-card.box-wrapper {
          padding-bottom: 30px;
      }
      .box-wrapper.col-3, .box-wrapper.col-2 {
          width: calc(50% - 7px);
      }

      .card-wrapper {
        margin: 35px auto;
      }
      /* .title-box-wrapper.extraspace {
        padding-top: 35px;
      } */
      .cta-last-section-inner {
          padding: 40px;
      }
      .cta-last-section .intro__control {
          flex-wrap: wrap;
      }
      .cta-last-section {
          padding-top: 0px;
      }
      .page-template-template-vts-spring-release-2025.vts-new-update.body-redesign .resources-main-section {
          padding-top: 220px;
      }
      .title-box-wrapper {
          padding-top: 60px;
      }
      main .cta-last-section .cta-last-section-inner .btn {
          min-width: inherit;
      }
      .title-box-wrapper h2 br {
        display: none;
      }
      .big-card.box-wrapper .img-box.video .wistia_responsive_padding {
        height: 100% !important;
        min-height: 182px !important;
      }
      .tab-container #tabs-nav {
        margin-bottom: 0px;
        flex-direction: inherit;
      }

      .featured-section h2 {
        font-size: 24px;
        line-height: 28px;
      }

      .featured-section.section {
        padding: 50px 0 35px 0;
    }

    .featured-wrapper_inner {
        padding: 0 40px 0px 40px;
    }

  }
  @media (max-width:599px) {

    .page-template-template-vts-spring-release-2025 main.page {
        padding-top: 90px !important;
    }

      .box-wrapper.col-2, .box-wrapper.col-3 {
          width: 100%;
      }
      .box-wrapper.col-3, .box-wrapper.col-2 {
          width: 100%;
          flex: inherit;
      }
      .card-wrapper {
        display: flex;
        margin: 0 auto;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 30px;
      }

      .Single_Column .box-wrapper {
        flex-direction: column;
        gap: 30px;
      }

      .Single_Column .box-wrapper .img-box {
        width: 100%;
      }

      main .Single_Column h3 {
          font-size: 20px;
          line-height: 1.2em;
      }

      .box-wrapper.col-2, .box-wrapper.col-3 {
          padding: 20px 20px 30px;
      }
      .title-box-wrapper {
          padding-top: 40px;
      }

      .title-box-header.has-content{
        padding-bottom: 20px;
      }

      /* .title-box-wrapper.extraspace {
        padding-top: 30px;
      } */

      main .cta-last-section .cta-last-section-inner .btn {
          font-size: 13px;
          padding: 11px 20px;
      }
      .cta-last-section-inner {
          padding: 40px 25px;
      }

      /* .featured-wrapper {
        padding: 0px 50px
      } */
  }
  @media (max-width:479px) {
      .tab-container #tabs-nav {
          gap: 10px;
      }
      .tab-container #tabs-nav a {
          font-size: 13px;
          padding: 12px 25px;
          border-radius: 50px !important;
          background-color: #ffffff;
      }
      .tab-container #tabs-nav li {
          width: auto;
      }
  }
  @media (max-width:370px) {
    .big-card.box-wrapper .img-box.video .wistia_responsive_padding {
        min-height: 148px !important;
    }
  }
  
  .img-box.video .w-bpb-wrapper.w-css-reset.w-css-reset-tree {
      margin: 0 !important;
      transform: translate(-50%, -50%);
      top: 55% !important;
      left: 50% !important;
  }
  .img-box.video .play-button::before {
    content: "";
    position: absolute;
    left: 55%;
    top: 50%;
    z-index: 1;
    cursor: pointer;
    transform: translate(-50%, -50%);
    width: 45px !important;
    height: 45px !important;
    background: transparent url(../images/ic-play-blue-triangle.svg) center center no-repeat !important;
    background-size: contain !important;
  }
  .img-box.video .play-button {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 98px;
    height: 98px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(4.5px);
    -moz-backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    z-index: 1;
  }
  .img-box.video .w-big-play-button > * {
      display: none !important;
  }
  
  .resources-inner-section .resources-card h6 {
      margin-bottom: 5px;
  }
  
  .custom-wistia-play-button{
      position: absolute;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  .custom-wistia-play-button img{width: 100%;height: 100%;}
  
  @media (max-width:767px) {
      .img-box.video .play-button {
          width: 63px !important;
          height: 63px !important;
      }
      .img-box.video .play-button::before{
        width: 30px !important;
        height: 30px !important;
      }
  }
  
 .tab-separator {
    display: block;
    opacity: 0;
    text-align: center;
    padding: 0;
    position: relative;
 } 
 .hero-video-div {
    display: none;
 }
 .separator-section .tab-separator, .separator-section .hero-video-div .tab-separator {
    display: block;
    opacity: 1;
    text-align: center;
    padding: 50px 0;
    position: relative;
 }
 .tab-separator .btn-sep {
    font-size: 15px;
    color: #6253da;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid #dbe2e7;
    font-family: proximanova !important;
    display: inline-block;
    position: relative;
    line-height: 110%;
 }
 .tab-separator .btn-sep::before, .tab-separator .btn-sep::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25px;
    height: 100%;
    left: -26px;
    transform: translateY(-50%);
    background: #f5f7fa;
 }
 .tab-separator .btn-sep::after {
    left: inherit;
    right: -26px;
 }

 #tabs-content .subtext-step {
    font-size: 32px;
    line-height: 1.3em;
    text-align: center !important;
    font-weight: 600;
    margin-bottom: 25px;
 }


 .tab-separator::before, .tab-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50%;
    height: 1px;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
    background: #DBE2E7;
 }
 .tab-separator::after {
    left: inherit;
    right: 0;
 }
 /* .separator-section .tab-content .title-box-wrapper:nth-child(2), .tab-content .title-box-wrapper:nth-child(2) {
    padding-top: 0;
 } */
 .video-wrap.wistia-video-div {
    display: flex;
    max-width: 1034px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #DBE2E7;
    padding: 25px;
    cursor: pointer;
    background: white;
}
.video-wrap.wistia-video-div img, .video-wrap.wistia-video-div video {
    border-radius: 10px;
    overflow: hidden;
}
#wistia-video-modal {
    display: none;
    position: fixed;
    z-index: 9999999;
    top: 50%;
    width: 1200px;
    height: auto;
    left: 50%;
    transform: translate(-50%, -50%);
}
#wistia-video-modal .video-wrap {
    display: block;
    margin: 0;
    position: relative;
    max-width: 1200px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .2);
    padding: 0;
}
#wistia-video-modal .video-wrap .w-video-wrapper,#wistia-video-modal .video-wrap video, #wistia-video-modal .video-wrap img{
    border-radius: 10px !important;
}
#wistia-video-modal  button.white-popup-close {
    z-index: 11;
    font-size: 0;
    cursor: pointer;
    background-color: #fff;
    border: none;
}
#wistia-video-modal .wistia_responsive_wrapper {
    position: static !important;
}

#wistia-video-modal .wistia_responsive_padding {
    padding: 0 !important;
}
#wistia-video-modal button.white-popup-close:before {
    content: "";
    font-size: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    --b: 2px;
    --c: #0000 90deg, #000000 0;
    width: 12px;
    aspect-ratio: 1;
    background: conic-gradient(from 90deg at var(--b) var(--b), var(--c)) calc(100% + var(--b) / 2) calc(100% + var(--b) / 2) / calc(50% + var(--b)) calc(50% + var(--b));
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    border: none;
}
#wistia-video-modal [data-handle="bigPlayButton"] {
    display: none !important;
}
body.modal-open {
    position: relative;
}
body.modal-open:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 22;
}
body.modal-open {
    overflow: hidden;
}

.box-wrapper .img-box {
    overflow: inherit;
    position: relative;
}
.title-box-wrapper .wistia_embed.video-play-btn {
    position: absolute !important;
    z-index: 1;
    left: -10px;
    bottom: -25px;
}
.big-card.box-wrapper .img-box.video .wistia_embed {
    overflow: visible;
}
.big-card.box-wrapper .img-box.video .wistia_embed a:after {
    display: none;
}
.big-card.box-wrapper .img-box.video .wistia_embed .wistia_click_to_play {
    position: absolute !important;
    left: -10px;
    bottom: -1px;
    z-index: 1;
    width: 122px !important;
    height: 122px !important;
    display: inline-block;
    cursor: pointer;
    overflow: visible;
}
.big-card.box-wrapper .img-box.video .wistia_embed .wistia_click_to_play img, .title-box-wrapper .wistia_embed.video-play-btn a img, .video-play-btn img {
    object-fit: contain;
    opacity: 1;
}
.title-box-wrapper .wistia_embed.video-play-btn a img {
    filter: drop-shadow(0 5px 20px rgba(0,0,0,0.1));
    -webkit-filter: drop-shadow(0 5px 20px rgba(0,0,0,0.1));
}
.title-box-wrapper .wistia_embed.video-play-btn a {
    width: 100px !important;
    height: 100px !important;
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.big-card.box-wrapper .img-box.video .wistia_embed .wistia_click_to_play a {
    position: relative;
    display: inline-block;
}
.big-card.box-wrapper .wistia_responsive_wrapper {display: contents;}
.title-box-wrapper .wistia_embed.video-play-btn a::before,
.big-card.box-wrapper .img-box.video .wistia_embed .wistia_click_to_play a::before {
    content: "";
    position: absolute;
    left: 95%;
    top: 83%;
    z-index: 11;
    cursor: pointer;
    width: 26px !important;
    height: 26px !important;
    background: transparent url(../images/ic-play-blue-triangle.svg) center center no-repeat !important;
    transform: translate(-50%, -50%);
    background-size: contain !important;
}
.title-box-wrapper .wistia_embed.video-play-btn a:after, .big-card.box-wrapper .img-box.video .wistia_embed .wistia_click_to_play a:after {
    content: "";
    position: absolute;
    top: 82%;
    left: 92%;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(4.5px);
    -moz-backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    visibility: visible;
    opacity: 1;
    display: inline-block;
}
.wistia_embed [id$=thumbnail]:before, 
div[id^="wistia_"] .big_play_button_graphic,
div[id^="wistia_"] .big_play_button_background {
    display: none;
}
@media screen and ( max-width : 1199px ) {
    #wistia-video-modal {
        width: 875px;
    }
    .tab-separator {
        padding: 40px 0;
    }
    .big-card.box-wrapper.after-section {
        margin-top: 80px;
    }
    .content-box h3 {
        width: 100%;
    }
    .title-box-wrapper .wistia_embed.video-play-btn {
        bottom: -26px;
    }
    .title-box-wrapper .wistia_embed.video-play-btn a, .img-box.video .video-play-btn, .big-card.box-wrapper .img-box.video .wistia_embed .wistia_click_to_play {
        width: 80px !important;
        height: 80px !important;
    }
    .title-box-wrapper .wistia_embed.video-play-btn a::after, .big-card.box-wrapper .img-box.video .wistia_embed .wistia_click_to_play a:after {
        width: 40px;
        height: 40px;
        top: 75%;
    }
    .title-box-wrapper .wistia_embed.video-play-btn a:before, .big-card.box-wrapper .img-box.video .wistia_embed .wistia_click_to_play a:before {
        width: 24px !important;
        height: 24px !important;
        top: 76%;
    }
}
@media(max-width:991px){
    #wistia-video-modal {
        width: 90%;
    }
    .tab-container #tabs-nav {
        gap: 10px;
    }
    .tab-container #tabs-nav a {
        white-space: nowrap;
    }
    .tab-container #tabs-nav {
        flex-wrap: wrap;
    }
    .tab-separator .btn-sep {
        font-size: 16px;
    }
    .tab-separator .btn-sep::before, .tab-separator .btn-sep::after {
        width: 15px;
    }
    .tab-separator .btn-sep::after {
        right: -16px;
    }
    .tab-separator .btn-sep::before {
        left: -16px;
    }
    .big-card.box-wrapper .img-box.video .wistia_embed .wistia_click_to_play {
        bottom: -3px;
    }
} 
@media(max-width:767px){
    .hero-section .hero-section-wrap .hero-video-div {
        padding: 0;
    }
    .hero-video-div .video-wrap.wistia-video-div {
        margin-right: 0;
    }
    .hero-video-div .video-wrap{
        padding: 20px;
        border-radius: 12px;
    }
    .tab-separator {
        padding: 30px 0;
        margin-top: 20px;
    }
    .big-card.box-wrapper.after-section {
        margin-top: 40px;
    }
    .tab-separator .btn-sep {
        font-size: 14px;
        padding: 12px 20px;
    }
    main .btn-link {
        line-height: 18px;
    }
}


#tabs-nav {
    display: flex;
    gap: 10px;
}

.toggle-btn {
    display: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    #tabs-nav {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap !important;
        gap: 10px;
        position: relative;
        opacity: 1;
        visibility: visible;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        width: max-content;
        min-width: 100%;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
        justify-content: flex-start !important;
    }
    #tabs-nav::-webkit-scrollbar {
        height: 4px;
    }
    #tabs-nav::-webkit-scrollbar-track {
        background: transparent;
    }
    #tabs-nav::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }
    #tabs-nav li {
        flex-shrink: 0;
    }
    #tabs-nav a {
        white-space: nowrap;
    }
    .expanded#tab-container #tabs-nav {
        display: flex !important;
    }
    .toggle-btn {
        display: none;
    }
    .tab-wrapper {
        position: relative;
        z-index: 11;
        border-radius: 50px;
        padding: 20px 20px;
        height: auto;
        margin: 0 0 30px;
        background-color: #f6f7fa;
        transition: all 0.25s ease-in-out;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .tab-wrapper.sticky {
        position: fixed;
        top: calc(var(--header-height, 105px) + 0px);
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        background-color: #f6f7fa;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .tab-wrapper.sticky.sticky-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-100%);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .tab-wrapper.sticky #tabs-nav {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        width: max-content;
        min-width: 100%;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    }
    .tab-wrapper.sticky #tabs-nav::-webkit-scrollbar {
        height: 4px;
    }
    .tab-wrapper.sticky #tabs-nav::-webkit-scrollbar-track {
        background: transparent;
    }
    .tab-wrapper.sticky #tabs-nav::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }
    .tab-wrapper.sticky #tabs-nav li {
        flex-shrink: 0;
    }
    .tab-wrapper.sticky #tabs-nav a {
        white-space: nowrap;
    }
    .tab-wrapper.sticky .toggle-btn {
        border-radius: 0;
    }
    .expanded#tab-container .tab-wrapper.sticky {
        border-radius: 0;
    }
    .expanded#tab-container .tab-wrapper {
        border-radius: 20px 20px 0 0;
    }
    .tab-container #tabs-nav {
        position: relative;
        left: 0;
        top: 0;
        background: transparent;
        z-index: 1;
        padding: 0;
        border: none;
        border-top: 0;
        border-radius: 0;
        width: 100%;
        height: auto;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        justify-content: flex-start !important;
    }
    
    .expanded#tab-container #tabs-nav {
        display: flex !important;
        height: auto;
        z-index: 111;
        visibility: visible;
        opacity: 1;
    }
      
    
    .tab-section .tab-container #tabs-nav a, 
    .tab-section .tab-container #tabs-nav a:hover, 
    .tab-section .tab-container #tabs-nav a.active {
        border-color: #dbe2e7 !important;
        background: #f5f7fa !important;
        color: #140532 !important;
    }
    .tab-section .tab-container #tabs-nav a {
        font-size: 14px;
        padding: 12px 22px;
        font-weight: 400;
    }
    .big-card.box-wrapper.after-section.\33 {
        margin-top: 15px;
    }
}

.wistia_popover_embed>div>div {
    border-radius: 10px;
    overflow: hidden;
}
.wistia_popover_mode .wistia_placebo_close_button {
    width: 30px !important;
    height: 30px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 100px !important;
    line-height: 30px !important;
    border: 0 !important;
    outline: 0 !important;
}
.wistia_popover_mode .wistia_placebo_close_button img {
    margin: 6px 4px 0 -5px !important;
}
.wistia_popover_embed {
    box-shadow: none !important;
}
.wistia_placebo_close_button,
.wistia_placebo_close_button:focus,
.wistia_placebo_close_button:active,
.wistia_popover_mode .wistia_placebo_close_button:focus,
.wistia_popover_mode .wistia_placebo_close_button {
    outline: 0 !important;
    border: 0 !important;
}
@media (max-width: 599px) {
    .wistia_popover_embed, .wistia_popover_embed>div {
        width: 320px !important;
    }
}
@media (max-width: 400px) {
    .wistia_popover_embed, .wistia_popover_embed>div {
        width: 300px !important;
    }
}
@media (max-width: 375px) {
    .wistia_popover_embed, .wistia_popover_embed>div {
        width: 230px !important;
    }
}
  
.wistia_popover_embed > div {
    max-width: 1100px !important;
    width: 100% !important;
}
.wistia_popover_embed  {
    width: 100% !important;
    max-width: 85% !important;
}
@media (max-width: 767px) {
    .wistia_popover_embed,
    .wistia_popover_embed > div {
        max-width: 85% !important;
    }
}
.page-template-template-vts-spring-release-2025 .wistia_embed,
.page-template-template-vts-spring-release-2025 .wistia_click_to_play,
.page-template-template-vts-spring-release-2025 .wistia_click_to_play>div,
.page-template-template-vts-spring-release-2025 .wistia_click_to_play img {
    position: relative !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

/* Update Subtitle Styling */
.update-subtitle {
    text-align: center;
    max-width: 690px;
    margin: 18px auto 0 auto;
}

.title-box-header {
    padding-bottom: 0;
}


/* Fix content-box-wrap height stretching */
.box-wrapper {
    display: flex;
    align-items: stretch; /* Ensure children stretch to full height */
}

.box-wrapper .content-box-wrap {
    /* align-self: stretch !important; */
    display: flex;
    flex-direction: column;
}

.box-wrapper.boxtoboxspace {
    margin-top: 50px;
}

.box-wrapper .content-box {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Ensure the button/link stays at bottom if needed */
.box-wrapper .content-box .btn-link {
    margin-top: 15px;
}