/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
/* Weights */
/* Animations */
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadedown {
  from {
    opacity: 0;
    margin-top: -100%; }
  to {
    opacity: 1;
    margin-top: 2rem; } }
@-webkit-keyframes scroller {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  25% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  75% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0); } }
@keyframes scroller {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  25% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  75% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0); } }
.site-header {
  width: 96%;
  max-width: 2000px;
  background: #000;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  z-index: 100;
  margin: 2% auto;
  left: 0;
  right: 0;
  box-shadow: 4px 4px 14px 3px rgba(0, 0, 0, 0.2);
  transition: .3s ease-in-out;
  opacity: 0;
  animation: fadein 1s ease;
  animation-fill-mode: forwards;
  animation-delay: .2s; }
  .site-header.scroll {
    width: 100%;
    margin-top: 0; }
    @media (min-width: 840px) {
      .site-header.scroll {
        width: 96%;
        margin: 2% auto; } }
    .site-header.scroll .toolbar {
      height: 0;
      overflow: hidden;
      padding: 0 1rem; }
  .site-header .toolbar {
    width: 100%;
    background: linear-gradient(120deg, #AE78BF 0%, #742F8A 100%);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: .3s ease-in-out; }
    .site-header .toolbar iconify-icon {
      padding: 0;
      margin: 0 0 0 0.5rem;
      display: flex;
      align-items: center;
      color: #FFF; }
  .site-header .header-container {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .site-header .header-container .logo a {
      display: flex; }
    .site-header .header-container .logo img {
      max-width: 5.5rem;
      height: auto; }
      @media (min-width: 840px) {
        .site-header .header-container .logo img {
          max-width: 7rem; } }
    .site-header .header-container .mobile-button {
      -webkit-appearance: none;
      appearance: none;
      background: linear-gradient(125deg, #AE78BF, #764ba2, #8E37D7);
      background-size: 150% 150%;
      border: 0;
      padding: 0.5rem;
      margin: 0;
      border-radius: 6px;
      cursor: pointer;
      transition: .3s; }
      @media (min-width: 840px) {
        .site-header .header-container .mobile-button {
          display: none; } }
      .site-header .header-container .mobile-button:hover, .site-header .header-container .mobile-button:focus {
        background-position: bottom right; }
      .site-header .header-container .mobile-button iconify-icon {
        color: #FFF; }
    .site-header .header-container #mobile-menu {
      width: 100%;
      height: 100%;
      position: fixed;
      z-index: 120;
      background: rgba(255, 255, 255, 0.8);
      -webkit-backdrop-filter: blur(3rem);
      backdrop-filter: blur(3rem);
      top: -100%;
      left: 0;
      margin: 0;
      padding: 2rem;
      display: flex;
      align-items: center;
      transition: .4s; }
      .site-header .header-container #mobile-menu.active {
        top: 0; }
      @media (min-width: 840px) {
        .site-header .header-container #mobile-menu {
          display: none; } }
      .site-header .header-container #mobile-menu .close-button {
        position: absolute;
        top: 1rem;
        right: 1rem;
        -webkit-appearance: none;
        appearance: none;
        background: none;
        border: 0;
        padding: 0;
        margin: 0;
        cursor: pointer; }
      .site-header .header-container #mobile-menu .menu-main-menu-container {
        width: 100%; }
      .site-header .header-container #mobile-menu .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center; }
        .site-header .header-container #mobile-menu .menu li {
          width: 100%;
          margin-bottom: 1rem; }
          .site-header .header-container #mobile-menu .menu li:last-child {
            margin-bottom: 0; }
            .site-header .header-container #mobile-menu .menu li:last-child a {
              background: linear-gradient(125deg, #AE78BF, #764ba2, #8E37D7);
              background-size: 300% 100%;
              background-position: top left;
              padding: 0.8rem 2.5rem;
              border-radius: 6px;
              color: #FFF;
              transition: .3s ease-in-out;
              position: relative;
              display: inline-block; }
              .site-header .header-container #mobile-menu .menu li:last-child a:hover, .site-header .header-container #mobile-menu .menu li:last-child a:focus {
                background-position: 100% 0;
                color: #FFF; }
          .site-header .header-container #mobile-menu .menu li a {
            display: block;
            font-size: 1.4rem;
            font-weight: 900;
            color: #000;
            text-decoration-color: transparent;
            text-transform: uppercase;
            transition: .3s; }
            .site-header .header-container #mobile-menu .menu li a:hover, .site-header .header-container #mobile-menu .menu li a:focus {
              color: #742F8A; }
    .site-header .header-container #main-menu {
      padding: 0;
      margin: 0;
      text-align: right;
      display: none; }
      @media (min-width: 840px) {
        .site-header .header-container #main-menu {
          display: flex; } }
      .site-header .header-container #main-menu .menu {
        display: flex;
        align-items: center; }
        .site-header .header-container #main-menu .menu li {
          margin-left: 1.5rem; }
          .site-header .header-container #main-menu .menu li a {
            color: #FFF;
            text-transform: uppercase;
            text-decoration-color: transparent;
            font-weight: 600;
            font-size: 0.9rem; }
            .site-header .header-container #main-menu .menu li a:hover, .site-header .header-container #main-menu .menu li a:focus {
              color: #AE78BF; }
          .site-header .header-container #main-menu .menu li:last-child a {
            background: linear-gradient(125deg, #AE78BF, #764ba2, #8E37D7);
            background-size: 300% 100%;
            background-position: top left;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            color: #FFF;
            transition: .3s ease-in-out;
            position: relative; }
            .site-header .header-container #main-menu .menu li:last-child a:hover, .site-header .header-container #main-menu .menu li:last-child a:focus {
              background-position: 100% 0; }
    .site-header .header-container .menu {
      list-style-type: none;
      display: flex;
      padding: 0;
      margin: 0; }

.newsletter {
  width: 100%;
  background: #742F8A url("/wp-content/uploads/2024/08/wiggle-two.png");
  background-size: cover;
  background-position: top right; }
  @media (min-width: 840px) {
    .newsletter {
      background-position: center center; } }
  .newsletter .container {
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap; }
    .newsletter .container .text {
      width: 100%;
      display: flex;
      flex-direction: column;
      width: 100%;
      text-align: center; }
      @media (min-width: 1200px) {
        .newsletter .container .text {
          width: 50%;
          text-align: left; } }
      .newsletter .container .text h2 {
        font-size: calc(2.2rem + 0.2vw);
        font-weight: 900;
        text-transform: uppercase;
        color: #FFF;
        padding: 0;
        margin: 0; }
      .newsletter .container .text p {
        font-size: calc(1rem + 0.2rem);
        color: #FFF;
        padding: 0;
        margin: 0; }
    .newsletter .container .form {
      width: 100%;
      margin-top: 1rem; }
      @media (min-width: 1200px) {
        .newsletter .container .form {
          width: 50%;
          text-align: right; } }
      @media (min-width: 1200px) {
        .newsletter .container .form #mc_embed_signup_scroll {
          text-align: right; } }
      .newsletter .container .form #mc_embed_signup input.email {
        height: 50px;
        text-align: center;
        font-size: 1.1rem; }
      .newsletter .container .form #mc_embed_signup .button {
        height: 50px;
        line-height: 50px;
        background: linear-gradient(125deg, #00C9BA, #C1FCF5, #47FFF3, #00F5E4);
        background-size: 300% 100%;
        background-position: top left;
        padding: 0;
        border-radius: 6px;
        color: #000;
        font-weight: 900;
        transition: .3s ease-in-out;
        position: relative;
        text-transform: uppercase;
        text-decoration-color: transparent;
        display: block;
        font-size: 1.1rem;
        margin-top: 0.5rem; }
        @media (min-width: 767px) {
          .newsletter .container .form #mc_embed_signup .button {
            margin-top: 0;
            padding: 0 1.5rem; } }
        .newsletter .container .form #mc_embed_signup .button:hover, .newsletter .container .form #mc_embed_signup .button:focus {
          background-position: 100% 0; }

.site-footer {
  width: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0 0 0; }
  .site-footer .logo {
    margin-bottom: 2rem; }
    .site-footer .logo img {
      width: 100%;
      max-width: 200px;
      height: auto; }
  .site-footer .socials a {
    margin: 0 0.3rem;
    transition: .3s ease-in-out; }
    .site-footer .socials a iconify-icon {
      color: #FFF;
      border: 1px solid #FFF;
      border-radius: 100px;
      padding: 0.5rem;
      transition: .3s ease-in-out; }
    .site-footer .socials a:hover iconify-icon, .site-footer .socials a:focus iconify-icon {
      background: #FFF;
      color: #000; }
  .site-footer .footer-menu {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center; }
    .site-footer .footer-menu li {
      position: relative;
      padding: 0 2rem;
      display: flex;
      align-items: center; }
      .site-footer .footer-menu li:last-child:after {
        display: none; }
      .site-footer .footer-menu li:after {
        content: "|";
        position: absolute;
        right: 0;
        top: 0;
        color: #FFF; }
      .site-footer .footer-menu li a {
        color: #FFF;
        text-transform: uppercase;
        text-decoration-color: transparent; }
        .site-footer .footer-menu li a:hover, .site-footer .footer-menu li a:focus {
          color: #AE78BF; }
  .site-footer .footer-bottom {
    width: 100%;
    background: #000;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-transform: uppercase; }
    .site-footer .footer-bottom p, .site-footer .footer-bottom a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration-color: transparent;
      text-transform: uppercase; }

.slides {
  max-height: 600px;
  overflow: hidden;
  margin: 0;
  border: 0 !important; }

.slide-img {
  width: 100%;
  height: 600px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative; }
  .slide-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center; }

.blog-main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 576px) {
    .blog-main {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 840px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }
  .blog-main .blog-post {
    width: 100%;
    overflow: hidden;
    text-decoration-color: transparent;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .3s;
    animation-fill-mode: forwards; }
    .blog-main .blog-post:nth-child(2) {
      animation-delay: .5s; }
    .blog-main .blog-post:nth-child(3) {
      animation-delay: .7s; }
    .blog-main .blog-post:nth-child(4) {
      animation-delay: .9s; }
    .blog-main .blog-post:nth-child(5) {
      animation-delay: 1.1s; }
    .blog-main .blog-post:nth-child(6) {
      animation-delay: 1.3s; }
    .blog-main .blog-post .image {
      width: 100%;
      height: 300px;
      border-radius: 10px;
      overflow: hidden; }
      .blog-main .blog-post .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .blog-main .blog-post .title {
      color: #000;
      font-size: 1.2rem;
      font-weight: 600;
      text-transform: uppercase;
      padding: 0;
      margin: 0.5rem 0 0 0; }
    .blog-main .blog-post .meta {
      color: #000;
      font-size: 0.9rem;
      padding: 0;
      margin: 0; }

.blog-navigation {
  width: 100%;
  grid-column: 1/2; }
  @media (min-width: 576px) {
    .blog-navigation {
      grid-column: 1/3; } }
  @media (min-width: 840px) {
    .blog-navigation {
      grid-column: 1/4; } }
  .blog-navigation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; }
    .blog-navigation ul li a {
      padding: 0.2rem 0.5rem;
      border: 1px solid #000;
      color: #000;
      border-radius: 6px;
      margin-right: 0.5rem;
      text-decoration-color: transparent;
      transition: .3s; }
      .blog-navigation ul li a:hover, .blog-navigation ul li a:focus {
        background: #000;
        color: #FFF; }
    .blog-navigation ul .active a {
      background: #742F8A;
      border-color: #742F8A;
      color: #FFF; }

.post-single {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: .8s; }
  .post-single h2 {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600; }
  .post-single h3 {
    font-weight: 600; }
  .post-single h4 {
    font-weight: 600; }
  .post-single .meta {
    font-size: 0.8rem; }
  .post-single li {
    margin-bottom: 1rem; }
    .post-single li:last-child {
      margin-bottom: 0; }
  .post-single a {
    color: #742F8A; }

.share-buttons {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0.5rem 0 0 0; }
  .share-buttons li {
    margin-right: 0.5rem; }
    .share-buttons li a {
      background: #f2f2f2;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      padding: 0.5rem;
      transition: .3s; }
      .share-buttons li a iconify-icon {
        color: #ccc;
        transition: .3s; }
  .share-buttons .share-facebook:hover, .share-buttons .share-facebook:focus {
    background: #4267B2; }
    .share-buttons .share-facebook:hover iconify-icon, .share-buttons .share-facebook:focus iconify-icon {
      color: #FFF; }
  .share-buttons .share-twitter:hover, .share-buttons .share-twitter:focus {
    background: #000; }
    .share-buttons .share-twitter:hover iconify-icon, .share-buttons .share-twitter:focus iconify-icon {
      color: #FFF; }
  .share-buttons .share-linkedin:hover, .share-buttons .share-linkedin:focus {
    background: #0072b1; }
    .share-buttons .share-linkedin:hover iconify-icon, .share-buttons .share-linkedin:focus iconify-icon {
      color: #FFF; }
  .share-buttons .share-email:hover, .share-buttons .share-email:focus {
    background: #742F8A; }
    .share-buttons .share-email:hover iconify-icon, .share-buttons .share-email:focus iconify-icon {
      color: #FFF; }

.single-navigation {
  border-top: 1px solid #f6f6f6;
  padding-top: 2rem;
  margin-top: 2rem; }
  .single-navigation p {
    padding: 0;
    margin: 0 0 0rem 0;
    font-weight: 400;
    display: flex;
    align-items: center; }
    .single-navigation p iconify-icon {
      margin-right: 0.5rem; }
  .single-navigation span {
    font-size: 1.5rem;
    font-weight: 600; }
    .single-navigation span a {
      color: #000;
      text-decoration-color: transparent; }
      .single-navigation span a:hover, .single-navigation span a:focus {
        color: #742F8A; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #000; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #000;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

html {
  box-sizing: border-box;
  font-family: new-hero, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth; }

* {
  box-sizing: inherit; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.js-scroll {
  opacity: 0;
  transition: opacity 500ms; }

.js-scroll.scrolled {
  opacity: 1; }

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
p {
  font-size: 1rem;
  line-height: 1.7rem; }

@font-face {
  font-family: cat;
  src: url(PUSS.ttf); }
.home-video {
  width: 100%;
  height: 100svh;
  position: relative; }
  .home-video video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .home-video .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center; }
    .home-video .overlay .title {
      font-size: calc(2rem + 0.5vw);
      font-weight: 900;
      line-height: 2.3rem;
      text-transform: uppercase;
      padding: 0;
      margin: 0;
      color: transparent;
      -webkit-text-fill-color: none;
      /* Will override color (regardless of order) */
      -webkit-text-stroke-width: 2px;
      -webkit-text-stroke-color: #FFF;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .5s; }
      @media (min-width: 840px) {
        .home-video .overlay .title {
          font-size: calc(2.5rem + 0.5vw);
          line-height: 2.7rem; } }
    .home-video .overlay .subtitle {
      font-size: calc(1rem + 0.2vw);
      font-weight: 400;
      color: #FFF;
      padding: 0;
      margin: 0.5rem 0 0 0;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .7s; }
    .home-video .overlay .scroller {
      -webkit-appearance: none;
      appearance: none;
      background: #FFF;
      border-radius: 100px;
      border: 0;
      padding: 0.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1rem;
      cursor: pointer;
      transition: .3s;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .9s; }
      .home-video .overlay .scroller:hover, .home-video .overlay .scroller:focus {
        background: #742F8A; }
        .home-video .overlay .scroller:hover iconify-icon, .home-video .overlay .scroller:focus iconify-icon {
          color: #FFF; }
      .home-video .overlay .scroller iconify-icon {
        padding: 0;
        margin: 0;
        color: #000; }

.container {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto; }

.std-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto; }

.std-content-small {
  max-width: 1200px; }

.center {
  text-align: center; }

.std-page-content {
  padding: 4rem 2rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: .5s; }
  .std-page-content h2, .std-page-content h3 {
    font-weight: 600; }
  .std-page-content p strong {
    font-weight: 600; }
  .std-page-content p a {
    color: #742F8A; }
  .std-page-content li {
    margin-bottom: 1rem; }
    .std-page-content li:last-child {
      margin-bottom: 0; }

.btn, #gform_submit_button_1, #gform_submit_button_2 {
  background: linear-gradient(125deg, #00C9BA, #C1FCF5, #47FFF3, #00F5E4);
  background-size: 300% 100%;
  background-position: top left;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  color: #000;
  font-weight: 600;
  transition: .3s ease-in-out;
  position: relative;
  text-transform: uppercase;
  text-decoration-color: transparent; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus, #gform_submit_button_2:hover, #gform_submit_button_2:focus {
    background-position: 100% 0; }

.home-text {
  padding: 4rem 2rem; }
  @media (min-width: 840px) {
    .home-text {
      padding: 6rem 2rem; } }
  .home-text h1 {
    font-size: calc(2rem + 0.5vw);
    line-height: 2.3rem;
    padding: 0;
    margin: 0;
    color: #742F8A;
    text-transform: uppercase; }
    @media (min-width: 840px) {
      .home-text h1 {
        font-size: calc(2.5rem + 0.5vw);
        line-height: 2.7rem; } }
  .home-text h2 {
    font-size: calc(1.2rem + 0.2vw);
    line-height: 1.8rem;
    padding: 0;
    margin: 0.5rem 0 0 0;
    text-transform: uppercase;
    font-weight: 400; }
  .home-text p {
    max-width: 900px;
    margin: 1.5rem auto; }
  .home-text .btn {
    margin-top: 1rem;
    display: inline-flex; }

.our-teams {
  background: linear-gradient(90deg, #ae78bf 0%, #742f80 100%);
  overflow: visible;
  height: auto; }
  @media (min-width: 992px) {
    .our-teams {
      height: 400px;
      margin-bottom: 6rem; } }
  .our-teams .container {
    padding: 4rem 0;
    text-align: center;
    max-width: none; }
    @media (min-width: 840px) {
      .our-teams .container {
        padding: 4rem 2rem; } }
    .our-teams .container h2 {
      font-weight: 900;
      text-transform: uppercase;
      color: #FFF;
      font-size: calc(2.2rem + 0.5vw);
      line-height: 3rem;
      padding: 0;
      margin: 0 0 3rem 0; }
    .our-teams .container .teams {
      width: 100%;
      max-width: 2000px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 0 2rem; }
      @media (min-width: 992px) {
        .our-teams .container .teams {
          padding: 0; } }
      .our-teams .container .teams .box {
        width: 100%;
        margin-bottom: 2rem;
        background: #FFF;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 -1px 15px 0 rgba(0, 0, 0, 0.15);
        border: 1px solid #eee;
        text-align: center;
        text-decoration-color: transparent;
        transition: .3s ease-in-out; }
        @media (min-width: 500px) {
          .our-teams .container .teams .box {
            width: 48%;
            margin: 0 2% 2rem 0; }
            .our-teams .container .teams .box:nth-child(even) {
              margin: 0 0 2rem 2%; } }
        @media (min-width: 840px) {
          .our-teams .container .teams .box {
            width: 30%;
            margin: 0 0 2rem 0; }
            .our-teams .container .teams .box:nth-child(2) {
              margin: 0 5% 2rem 5%; }
            .our-teams .container .teams .box:nth-child(4) {
              margin-right: 2.5%; }
            .our-teams .container .teams .box:nth-child(5) {
              margin-left: 2.5%; } }
        @media (min-width: 992px) {
          .our-teams .container .teams .box {
            width: 18%;
            margin: 0 1% !important; } }
        .our-teams .container .teams .box:hover, .our-teams .container .teams .box:focus {
          transform: translateY(-1rem); }
        .our-teams .container .teams .box img {
          width: 100%;
          max-width: 180px;
          height: auto;
          margin: 0 auto;
          margin-bottom: 1rem; }
        .our-teams .container .teams .box h3 {
          color: #000;
          text-transform: uppercase;
          font-size: calc(1rem + 0.2vw);
          font-weight: 900;
          padding: 1rem 0 0.5rem 0;
          margin: 0; }
        .our-teams .container .teams .box p {
          color: #000;
          padding: 0;
          margin: 0;
          font-size: 1rem; }

.home-news {
  width: 100%;
  position: relative;
  padding: 4rem 0; }
  @media (min-width: 840px) {
    .home-news {
      padding: 4rem 2rem; } }
  .home-news h2 {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0;
    font-size: calc(2.5rem + 0.5vw);
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #742F8A;
    text-align: center; }
    @media (min-width: 992px) {
      .home-news h2 {
        text-align: left;
        padding-left: 1rem; } }
  .home-news .news-feed, .home-news .comp-feed {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    position: relative; }
  .home-news .slick-arrows-two, .home-news .slick-arrows-three {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 2000px;
    padding: 0 3rem;
    text-align: center;
    margin-top: 2rem; }
    @media (min-width: 992px) {
      .home-news .slick-arrows-two, .home-news .slick-arrows-three {
        position: absolute;
        text-align: right;
        top: 76px;
        margin-top: 0; } }
    .home-news .slick-arrows-two button, .home-news .slick-arrows-three button {
      -webkit-appearance: none;
      appearance: none;
      background: #742F8A;
      border: 0;
      border-radius: 100%;
      padding: 0.5rem;
      cursor: pointer; }
      .home-news .slick-arrows-two button:hover, .home-news .slick-arrows-two button:focus, .home-news .slick-arrows-three button:hover, .home-news .slick-arrows-three button:focus {
        background: #000; }
      .home-news .slick-arrows-two button iconify-icon, .home-news .slick-arrows-three button iconify-icon {
        color: #FFF; }
  .home-news .blog-post {
    margin: 0 1rem;
    text-align: center;
    text-decoration-color: transparent; }
    @media (min-width: 992px) {
      .home-news .blog-post {
        text-align: left; } }
    .home-news .blog-post .image {
      border-radius: 10px;
      overflow: hidden;
      height: 300px; }
      .home-news .blog-post .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .home-news .blog-post .title {
      font-size: 1.3rem;
      font-weight: 900;
      text-transform: uppercase;
      margin: 0.5rem 0 0 0;
      padding: 0;
      color: #000; }
    .home-news .blog-post .meta {
      padding: 0;
      margin: 0;
      font-size: 0.8rem;
      color: #000; }

.why-join {
  width: 100%;
  background: linear-gradient(90deg, #ae78bf 0%, #742f80 100%);
  padding: 6rem 0; }
  .why-join h2 {
    font-size: calc(2.5rem + 0.5vw);
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 4rem 0;
    text-align: center;
    color: #FFF; }
  .why-join .boxes {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem; }
    @media (min-width: 840px) {
      .why-join .boxes {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 4rem; } }
    .why-join .boxes .box {
      text-align: center; }
      .why-join .boxes .box img {
        width: 100%;
        max-width: 125px; }
      .why-join .boxes .box h3 {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 0;
        margin: 0;
        color: #FFF; }
      .why-join .boxes .box p {
        padding: 0;
        margin: 0;
        color: #FFF; }

.home-coaching {
  width: 100%;
  height: 500px;
  position: relative;
  background-size: cover !important;
  background-attachment: fixed !important;
  background-position: center center !important; }
  @media (hover: none) {
    .home-coaching {
      background-attachment: scroll !important; } }
  .home-coaching .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (min-width: 1201px) {
      .home-coaching .overlay {
        justify-content: flex-start;
        max-width: 2000px;
        margin: 0 auto;
        right: 0;
        padding: 0 2.2rem; } }
    .home-coaching .overlay .content {
      top: 20%;
      left: 10%;
      width: 80%;
      height: 60%;
      background: rgba(116, 47, 138, 0.8);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-radius: 6px; }
      @media (min-width: 1201px) {
        .home-coaching .overlay .content {
          width: 500px;
          background: #742F8A;
          align-items: flex-start;
          text-align: left; } }
    .home-coaching .overlay h2 {
      font-size: calc(2.2rem + 0.2vw);
      padding: 0;
      margin: 0;
      color: #FFF;
      text-transform: uppercase; }
    .home-coaching .overlay p {
      padding: 0;
      margin: 0;
      color: #FFF; }
    .home-coaching .overlay .btn {
      display: inline-block;
      margin-top: 2rem; }

.page-header {
  width: 100%;
  height: 350px;
  background: #742F8A url("/wp-content/uploads/2024/08/wiggle-two.png");
  background-size: cover;
  background-position: top left;
  position: relative; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0); }
  .page-header h1 {
    font-size: calc(3rem + 0.5vw);
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    animation: fadeup 2s ease;
    color: transparent;
    -webkit-text-fill-color: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FFF; }

.about-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .7s;
  animation-fill-mode: forwards; }
  .about-content .wp-block-media-text {
    grid-template-columns: 1fr; }
    @media (min-width: 840px) {
      .about-content .wp-block-media-text {
        grid-template-columns: 1fr 1fr; } }
    .about-content .wp-block-media-text .wp-block-media-text__content {
      padding: 2rem 0 0 0;
      grid-column: 1;
      grid-row: 2; }
      @media (min-width: 840px) {
        .about-content .wp-block-media-text .wp-block-media-text__content {
          grid-row: 1;
          grid-column: 2;
          padding: 4rem 0 4rem 2rem; } }
      .about-content .wp-block-media-text .wp-block-media-text__content h2 {
        font-size: calc(2.2rem + 0.2vw);
        line-height: 2rem;
        padding: 0;
        margin: 0 0 1rem 0;
        text-transform: uppercase;
        color: #742F8A; }
    .about-content .wp-block-media-text .wp-block-media-text__media {
      grid-column: 1;
      min-height: 350px;
      border-radius: 16px;
      overflow: hidden; }
      @media (min-width: 840px) {
        .about-content .wp-block-media-text .wp-block-media-text__media {
          grid-row: 1;
          grid-column: 1; } }
  .about-content .wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 1fr; }
    @media (min-width: 840px) {
      .about-content .wp-block-media-text.has-media-on-the-right {
        grid-template-columns: 1fr 1fr; } }
    .about-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
      grid-column: 1;
      min-height: 350px; }
      @media (min-width: 840px) {
        .about-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
          grid-column: 2;
          grid-row: 1; } }
    .about-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
      grid-column: 1;
      grid-row: 2; }
      @media (min-width: 840px) {
        .about-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
          grid-column: 1;
          grid-row: 1;
          padding: 4rem 2rem 4rem 0; } }

.cta-banner {
  width: 100%;
  background: #FFF;
  padding: 8rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; }
  .cta-banner h2 {
    font-size: calc(2.2rem + 0.5vw);
    text-transform: uppercase;
    padding: 0;
    margin: 0; }
  .cta-banner p {
    margin: 0; }
  .cta-banner .btn {
    margin-top: 2rem;
    display: inline-flex;
    font-size: 1.2rem;
    letter-spacing: 0.1rem; }

.about-teams {
  width: 100%;
  background: linear-gradient(90deg, #ae78bf 0%, #742f80 100%);
  padding: 4rem 0;
  text-align: center; }
  .about-teams h2 {
    font-size: calc(2.2rem + 0.5vw);
    line-height: 3rem;
    text-transform: uppercase;
    color: #FFF;
    padding: 0;
    margin: 0; }
  .about-teams p {
    color: #FFF; }
  .about-teams .about-teams-feed {
    width: 100%;
    margin-top: 2rem; }
    .about-teams .about-teams-feed .box {
      width: 100%;
      margin: 0 1rem;
      position: relative;
      text-decoration-color: transparent;
      border-radius: 10px;
      overflow: hidden; }
      .about-teams .about-teams-feed .box:hover .content img, .about-teams .about-teams-feed .box:focus .content img {
        transform: scale(1.1, 1.1); }
      .about-teams .about-teams-feed .box .image {
        width: 100%;
        height: 350px;
        border-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        overflow: hidden;
        position: relative; }
        .about-teams .about-teams-feed .box .image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .about-teams .about-teams-feed .box .content {
        padding: 1rem;
        position: absolute;
        width: 100%;
        height: 100%;
        background: none;
        top: 0;
        display: flex;
        align-items: flex-end; }
        .about-teams .about-teams-feed .box .content img {
          width: 100%;
          height: auto;
          max-width: 80px;
          height: auto;
          transition: .3s; }

.slick-arrows-four {
  margin-top: 2rem; }
  .slick-arrows-four button {
    -webkit-appearance: none;
    appearance: none;
    background: #FFF;
    border: 0;
    border-radius: 100%;
    padding: 0.5rem;
    cursor: pointer; }
    .slick-arrows-four button:hover, .slick-arrows-four button:focus {
      background: #000; }
      .slick-arrows-four button:hover iconify-icon, .slick-arrows-four button:focus iconify-icon {
        color: #FFF; }
    .slick-arrows-four button iconify-icon {
      color: #742F8A; }

.contact-page {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .7s;
  animation-fill-mode: forwards; }
  .contact-page .gfield_label {
    font-weight: 400 !important; }
  .contact-page input[type='text'], .contact-page input[type='email'], .contact-page input[type='tel'] {
    height: 50px;
    background: #f6f6f6;
    border: 0;
    border-radius: 10px; }
  .contact-page textarea {
    background: #f6f6f6;
    border: 0;
    border-radius: 10px; }
  .contact-page .gfield--type-consent {
    text-align: center; }
  .contact-page .ginput_container_consent a {
    color: #000; }
  .contact-page .gform_footer {
    justify-content: center;
    align-items: center; }
  .contact-page #gform_submit_button_1 {
    font-size: 1.2rem;
    font-weight: 400; }

.teams-main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3rem; }
  @media (min-width: 840px) {
    .teams-main {
      grid-template-columns: repeat(3, 1fr); } }
  .teams-main .box {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .3s;
    animation-fill-mode: forwards; }
    .teams-main .box:nth-child(2) {
      animation-delay: .5s; }
    .teams-main .box:nth-child(3) {
      animation-delay: .7s; }
    .teams-main .box:nth-child(4) {
      animation-delay: .9s; }
    .teams-main .box:nth-child(5) {
      animation-delay: 1.1s; }
    .teams-main .box:hover .content img, .teams-main .box:focus .content img {
      transform: scale(1.1, 1.1); }
    .teams-main .box .image {
      width: 100%;
      height: 350px;
      position: relative;
      overflow: hidden; }
      .teams-main .box .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s; }
    .teams-main .box .content {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      padding: 1rem;
      display: flex;
      align-items: flex-end; }
      .teams-main .box .content img {
        width: 100%;
        max-width: 80px;
        transition: .3s; }

.box-coach {
  height: 350px;
  position: relative; }
  .box-coach:hover img, .box-coach:focus img {
    transform: scale(1.1, 1.1); }
  .box-coach img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: .3s; }
  .box-coach .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center; }
    .box-coach .overlay p {
      font-size: 1.5rem;
      font-weight: 600;
      color: #FFF;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      padding: 0;
      margin: 0; }

.single-team-block {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  .single-team-block article {
    width: 100%;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    margin-bottom: 2rem; }
    @media (min-width: 840px) {
      .single-team-block article {
        width: 60%;
        margin-bottom: 0; } }
    .single-team-block article h2 {
      font-size: calc(2rem + 0.5vw);
      line-height: 2.5rem;
      color: #742F8A;
      padding: 0;
      margin: 0 0 2rem 0;
      font-weight: 600; }
  .single-team-block aside {
    width: 100%;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .5s;
    animation-fill-mode: forwards; }
    @media (min-width: 840px) {
      .single-team-block aside {
        width: 30%;
        margin-left: 10%; } }
    .single-team-block aside img {
      width: 100%; }
    .single-team-block aside .box {
      border: 2px solid #00C9BA;
      border-radius: 10px;
      padding: 2rem; }
      .single-team-block aside .box iconify-icon {
        color: #742F8A; }
    .single-team-block aside .cta {
      background: #00C9BA;
      padding: 2rem;
      border-radius: 10px;
      margin-top: 2rem; }
      .single-team-block aside .cta h2 {
        font-weight: 600;
        padding: 0;
        margin: 0; }
      .single-team-block aside .cta p {
        padding: 0;
        margin: 0; }
      .single-team-block aside .cta .btn {
        margin-top: 1rem;
        display: inline-block;
        background: #742F8A;
        color: #FFF; }

.membership-form {
  background: #f2f2f2;
  padding: 2rem; }
  .membership-form .gfield_label {
    font-weight: 400 !important; }
  .membership-form input[type='text'], .membership-form input[type='email'], .membership-form input[type='tel'] {
    height: 50px;
    background: #FFF;
    border: 0;
    border-radius: 10px; }
  .membership-form textarea {
    background: #FFF;
    border: 0;
    border-radius: 10px; }
  .membership-form select {
    -webkit-appearance: menulist-button;
    height: 40px;
    border: 0;
    background: #FFF !important;
    border-radius: 20px; }
  .membership-form #gform_submit_button_2 {
    font-size: 1.2rem;
    font-weight: 400; }

.purple-box {
  background: #742F8A;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration-color: transparent;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: 1.3s;
  animation-fill-mode: forwards; }
  .purple-box h2 {
    color: #FFF;
    font-weight: 600;
    padding: 0;
    margin: 0; }
  .purple-box p {
    color: #FFF;
    padding: 0;
    margin: 0; }
  .purple-box .btn {
    margin-top: 2rem; }

/* animation css
opacity: 0;
      -webkit-animation: fadein 2s;
      -moz-animation: fadein 2s;
      -ms-animation: fadein 2s;
      -o-animation: fadein 2s;
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards;   */

/*# sourceMappingURL=style.css.map */
