/** Shopify CDN: Minification failed

Line 2265:9 Cannot use type selector "div" directly after nesting selector "&"

**/
::-webkit-scrollbar {
    -webkit-appearance: auto;
}

  .careeers-text {
    margin-top: 20px !important;
  }



#header {
  .header--inner {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 15px;
    padding-top: 15px;

    @media all and (min-width: 1068px) {
      padding-bottom: 15px;
      padding-top: 15px;
    }

    .full-menu {
      .thb-full-menu {
        @media all and (min-width: 1068px) {
          display: flex;
          flex-direction: row;
          gap: 50px;
        }
        
        li {
          padding: 0;

          a {
            line-height: 24px;
          }
        }
      }
    }

    .logolink {
      margin: 0;
    }

    .header-right-wrapper {
      align-items: center;
      display: flex;
      flex-direction: row;
      gap: 4px;
      justify-content: flex-end;

       @media all and (min-width: 768px) {
         gap: 14px;
       }
      
      .thb-header-right {
        margin-left: 0;
        
        .header-lockup {
          align-items: center;
          gap: 10px;
          margin-right: 0;

          @media all and (min-width: 768px) {
            gap: 20px;
          }

          div {
            .thb-header--phone {
              display: none;

              @media all and (min-width: 400px) {
                display: block;
              }
              
              @media all and (min-width: 1070px) {
                font-size: 22px;
                line-height: normal;
              }
            }

            .thb-header--strapline {
              @media all and (min-width: 1070px) {
                font-size: 13px;
              }
            }
          }
          
          .thb-header--button {
            display: block;
            font-size: 12px;
            height: auto;
            line-height: 15px;
            padding: 8px 12px;

             @media all and (min-width: 768px) {
               font-size: 15px;
               line-height: 15px;
               padding: 17.5px 39px;
             }
          }
        }
  
        .thb-quick-search,
        #cart-drawer-toggle,
        .thb-secondary-myaccount {
          display: none;
        }
      }

      .mobile-toggle-wrapper {
        height: 30px;
        width: 30px;

        @media all and (min-width: 1068px) {
          display: none;
        }

        .mobile-toggle {
          align-items: center;
          display: flex;
          height: 30px;
          justify-content: center;
          margin-left: 0;
          width: 30px;
        }
      }
    }
  }
}

strong {
  font-weight: 700;
}

html, body {
  @media all and (max-width: 767px) {
    overflow-x: hidden;
  }
}

.section-column-text-video {
  .inner-wrap {
    .row {
      flex-direction: column-reverse;
      gap: 0;

      @media all and (min-width: 1024px) {
        align-items: stretch;
        flex-direction: row;
        justify-content: flex-end;
      }

      .column-text {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px 40px 15px;

        @media all and (min-width: 1024px) {
          max-width: 545px;
          padding: 65px 40px 65px 40px;
          width: 50%;
        }

        @media all and (min-width: 1280px) {
          padding-left: 0;
        }

        .section-heading {
          color: #FFF !important;
          font-size: 26px;
          font-weight: 600;
          line-height: 31.2px;
          margin-bottom: 0;

          @media all and (min-width: 1024px) {
            font-size: 36px;
            line-height: 44px;
          }
        }

        .section-text {
          display: flex;
          flex-direction: column;
          gap: 20px;

          p {
            font-size: 13px;
            line-height: 20.8px;
            margin-bottom: 0;
          }

          ul {
            margin-bottom: 0;
            
            li {
              font-size: 13px;
              line-height: 20.8px;
            }
          }
        }
    
        .section-buttons {
          display: flex;
          flex-direction: column;
          gap: 10px;

          @media all and (min-width: 1024px) {
            flex-direction: row;
            justify-content: flex-start;
            margin-top: 20px;
          }
  
          .btn {
            border-radius: 3px;
            font-family: puffin-display-soft,helvetica,arial,sans-serif;
            font-size: 15px;
            font-weight: 600;
            line-height: 15px;
            padding: 17.5px 39px;
            text-align: center;
  
            &.btn-yellow {
              background-color: #FFD000;
              color: #002B51;
            }
  
            &.btn-white {
              background-color: #FFF;
              color: #002B51;
            }
  
            &.btn-teal {
              background-color: #85b2ad;
              color: #FFF;
            }
  
            &.btn-blue {
              background-color: #002B51;
              color: #FFF;
            }
          }
        }
      }

      .column-video {
        height: 240px;
        position: relative;

        @media all and (min-width: 1024px) {
          align-content: stretch;
          height: 100%;
          width: 50%;
        }

        .background-video__iframe {
          height: 100%;
          width: 100%;

          iframe, video {
            height: 100%;
            object-fit: cover;
            width: 100%;
          }
        }

        .video-controls {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);

          .video-controls-button {
            align-items: center;
            background-color: #FFD000;
            border-radius: 100%;
            display: flex;
            justify-content: center;
            padding: 15px;

            svg {
              path {
                fill: #002B51;
              }
            }
              
            &.hidden {
              display: none;
            }
          }
        }
      }
    }
  }
}

.section-column-text-video .video-poster{
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
}
.section-column-text-video video{
  position: absolute;
  z-index: 1;
}
.section-column-text-video .video-controls{
  z-index: 1;
}

.section-scrolling-images {
  .fp-changes {
    background-color: #F5F5F5;
    margin: 0;
    padding: 20px 0;

    .scrolling-images--item {
      height: 40px;
      margin: 0 15px;

      @media all and (min-width: 1024px) {
        margin: 0 45px;
      }
    }
  }
}

.section-progress-bars {
  .fp-changes {
    background-color: #FFF;
    padding: 65px 15px;

    .progress-bars {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-bottom: 0;
      margin-top: 0;

      .section-header {
        padding-bottom: 0;

        .section-header--content {
          .section-header--title {
            color: #002B51;
            font-size: 22px;
            font-weight: 600;
            line-height: 26px;

            @media all and (min-width: 1024px) {
              font-size: 30px;
              line-height: 36px;
            }
          }
        }
      }

      .progress-bars--inner {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;

        @media all and (min-width: 1024px) {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          grid-template-rows: repeat(2, 1fr);
        }

        .progress-bars--single {
          gap: 10px;
          justify-content: flex-start;
          width: calc(50% - 10px);

          @media all and (min-width: 768px) {
            gap: 20px;
            padding: 20px;
            width: calc(33% - 15px);
          }

          @media all and (min-width: 1024px) {
            justify-content: center;
            width: 100%;
          }
          
          &:nth-child(n+4) {
            @media all and (min-width: 1024px) {
              grid-row-start: 2;
            }
          }

          &:nth-child(1),
          &:nth-child(4) {
            justify-content: flex-end;
          }

          &:nth-child(3),
          &:nth-child(6) {
            justify-content: flex-start;
          }

          div {
            padding: 0;

            &:nth-child(2) {
              display: flex;
              flex-direction: column;
              
              @media all and (min-width: 768px) {
                width: auto;
              }
            }
          }

          img {
            height: 50px;
            width: 50px;

            @media all and (min-width: 1280px) {
              height: 70px;
              width: 70px;
            }
          }

          .progress-bars--progress {
            color: #85b2ad;
            display: inline-block;
            font-size: 22px;
            font-weight: 600;
            line-height: 28px;

            @media all and (min-width: 1024px) {
              font-size: 30px;
              line-height: 36px;
            }
            
            &::before {
              color: #85b2ad;
              font-size: 22px;
              font-weight: 600;
              line-height: 28px;

              @media all and (min-width: 1024px) {
                font-size: 30px;
                line-height: 36px;
              }
            }
          }

          .progress-bars--heading {
            color: #002b51;
            display: inline-block;
            font-size: 11px;
            line-height: 20px;

            @media all and (min-width: 1024px) {
              font-size: 13px;
              line-height: 20px;
            }
          }
        }
      }
    }
  }
}

.section-promotion-blocks {
  .fp-changes {
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
    padding: 40px 15px;
  
    @media all and (min-width: 1024px) {
      padding: 65px 15px;
    }
    
    .section-header {
      border-left: 0;
      margin: 0;
      padding-left: 0;
  
      .section-header--content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0 auto;
        text-align: center;
  
        .section-header--title {
          color: #002b51;
          font-size: 22px;
          line-height: 26px;
          margin-bottom: 0;
  
          @media all and (min-width: 1024px) {
            font-size: 30px;
            line-height: 36px;
          }
        }
  
        .section-header--description {
          p {
            color: #002b51;
            font-size: 13px;
            line-height: 19px;
            margin-bottom: 0;
          }
        }
      }
    }
  
    .promotion-blocks {
      .promotion-blocks--inner {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
  
        @media all and (min-width: 768px) {
          flex-direction: row;
          flex-wrap: wrap;
          gap: 20px;
        }
  
        .promotion-blocks--item {
          align-items: stretch;
          display: flex;
          margin: 0;
          width: 100%;

          @media all and (min-width: 768px) {
            width: calc(50% - 10px);
          }

          @media all and (min-width: 1024px) {
            width: calc(25% - 15px);
          }
          
          div {
            align-items: center;
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
            color: transparent;
            display: flex;
            flex-direction: row;
            gap: 20px;
            padding: 10px;
            width: 100%;

            a {
              align-items: center;
              display: flex;
              flex-direction: row;
              gap: 20px;

              @media all and (min-width: 1024px) {
                align-items: flex-start;
                flex-direction: column;
                padding: 40px 20px;
              }
            }

            &.has-colour {
              box-shadow: 0px 0px 10px 0px;
            }
  
            @media all and (min-width: 1024px) {
              align-items: flex-start;
              flex-direction: column;
              padding: 40px 20px;
            }

            @media all and (min-width: 1280px) {
              justify-content: center;
            }
            
            .promotion-blocks--image {
              height: 50px;
              margin: 0 auto;
              width: 50px;
  
              @media all and (min-width: 1024px) {
                height: auto;
                margin: 0 auto !important;
                width: 70px;
              }
            }
  
            .promotion-blocks--text {
              align-items: flex-start;
              box-shadow: none;
              display: flex;
              flex-direction: column;
              gap: 5px;
              padding: 0;
              text-align: left;
  
              @media all and (min-width: 1024px) {
                align-items: center;
                padding: 0;
                text-align: center;
              }
  
              h6 {
                line-height: 27px;
                margin-bottom: 0;
              }
  
              p {
                color: #002b51;
                font-size: 13px;
                line-height: 19px;
                margin-bottom: 0;
              }
  
              .text-button {
                display: none;
              }
            }
          }
        }
      }
    }
  }
}

.section-service-hero {

  .services-hero-inner {
    border-bottom: 5px solid #85B2AD;
    position: relative;
    width: 100%;

    .desktop-img {
      background: linear-gradient(180deg, rgba(0, 43, 81, 0.00) -0.07%, rgba(0, 43, 81, 0.90) 90.9%), linear-gradient(0deg, rgba(0, 43, 81, 0.40) 0%, rgba(0, 43, 81, 0.40) 100%);
      background-repeat: no-repeat;
      background-size: cover;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 1;
    }
  
    .service-hero-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 110px 15px 40px 15px;
      position: relative;
      width: 100%;
      z-index: 2;
  
      @media all and (min-width: 768px) {
        padding: 165px 0 65px 0;
      }
  
      .service-hero-title {
        color: #FFF !important;
        font-size: 26px;
        font-weight: 600;
        line-height: 31px;
        margin-bottom: 0;
        text-align: center;
  
        @media all and (min-width: 768px) {
          font-size: 36px;
          line-height: 44px;
        }
      }
  
      .buttons-wrap {
        display: flex;
        flex-direction: column;
        gap: 10px;
  
        @media all and (min-width: 768px) {
          flex-direction: row;
          justify-content: center;
        }
  
        .button {
          border-radius: 3px;
          color: #002B51;
          font-size: 15px;
          font-weight: 600;
          line-height: 15px;
          padding: 17.5px 40px;
          
          &.btn-yellow {
            background-color: #FFD000;
          }
    
          &.btn-white {
            background-color: #FFF;
          }
        }
      }
    }
  }

  .breadcrumbs-wrapper {
    background: #F5F5F5;
  }
}

.section-column-text-form {
  .row {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;

    @media all and (min-width: 1170px) {
      flex-direction: row;
    }

    .text-column {
      background-color: #FFF;
      width: 100%;

      @media all and (min-width: 1170px) {
        width: 50%;
      }

      .text-column-inner {
        display: flex;
        flex-direction: column;
        gap: 23px;
        padding: 40px 15px;

        @media all and (min-width: 1170px) {
          gap: 40px;
          margin-left: auto;
          max-width: 545px;
          padding: 65px 40px 65px 0;
        }
      }

      .brand-focus-header {
        border-left-color: #85B2AD;
        margin-bottom: 9px;
        padding-left: 24px;
        padding-right: 24px;

        .section-header--title {
          color: #001489;
          font-family: puffin-display-soft, helvetica, arial, sans-serif;
          font-size: 26px;
          font-weight: 600;
          line-height: 31px;
          margin-bottom: 0;

          @media all and (min-width: 1170px) {
            font-size: 36px;
            line-height: 44px;
          }
        }
      }

      .column-text-description {
        color: color: #002B51;
        font-family: "Pathway Extreme";
        font-size: 13px;
        line-height: 19.5px;

        p {
          color: #002b51;
          
          strong {
            font-weight: 700;
          }

          a {
            text-decoration: underline;
          }

          &:last-child {
            margin-bottom: 0;
          }
        }

        ul {
          li {
            color: #002b51;

            strong {
              font-weight: 700;
            }
            
            a {
              color: #002b51;
            }
          }
        }

        .review-wrapper {
        background: #F5F5F5;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;

        .review-stars {
          display: flex;
          flex-direction: row;
          gap: 2px;
        }

        .review-heading {
          color: #002B51;
          font-family: "Pathway Extreme";
          font-size: 15px;
          font-weight: 600;
          line-height: 22.5px;
          margin-bottom: 0;
        }

        .review-quote {
          p {
            color: #002B51;
            font-family: "Pathway Extreme";
            font-size: 13px;
            font-weight: 400;
            line-height: 19.5px;
            margin-bottom: 0;
          }
        }
      }
      }
    }

    .form-column {
      background-color: #002B51;
      width: 100%;

      @media all and (min-width: 1170px) {
        width: 50%;
      }

      .form-column-inner {
        padding: 40px 15px;

        @media all and (min-width: 1170px) {
          margin-right: auto;
          padding: 65px 0 65px 40px;
          max-width: 545px;
        }

        p {
          color: #FFF;
          font-size: 14px;
          padding: 25px 0 0 30px;

          a {
            color: #FFF;
            font-weight: 600;
            text-decoration: underline;
          }
        }
      }
    }
  }
}

.section-column-text-image {
  background-color: #F5F5F5;
  padding: 40px 15px;

  @media all and (min-width: 768px) {
    padding: 65px 0;
  }
  
  .row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    max-width: 1170px;
    padding: 0;

    &.reverse-small {
      flex-direction: column-reverse;
    }

    @media all and (min-width: 1170px) {
      flex-direction: row;
      gap: 60px;

      &.reverse-small {
        flex-direction: row;
      }

      &.reverse-large {
        flex-direction: row-reverse;
      }
    }

    .text-column {
      width: 100%;

      @media all and (min-width: 1170px) {
        width: calc(50% - 30px);
      }

      .text-column-inner {
        border-left: 4px solid #85B2AD;
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding-left: 24px;

        @media all and (min-width: 1170px) {
          align-items: flex-start;
          gap: 40px;
          margin-left: auto;
          max-width: 545px;
        }
      }

      .brand-focus-header {
        border-left: 0;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;

        .section-header--title {
          color: #001489;
          font-family: puffin-display-soft, helvetica, arial, sans-serif;
          font-size: 22px;
          font-weight: 600;
          line-height: 26px;
          margin-bottom: 0;

          @media all and (min-width: 1170px) {
            font-size: 30px;
            line-height: 36px;
          }
        }
      }

      .column-text-description {
        color: #002B51;
        display: flex;
        flex-direction: column;
        font-family: "Pathway Extreme";
        font-size: 13px;
        gap: 10px;
        line-height: 19.5px;

        p {
          margin-bottom: 0;
          
          strong {
            font-weight: 700;
          }

          a {
            color: #002b51;
            font-weight: 600;
            text-decoration: underline;
          }
        }

        ul {
          margin-bottom: 0;
          
          li {
            a {
              color: #002b51;
              font-weight: 600;
              text-decoration: underline;
            }
          }
        }
      }

        .button {
          border-radius: 3px;
          color: #002B51;
          font-family: puffin-display-soft, helvetica, arial, sans-serif;
          font-size: 15px;
          font-weight: 600;
          line-height: 15px;
          padding: 17.5px 30px;

          @media all and (min-width: 768px) {
            padding: 17.5px 40px;
          }

          @media all and (min-width: 1170px) {
            margin-top: -20px;
          }
          
          &.btn-yellow {
            background-color: #FFD000;
          }
    
          &.btn-white {
            background-color: #FFF;
          }
        }

    }

    .image-column {
      width: 100%;

      @media all and (min-width: 1170px) {
        width: calc(50% - 30px);
      }
      
      .image {
        img {
          border-radius: 10px;
          margin: 0 auto;
        }
      }
    }
  }
}

.section-column-grid {
  .grid-title {
    color: #001489;
    font-family: puffin-display-soft,helvetica,arial,sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.4px;
    margin-bottom: 20px;
    text-align: center;

    @media all and (min-width: 1024px) {
      font-size: 30px;
      line-height: 36px;
    }
  }
  .description {
    color: #002B51;
    font-size: 13px;
    line-height: 19.5px;
    margin-bottom: 0;
  }

  .multicolumn__inner {
    margin-bottom: 80px;
    overflow-x: scroll;
    overflow-y: hidden;

    ::-webkit-scrollbar {
      height: 0px;
      border: 1px solid #d5d5d5;
    }

    @media all and (min-width: 768px) {
      margin-bottom: 0;
      overflow-x: hidden;
    }
    
    .row {
      display: flex;
      flex-direction: row;
      gap: 20px;
      justify-content: flex-start;
      margin: 0;
      padding: 40px 3px 5px 3px;

      &.cols-3 {
        width: 800px;
      }

      &.cols-4 {
        width: calc(265px * 4);
      }

      @media all and (min-width: 768px) {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: flex-start;
        margin: 0;
        width: 100% !important;
      }

    &.cols-3 {
      .multicolumn__column {
        flex: 0 0 245px;
        max-width: 245px;
        width: 245px;
  
        
        @media all and (min-width: 768px) {
          flex: 0 0 calc(33% - 20px);
          max-width: calc(33% - 20px);
          width: calc(33% - 20px);
        }
      }
    }
    
    &.cols-4 {
      .multicolumn__column {
        flex: 0 0 245px;
        max-width: 245px;
        width: 245px;
  
        
        @media all and (min-width: 768px) {
          flex: 0 0 calc(50% - 20px);
          max-width: calc(50% - 20px);
          width: calc(50% - 20px);
        }
  
        @media all and (min-width: 1280px) {
          flex: 0 0 calc(25% - 20px);
          max-width: calc(25% - 20px);
          width: calc(25% - 20px);
        }
      }
    }
    }

    .multicolumn__column {
      margin-bottom: 0;

      &.large-ptb {
        @media all and (min-width: 1280px) {
          padding-bottom: 60px !important;
          padding-top: 40px !important;
        }
      }
      
      .multicolumn-content {
        padding: 20px;
  
        .multicolumn__image {
          display: block;
          margin-bottom: 0;

          @media all and (min-width: 1024px) {
            margin-left: auto;
            margin-right: auto;
          }
        }
        
        .rte {
          display: flex;
          flex-direction: column;
          gap: 10px;
          margin-top: 20px;
          text-align: left;
          
          h4 {
            color: #001489;
            font-size: 18px;
            line-height: 27px;
            margin-bottom: 20px;
          }

          p {
            color: #002B51;
            margin-bottom: 0;

            a {
              color: #002B51;
              font-weight: 600;
            }
          }

          ul {
            font-size: 13px;
            margin-bottom: 0;

            li {
              color: #002B51;

              a {
                color: #002B51;
                font-weight: 600;
              }
            }
          }
        }

        .bottom-arrow {
          display: none;

          @media all and (min-width: 1280px) {
            display: block;
          }
        }

        .top-arrow {
          display: none;
          
          @media all and (min-width: 768px) {
            display: block;
          }
        }
      }
      
    }
  }

  .arrows {
      display: flex;
      flex-direction: row;
      gap: 40px;
      justify-content: center;
      padding-top: 40px;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);

      @media all and (min-width: 768px) {
        display: none;
      }

      .arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: var(--color-drawer-bg, #fff);
        z-index: 30;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 10px #00000026;

        &.left {
          &.opacity {
            opacity: 0.2;
          }
          
          svg {
            transform: rotate(-90deg);
          }
        }

        &.right {
          &.opacity {
            opacity: 0.2;
          }
          
          svg {
            transform: rotate(90deg);
          }
        }
      }
    }
}

.section-logo-grid {
  background-color: #FFF;

  .section-spacing {
    margin: 0;
    padding: 40px 0;

    @media all and (min-width: 768px) {
      padding: 65px 0;
    }
    
    .container-row {
      .section-header {
        border-left-width: 0;
        display: block;
        padding-left: 0;
        width: 100%;

        @media all and (min-width: 1024px) {
            margin-bottom: 40px;
        }
        
        .section-header--title {
          color: #001489;
          font-size: 22px;
          font-weight: 600;
          line-height: 26px;
          margin-bottom: 0;
          padding: 0 10px;
          text-align: center;

          @media all and (min-width: 1024px) {
            font-size: 30px;
            line-height: 36px;
          }
        }
      }

      .logo-list--inner {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;

        @media all and (min-width: 1024px) {
            gap: 50px;
        }

        .logo-list--logo {
          display: block;
          width: calc(33% - 10px);

          @media all and (min-width: 1024px) {
            width: auto;
          }
        }
      }
    }
  }
}

.section-column-testimonial {
  .inner {
    padding: 40px 15px;

    @media all and (min-width: 1280px) {
      padding: 65px 0;
    }

    .row {
      display: flex;
      flex-direction: column;
      gap: 40px;

      @media all and (min-width: 1280px) {
        align-items: flex-start;
        flex-direction: row;
        gap: 60px;
      }

      .testimonial-column {
        border-left: 4px solid #85B2AD;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 24px;
        width: 100%;

        @media all and (min-width: 1280px) {
          width: calc(50% - 30px);
        }

        img {
          height: 32px;
          width: 130px;
        }

        .testimonial-quote {
          color: #FFF;
          font-family: "Pathway Extreme";
          font-size: 16px;
          font-weight: 600;
          line-height: 24px;
          margin-bottom: 0;

          @media all and (min-width: 1280px) {
            font-size: 18px;
            line-height: 27px;
          }
        }

        .testimonial-author-role {
          color: #FFF;
          font-family: "Pathway Extreme";
          font-size: 13px;
          line-height: 19px;
          margin-bottom: 0;

          .testimonial-author {
            font-weight: 600;
          }
        }
      }

      .cta-right {
        align-items: flex-start;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: flex-start;
        padding: 24px;
        width: 100%;

        @media all and (min-width: 1280px) {
          width: calc(50% - 30px);
        }

        .cta-right-title {
          color: #002B51;
          font-family: "Pathway Extreme";
          font-size: 18px;
          font-weight: 600;
          line-height: 27px;
          margin-bottom: 0;
        }

        .cta-right-desc {
          color: #002b51;
          font-family: "Pathway Extreme";
          font-size: 13px;
          line-height: 19.5px;
          margin-bottom: 0;
        }

        .btn {
          border-radius: 3px;
          display: inline-block;
          font-family: puffin-display-soft, helvetica, arial, sans-serif;
          font-size: 15px;
          font-weight: 600;
          line-height: 15px;
          padding: 17.5px 40px;
          text-align: center;
        }
      }
    }
  }
}

.section-service-faqs {
  padding: 40px 0;

  @media all and (min-width: 768px) {
    padding: 65px 0;
  }

  .row {
    max-width: 800px;
    margin: 0 auto;
  }

  .section-spacing {
    margin-top: 0;

    @media all and (min-width: 1068px) {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }
  
    .section-header {
      border-left-width: 0;
      margin-bottom: 40px;
      padding-left: 0;

      @media all and (min-width: 1280px) {
        margin-bottom: 0;
      }

      .section-header--content {
        position: relative;
        top: 0;
        width: 100%;
      }

      .section-header--title {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;

        @media all and (min-width: 1280px) {
          font-size: 30px;
          line-height: 30px;
        }
      }

      .section-header--description {
        font-size: 13px;
        text-align: center;

        p {
          color: #002b51;
        }
      }
    }

    .collapsible-content__inner {
      .accordion {
        details {
          summary {
            h3 {
              color: #001489;
              font-size: 16px;
              font-weight: 600;
              line-height: 24px;

              @media all and (min-width: 1280px) {
                font-size: 18px;
                line-height: 27px;
              }
            }
          }

          .accordion__content {
            p {
              color: #002b51;
              font-size: 13px;

              a {
                font-weight: 600;
                text-decoration: underline;
              }
            }
          }
        }
      }
    }
    
  }

  .faq-cta {
    background-color: #002b51;
    border-radius: 10px;
    padding: 20px;
    text-align: center;

    @media all and (min-width: 768px) {
      margin: 0 auto;
      max-width: 570px;
    }

    @media all and (min-width: 768px) {
      margin-top: 20px;
    }

    p {
      color: #fff;
      font-size: 13px;
      line-height: 19.5px;
      margin-bottom: 20px;
      text-align: center;
    }

    .btn {
      background-color: #FFD000;
      border-radius: 3px;
      color: #002b51;
      display: block;
      font-size: 15px;
      font-weight: 600;
      line-height: 15px;
      padding: 17.5px 40px;
      text-align: center;

      @media all and (min-width: 768px) {
        display: inline-block;
        margin: 0 auto;
      }
    }
  }
}

.section-service-blogs {
  background-color: #F5F5F5;
  padding: 40px 0;

  .blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 0;
    margin-top: 0;

    .section-header {
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding-bottom: 0;

      @media all and (min-width: 1024px) {
        flex-direction: row;
        justify-content: space-between;
      }
      
      .header-left {
        border-left: 4px solid #85B2AD;
        padding-left: 24px;

        .section-title {
          color: #002b51;
          font-family: puffin-display-soft, helvetica, arial, sans-serif;
          font-size: 22px;
          font-weight: 600;
          line-height: 26px;
          margin-bottom: 0;

          @media all and (min-width: 1024px) {
            font-size: 30px;
            line-height: 36px;
          }
          
        }
      }

      .header-right {
        .text-button {
          color: #002b51;
          font-size: 13px;
          font-weight: 700;
          text-decoration: underline;

          span {
            align-content: center;
            display: flex;
            justify-content: center;
            height: 20px;
            width: 20px;
          }
        }
      }
    }

    .blog-wrapper {
      display: flex;
      flex-direction: column;
      gap: 30px;

      @media all and (min-width: 1024px) {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .blog-item {
        width: 100%;

        @media all and (min-width: 1024px) {
          width: calc(33% - 17px);
        }
        
        .blog-post {
          .blog-title {
            color: #002B51;
            font-size: 18px;
            font-weight: 600;
            line-height: 27px;
            margin-bottom: 20px;
          }
        }
      }
    }

    .row.articles {
      @media all and (min-width: 768px) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
      }

      .columns {
        @media all and (min-width: 768px) {
          flex: 0 0 calc(50% - 15px);
          max-width: calc(50% - 15px);
          padding: 0;
          width: calc(50% - 15px);
        }

        .blog-title {
            color: #002B51;
            font-size: 18px;
            font-weight: 600;
            line-height: 27px;
            margin-bottom: 20px;
          }

        .text-button--has-icon {
            span {
              align-items: center;
              background-color: #85B2AD;
              display: flex;
              height: 20px;
              justify-content: center;
              margin-left: 10px;
              padding-top: 0;
              width: 20px;

              svg {
                path {
                  fill: #002B51;
                }
              }
            }
          }
      }

      &.post-count-3 {
        .columns {
          @media all and (min-width: 1280px) {
              flex: 0 0 calc(33% - 25px);
              max-width: calc(33% - 25px);
              padding: 0;
              width: calc(33% - 25px);
          }
        }
      }

      &.post-count-4 {
        .columns {
          @media all and (min-width: 1280px) {
              flex: 0 0 calc(25% - 25px);
              max-width: calc(25% - 25px);
              padding: 0;
              width: calc(25% - 25px);
          }
        }
      }
    }
  }
}

.section-split-image {
  .fp-changes {
    .row {
      padding: 0 15px;
      
      .split-image-text--content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin: 0;
        padding: 40px 0;

        @media all and (min-width: 1280px) {
          flex-direction: row;
          gap: 60px;
          padding: 65px 0;
        }

        .brand-focus-wrapper {
          @media all and (min-width: 1280px) {
            width: calc(40% - 30px)
          }
          
          .brand-focus-header {
            align-items: flex-start;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 0;

            h2,h3,h4,h5,h6, .section-title {
              color: #002B51;
              font-size: 22px;
              font-weight: 600;
              line-height: 26px;
              margin-bottom: 20px;

              @media all and (min-width: 1280px) {
                font-size: 30px;
                line-height: 36px;
              }
            }

            .rte {
              display: flex;
              flex-direction: column;
              gap: 20px;
              margin-bottom: 0;

              p {
                color: #002B51;
                font-size: 13px;
                line-height: 20px;
                margin-bottom: 0;
              }

              ul {
                margin-bottom: 0;
                
                li {
                  color: #002B51;
                  font-size: 13px;
                  line-height: 20px;

                  a {
                    color: #002B51;
                    font-weight: 600;
                    text-decoration: underline;
                  }
                }
              }
            }

            .text-button {
              background-color: #FFD000;
              border-radius: 3px;
              color: #002b51;
              display: block;
              font-family: puffin-display-soft,helvetica,arial,sans-serif;
              font-size: 15px;
              font-weight: 600;
              line-height: 15px;
              padding: 17.5px 39px;
              text-align: center;
              
              span {
                display: none;
              }
            }
          }
        }

        .section-split-image--images {
          @media all and (min-width: 1280px) {
            width: calc(60% - 30px);
          }
        }
        
        .section-split-image--images--two-images {
          display: flex;
          flex-direction: row;
          gap: 10px;

          img {
            border-radius: 10px;
            width: calc(50% - 5px);
          }
          @media all and (min-width: 1280px) {
            gap: 20px;
            width: calc(60% - 30px);

            img {
              width: calc(50% - 10px);
            }
          }
        }
        
      }
    }
  }
}

.section-blog-group {
  .blog-posts {
    margin-bottom: 0;

    .section-header--title {
      color: #002B51;
      font-size: 22px;
      font-weight: 600;
      line-height: 26.4px;

      @media all and (min-width: 1024px) {
        font-size: 30px;
        line-height: 36px;
      }
    }
  }
  
  .row.articles {
      @media all and (min-width: 768px) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
      }

      .columns {
        @media all and (min-width: 768px) {
          flex: 0 0 calc(50% - 15px);
          max-width: calc(50% - 15px);
          padding: 0;
          width: calc(50% - 15px);
        }

        .blog-post {
          .blog-title {
            font-size: 18px;
            line-height: 27px;
          }
          
          .text-button {
            color: #002b51;
            gap: 10px;
            text-decoration: underline;

            span {
              align-items: center;
              background-color: #85B2AD;
              display: flex;
              height: 20px;
              justify-content: center;
              padding: 0;
              width: 20px;
            }
          }
        }
      }

      &.post-count-3 {
        .columns {
          @media all and (min-width: 1280px) {
              flex: 0 0 calc(33% - 25px);
              max-width: calc(33% - 25px);
              padding: 0;
              width: calc(33% - 25px);
          }
        }
      }
    
      &.post-count-4 {
        .columns {
          @media all and (min-width: 1280px) {
              flex: 0 0 calc(25% - 25px);
              max-width: calc(25% - 25px);
              padding: 0;
              width: calc(25% - 25px);
          }
        }
      }
  }
}

.section-scrolling-content {
  .fp-changes {
    background-color: #FFF;
    margin: 0;
    padding: 40px 0;

    @media all and (min-width: 1280px) {
      padding: 65px 0;
    }

    &.section-spacing--disable-bottom {
      padding-bottom: 0 !important;
    }
    
    .scrolling-content--inner {
      max-width: 1170px;
      padding: 0 15px;

      @media all and (min-width: 768px) {
        padding: 0;
      }

      .scrolling-content--container {
        margin-left: 0;
        padding: 0;

        .scrolling-content--content {
          gap: 40px;
          
          .scrolling-content--content-image {
            margin-bottom: 0;
          }

          .scrolling-content--content-text {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 0;

            @media all and (min-width: 768px) {
              align-items: flex-start;
              margin-top: 0;
            }
            
            h2,h3,h4,h5,h6,.section-heading {
              font-size: 22px;
              font-weight: 600;
              line-height: 26px;
              margin-bottom: 20px;

              @media all and (min-width: 1024px) {
                font-size: 30px;
                line-height: 36px;
              }
            }

            .rte {
              display: flex;
              flex-direction: column;
              gap: 20px;
              margin-bottom: 0;

              p {
                font-size: 13px;
                line-height: 20px;
                margin-bottom: 0;
              }

              ul {
                margin-bottom: 0;
                
                li {
                  font-size: 13px;
                  line-height: 20px;

                  a {
                    font-weight: 600;
                    text-decoration: underline;
                  }
                }
              }
            }

            .text-button {
              background-color: #FFD000;
              border-radius: 3px;
              color: #002b51;
              display: block;
              font-family: puffin-display-soft,helvetica,arial,sans-serif;
              font-size: 15px;
              font-weight: 600;
              line-height: 15px;
              padding: 17.5px 39px;
              text-align: center;
              
              span {
                display: none;
              }
            }
          }
        }

        .scrolling-content--image {
          max-height: 600px !important;
          
          .scrolling-content--image-inner {
            @media only screen and (min-width: 768px) {
              height: auto;
            }
          }
        }
      }
    }
  }
}

.section-image-with-text {
  .fp-changes {
    background-color: #FFF;
    max-width: 100%;
    padding: 0 15px 40px 15px;

    .columns {
      margin: 0 auto;
      max-width: 1240px;
      
      .image-with-text {
        background: var(--color-bg, #fff);
        border-radius: 10px;
        margin: 0;
        padding: 20px;

        @media all and (min-width: 1024px) {
          padding: 60px;
        }

        .image-with-text--content {
          background-color: transparent;
          padding: 0;

          .image-with-text--content--inner {
            display: flex;
            flex-direction: column;
            gap: 20px;

            @media all and (min-width: 1024px) {
              align-items: flex-start;
            }
            
            h2,h3,h4,h5,h6,p, .section-heading {
              font-size: 22px;
              font-weight: 600;
              line-height: 26px;
              margin-bottom: 0;

              @media all and (min-width: 1024px) {
                font-size: 30px;
                line-height: 36px;
              }
            }

            .rte {
              display: flex;
              flex-direction: column;
              gap: 20px;
              margin-bottom: 0;

              p {
                font-size: 13px;
                font-weight: 400;
                line-height: 20px;
                margin-bottom: 0;
              }

              ul {
                margin-bottom: 0;
                
                li {
                  font-size: 13px;
                  line-height: 20px;

                  a {
                    font-weight: 600;
                    text-decoration: underline;
                  }
                }
              }
            }

            .button {
              background-color: #FFD000;
              border-radius: 3px;
              display: block;
              height: auto;
              padding: 17.5px 10px;
              text-align: center;

              @media all and (min-width: 768px) {
                padding-left: 40px;
                padding-right: 40px;
              }
              
              span {
                color: #002b51;
                font-family: puffin-display-soft,helvetica,arial,sans-serif;
                font-size: 15px;
                font-weight: 600;
                line-height: 15px;
              }
            }
          }
        }

        .image-with-text--image {
          .image-with-text--image-media {
            height: auto;
            overflow: auto;
            padding: 0;
            
            img {
              height: auto;
              position: static;
            }
          }
        }
      }
    }
  }
}

.section-slideshow {
  .fp-changes {
    background-color: #FFF;
    padding: 0;

    @media all and (min-width: 768px) {
      padding-bottom: 50px;
    }

    .header-row {
      padding: 40px 15px;

      @media all and (min-width: 768px) {
        padding-left: 35px;
        padding-right: 35px;
      }
      
      .section-header {
        border-left: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-left: 0;

        @media all and (min-width: 768px) {
          flex-direction: row;
        }
        
        .section-header--content {
          border-left: 4px solid #000;
          display: flex;
          flex-direction: column;
          gap: 20px;
          padding-left: 24px;

          .section-header--title {
            font-size: 30px;
            line-height: 36px;
            margin-bottom: 0;
          }

          .rte {
            p {
              color: #002b51;
              font-size: 13px;
              line-height: 20px;
            }
          }
        }

        .section-header--button {
          .text-button {
            color: #002b51;
            font-size: 13px;
            font-weight: 700;
            text-decoration: underline;

            span {
              align-items: center;
              display: flex;
              height: 20px;
              justify-content: center;
              margin-left: 10px;
              padding: 0;
              width: 20px;
            }
          }
        }
      }
    }

    .casestudies-content {
      margin-top: 0;
      position: relative;

      .slideshow--bg-strip {
        bottom: 0;
        top: auto;

        @media all and (min-width: 500px) {
          bottom: auto;
          top: 25px;
          height: 200px;
        }

        @media all and (min-width: 1280px) {
          height: 290px;
          top: 40px;
        }
      }
      
      .slideshow {
        margin-bottom: 0;
        margin-top: 0;
        min-height: auto !important;
        padding-bottom: 100px;
        position: relative;

        @media all and (min-width: 768px) {
          padding-bottom: 0;
        }

        &div[class^='desktop-height-'], div[class*=' desktop-height-'] {
          @media all and (min-width: 768px) {
            min-height: auto !important;
          }
        }

        .flickity-viewport {
          @media all and (min-width: 500px) {
            height: 240px !important;
          }

          @media all and (min-width: 1280px) {
            height: 400px !important;
          }
        }

        .slideshow__slide {
          @media all and (min-width: 768px) {
            min-height: 240px !important;
          }

          @media all and (min-width: 1280px) {
            height: 400px !important;
          }
          
          .container-row {
            align-items: flex-start;
            display: flex;
            flex-direction: column;
            gap: 40px;
            justify-content: flex-start;

            @media all and (min-width: 500px) {
              flex-direction: row;
            }

            .slideshow__slide--blog-image {
              margin-bottom: 0;
            }

            .slideshow__slide--blog-content {
              @media all and (min-width: 768px) {
                margin-top: 30px;  
              }
              
              .slideshow__slide-content--no-blur {
                display: flex;
                flex-direction: column;
                gap: 20px;

                @media all and (min-width: 500px) and (max-width: 767px) and (orientation: landscape) {
                  padding-top: 40px;
                }


                @media all and (min-width: 1280px) {
                  margin-top: 10%;
                }
                
                .slideshow__slide-heading {
                  font-weight: 600;
                  margin-bottom: 0;
                }
  
                .slideshow__slide--blog-content-excerpt {
                  display: block;
                  margin-bottom: 0;
                }
              }
            }
          }
        }

        .flickity-custom-navigation-wrapper {
          bottom: 40px;

          @media all and (min-width: 768px) {
            bottom: -10px;
            left: 67%;
            padding-right: 0;
            width: 230px;
          }

          @media all and (min-width: 1024px) {
            bottom: 10%;
            left: 63%;
          }

          @media all and (min-width: 1280px) {
            bottom: 20%;
            left: 61%;
          }

          @media all and (min-width: 1400px) {
            left: 59%;
          }
          
          .flickity-static-arrows {
            padding: 0 15px;
            width: 100%;

            @media all and (min-width: 768px) {
              padding: 0;
            }
            
            .flickity-nav {
              align-items: center;
              display: flex;
              justify-content: center;
            }
          }
        }
      }
    }
  }
}

.section-feefo-widget {
  .feefo-widget-wrapper {
    padding: 30px;
    text-align: center;
  }
}

.section-split-column-text--right {
  padding-top: 65px;
}

.careeers-text,
.careers-text-quote,
.careers-text-contact {
  animation: fadeIn 2s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.template-blog-accreditations {
  .blog-posts {
    .blog-post {
      .blog-title {
        font-size: 24px;
        word-break: break-word;

        @media all and (min-width: 1280px) {
          font-size: 28px;
        }
      }
    }
  }
}