/*
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 */
* {
  font-family: "work-sans", sans-serif; }

html, body {
  font-size: 16px; }

p {
  font-size: 1.1rem;
  padding: 0;
  margin: 1rem 0 0 0; }

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@-moz-keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.site-header {
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee; }
  .site-header .toolbar {
    width: 100%;
    background: #19417C;
    padding: 0;
    color: #FFF; }
    .site-header .toolbar .iconify {
      width: 20px;
      height: 20px;
      color: #FFF;
      margin-right: 0.5rem;
      transition: .3s;
      padding: 0; }
      .site-header .toolbar .iconify:hover, .site-header .toolbar .iconify:focus {
        color: #C3396C; }
    .site-header .toolbar .socials {
      display: none; }
      @media (min-width: 850px) {
        .site-header .toolbar .socials {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          width: 50%; } }
    .site-header .toolbar .contact {
      width: 100%;
      text-align: center;
      font-size: 1.1rem; }
      @media (min-width: 850px) {
        .site-header .toolbar .contact {
          width: 50%;
          text-align: right; } }
      .site-header .toolbar .contact a {
        color: #FFF;
        text-decoration-color: transparent; }
  .site-header .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem; }
  .site-header .logo img {
    max-width: 7rem;
    height: auto;
    display: block; }

#mobile-menu {
  position: fixed;
  width: 100%;
  max-width: 500px;
  height: 100%;
  right: -500px;
  background: #FFF;
  transition: .3s ease-in-out;
  z-index: 300;
  top: 0;
  margin-top: 0;
  padding: 1rem; }
  #mobile-menu.active {
    right: 0;
    transition-delay: .3s; }
  @media (min-width: 992px) {
    #mobile-menu {
      display: none; } }
  #mobile-menu .contact {
    position: fixed;
    bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: #282438; }
    #mobile-menu .contact a {
      color: #282438;
      text-decoration-color: transparent; }
    #mobile-menu .contact .iconify {
      color: #C3396C;
      width: 25px;
      height: 25px; }
  #mobile-menu .menu {
    list-style-type: none;
    padding: 0;
    margin: 4rem 0 0 0; }
    #mobile-menu .menu li {
      border-bottom: 1px solid #EEE;
      padding: 0.5rem 0; }
      #mobile-menu .menu li a {
        font-size: 1.3rem;
        color: #282438;
        text-decoration-color: transparent;
        transition: .3s ease-in-out;
        position: relative;
        overflow: hidden;
        display: block;
        padding: 0.5rem 0; }
        #mobile-menu .menu li a:before {
          content: ' ';
          position: absolute;
          bottom: 2px;
          left: -50px;
          width: 50px;
          height: 2px;
          background: #C3396C;
          transition: .3s ease-in-out; }
        #mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
          color: #282438; }
          #mobile-menu .menu li a:hover:before, #mobile-menu .menu li a:focus:before {
            left: 0; }
    #mobile-menu .menu .menu-item-33 {
      border: 0; }
      #mobile-menu .menu .menu-item-33 a {
        margin-top: 1rem;
        border-radius: 40px;
        background: linear-gradient(120deg, #C3396C 10%, #774D8A 100%);
        background-size: 200% 200%;
        background-position: top left;
        padding: 0.5rem 1.2rem;
        display: inline-block;
        color: #FFF;
        font-size: 1.2rem;
        transition: .3s ease-in-out; }
        #mobile-menu .menu .menu-item-33 a:hover, #mobile-menu .menu .menu-item-33 a:focus {
          background-position: bottom right;
          color: #FFF; }
    #mobile-menu .menu .menu-item-19 {
      position: relative; }
      #mobile-menu .menu .menu-item-19:after {
        content: ' ';
        position: absolute;
        top: 20px;
        right: 0;
        width: 20px;
        height: 20px;
        background: url("https://api.iconify.design/iconamoon/arrow-up-2-thin.svg?rotate=90deg");
        background-size: contain;
        background-position: center center; }
    #mobile-menu .menu .sub-menu {
      opacity: 0;
      visibility: hidden;
      height: 0;
      transition: .3s ease-in-out;
      padding: 0 1rem;
      margin: 0;
      background: #fafafa; }
      #mobile-menu .menu .sub-menu li a {
        font-size: 1rem; }
      #mobile-menu .menu .sub-menu.active {
        opacity: 1;
        visibility: visible;
        height: 380px;
        margin-top: 1.1rem; }

#close-button {
  background: #19417C;
  position: absolute;
  right: 2rem;
  top: 1rem;
  border: 0;
  border-radius: 6px;
  padding: 0.5rem;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s ease-in-out; }
  #close-button:hover, #close-button:focus {
    background: #C3396C; }
  #close-button .iconify {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0; }

#mobile-button {
  -webkit-appearance: none;
  appearance: none;
  background: #19417C;
  border: 0;
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s; }
  #mobile-button:hover, #mobile-button:focus {
    background: #C3396C; }
  #mobile-button .iconify {
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
    color: #FFF; }
  @media (min-width: 992px) {
    #mobile-button {
      display: none; } }

#main-menu {
  display: none; }
  @media (min-width: 992px) {
    #main-menu {
      display: flex;
      padding: 0;
      margin: 0; } }
  #main-menu .menu-main-menu-container {
    display: flex; }
  #main-menu .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center; }
    #main-menu .menu li {
      margin-left: 1.2rem;
      display: flex;
      align-items: center; }
      #main-menu .menu li a {
        font-size: 1rem;
        color: #000;
        text-decoration-color: transparent;
        position: relative;
        overflow: hidden !important;
        display: inline-flex;
        transition: .3s;
        text-transform: uppercase;
        padding: 0.5rem 0; }
        #main-menu .menu li a:before {
          content: ' ';
          position: absolute;
          width: 50px;
          height: 2px;
          background: #C3396C;
          bottom: 0;
          left: -50px;
          transition: .3s; }
        #main-menu .menu li a:hover, #main-menu .menu li a:focus {
          color: #282438; }
          #main-menu .menu li a:hover:before, #main-menu .menu li a:focus:before {
            left: 0; }
    #main-menu .menu .menu-item-19 {
      position: relative; }
      #main-menu .menu .menu-item-19:hover .sub-menu, #main-menu .menu .menu-item-19:focus .sub-menu, #main-menu .menu .menu-item-19.active .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 2.7rem; }
      #main-menu .menu .menu-item-19 a {
        padding-right: 20px; }
        #main-menu .menu .menu-item-19 a:after {
          content: ' ';
          position: absolute;
          top: 0.5rem;
          right: 0px;
          width: 20px;
          height: 20px;
          background: url("https://api.iconify.design/iconamoon/arrow-up-2-thin.svg?rotate=180deg");
          background-size: contain;
          background-position: center center; }
    #main-menu .menu .menu-item-33 {
      overflow: visible; }
      #main-menu .menu .menu-item-33 a {
        background: linear-gradient(120deg, #C3396C 10%, #742240 100%);
        background-size: 200% 200%;
        background-position: top left;
        color: #FFF;
        border-radius: 60px;
        padding: 0.8rem 1.2rem;
        transition: .3s ease-in-out; }
        #main-menu .menu .menu-item-33 a:hover, #main-menu .menu .menu-item-33 a:focus {
          background-position: top right;
          color: #FFF; }
        #main-menu .menu .menu-item-33 a:before {
          display: none !important; }
  #main-menu .sub-menu {
    position: absolute;
    top: 3rem;
    left: 0;
    background: #FFF;
    width: 300px;
    border-radius: 20px;
    padding: 1rem;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    transition: .3s; }
    #main-menu .sub-menu li {
      margin-left: 0;
      margin-bottom: 0.5rem;
      height: auto; }
    #main-menu .sub-menu a:after {
      display: none; }

.calendly-button {
  margin-top: 1rem;
  display: flex; }
  @media (min-width: 992px) {
    .calendly-button {
      margin-top: 0;
      margin-left: 1rem; } }
  .calendly-button a {
    background: linear-gradient(120deg, #C3396C 10%, #742240 100%);
    background-size: 200% 200%;
    background-position: top left;
    color: #FFF;
    border-radius: 60px;
    padding: 0.8rem 1.2rem;
    transition: .3s ease-in-out;
    text-decoration-color: transparent;
    text-transform: uppercase; }

.site-footer {
  background: #FFF; }
  .site-footer .container {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    text-align: center; }
    @media (min-width: 992px) {
      .site-footer .container {
        text-align: left; } }
    .site-footer .container .box {
      width: 100%;
      margin-bottom: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start; }
      .site-footer .container .box:last-child {
        margin-bottom: 0; }
      @media (min-width: 850px) {
        .site-footer .container .box {
          width: 33.3333333%; }
          .site-footer .container .box:nth-child(1) {
            width: 100%; } }
      @media (min-width: 992px) {
        .site-footer .container .box {
          align-items: flex-start;
          padding: 0 1rem;
          margin-bottom: 0; }
          .site-footer .container .box:nth-child(1) {
            width: 20%; }
          .site-footer .container .box:nth-child(2), .site-footer .container .box:nth-child(3) {
            width: 25%; }
          .site-footer .container .box:nth-child(4) {
            width: 30%; } }
      .site-footer .container .box img {
        margin-bottom: 2rem; }
      .site-footer .container .box address {
        font-style: normal;
        font-size: 1rem;
        max-width: 300px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem; }
        @media (min-width: 850px) {
          .site-footer .container .box address {
            flex-direction: row;
            max-width: none; }
            .site-footer .container .box address .iconify {
              margin-right: 0.5rem; } }
        .site-footer .container .box address .iconify {
          background: none;
          padding: 0;
          color: #282438;
          width: 30px;
          height: 30px; }
      .site-footer .container .box .email {
        display: flex;
        align-items: center;
        margin-bottom: 1rem; }
        .site-footer .container .box .email .iconify {
          background: none;
          padding: 0;
          color: #282438;
          width: 30px;
          height: 30px; }
          @media (min-width: 850px) {
            .site-footer .container .box .email .iconify .iconify {
              margin-right: 0.5rem; } }
      .site-footer .container .box .phone {
        display: flex;
        align-items: center;
        margin-bottom: 1rem; }
        .site-footer .container .box .phone .iconify {
          padding: 0;
          background: none;
          width: 30px;
          height: 30px;
          color: #282438;
          border-radius: 0; }
          @media (min-width: 850px) {
            .site-footer .container .box .phone .iconify .iconify {
              margin-right: 0.5rem; } }
      .site-footer .container .box .opening-hours {
        display: flex;
        align-items: center; }
        .site-footer .container .box .opening-hours .iconify {
          padding: 0;
          background: none;
          width: 30px;
          height: 30px;
          color: #282438;
          border-radius: 0; }
          @media (min-width: 850px) {
            .site-footer .container .box .opening-hours .iconify .iconify {
              margin-right: 0.5rem; } }
      .site-footer .container .box a {
        color: #000;
        font-size: 1rem;
        text-decoration-color: transparent; }
        .site-footer .container .box a:hover, .site-footer .container .box a:focus {
          color: #C3396C; }
      .site-footer .container .box p {
        padding: 0;
        margin: 0;
        font-size: 1rem; }
      .site-footer .container .box .iconify {
        background: #282438;
        width: 40px;
        height: 40px;
        padding: 0.5rem;
        border-radius: 100%;
        color: #FFF;
        margin: 0 0.2rem;
        transition: .3s; }
        .site-footer .container .box .iconify:hover, .site-footer .container .box .iconify:focus {
          background: #C3396C; }
      .site-footer .container .box h4 {
        font-size: 1.2rem;
        text-transform: uppercase;
        font-weight: 400;
        color: #282438;
        letter-spacing: 0.1rem;
        padding: 0;
        margin: 0 0 0.5rem 0; }
      .site-footer .container .box ul {
        list-style-type: none;
        padding: 0;
        margin: 0; }
        .site-footer .container .box ul li {
          margin-bottom: 0.5rem; }
          .site-footer .container .box ul li:last-child {
            margin-bottom: 0; }
          .site-footer .container .box ul li a {
            font-size: 1rem;
            color: #000;
            text-decoration-color: transparent; }
            .site-footer .container .box ul li a:hover, .site-footer .container .box ul li a:focus {
              color: #C3396C; }
        .site-footer .container .box ul .sub-menu {
          display: none; }
  .site-footer .footer-bottom {
    width: 100%;
    background: #F5F8FE; }
    .site-footer .footer-bottom .container {
      padding: 1rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
      .site-footer .footer-bottom .container a {
        color: #000;
        text-decoration-color: transparent; }

.carousel {
  position: relative; }
  .carousel .carousel-container {
    width: 100%;
    height: 450px;
    position: relative; }
    @media (min-width: 850px) {
      .carousel .carousel-container {
        height: 500px; } }
    .carousel .carousel-container li {
      height: 450px;
      position: relative; }
      @media (min-width: 850px) {
        .carousel .carousel-container li {
          height: 500px; } }
      .carousel .carousel-container li img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .carousel .carousel-container li .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #282438 12%, rgba(0, 0, 0, 0) 100%);
        display: flex;
        align-items: center;
        justify-content: flex-start; }
        .carousel .carousel-container li .overlay .container {
          padding: 2rem; }
          .carousel .carousel-container li .overlay .container .title {
            font-size: 1.8rem;
            line-height: 2.5rem;
            font-weight: 400;
            max-width: 600px;
            color: #FFF;
            padding: 0;
            margin: 0; }
            @media (min-width: 850px) {
              .carousel .carousel-container li .overlay .container .title {
                font-size: 2.2rem;
                line-height: 3rem; } }
          .carousel .carousel-container li .overlay .container .description {
            font-size: 1.1rem;
            color: #FFF;
            padding: 0;
            margin: 1rem 0;
            max-width: 600px; }
          .carousel .carousel-container li .overlay .container a {
            background: linear-gradient(120deg, #C3396C 10%, #774D8A 100%);
            background-size: 200% 200%;
            background-position: top left;
            color: #FFF;
            margin-top: 1rem;
            border-radius: 40px;
            padding: 0.8rem 1.5rem;
            font-size: 1.1rem;
            text-decoration-color: transparent;
            transition: .3s ease-in-out;
            display: inline-flex;
            align-items: center;
            justify-content: center; }
            @media (min-width: 850px) {
              .carousel .carousel-container li .overlay .container a {
                font-size: 1.3rem; } }
            .carousel .carousel-container li .overlay .container a .iconify {
              width: 20px;
              height: 20px;
              margin-right: 0.5rem; }
            .carousel .carousel-container li .overlay .container a:hover, .carousel .carousel-container li .overlay .container a:focus {
              background-position: top right; }
  .carousel .slide-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem 2rem; }
    .carousel .slide-dots .slick-dots {
      list-style-type: none;
      padding: 0;
      margin: 0;
      display: flex; }
      .carousel .slide-dots .slick-dots button {
        -webkit-appearance: none;
        appearance: none;
        border: 0;
        cursor: pointer;
        background: #FFF;
        color: #FFF;
        font-size: 0;
        padding: 0.4rem;
        margin-right: 0.7rem; }
    .carousel .slide-dots .slick-active button {
      background: #C3396C;
      color: #C3396C; }

.blog-page {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem; }

.blog-header h1 {
  color: #282438;
  position: relative; }
  .blog-header h1:after {
    content: ' ';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100px;
    height: 4px;
    background: #C3396C; }

.blog-main {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards; }
  @media (min-width: 850px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }

.blog-navigation {
  grid-column: 1/2; }
  @media (min-width: 850px) {
    .blog-navigation {
      grid-column: 1/4; } }
  .blog-navigation ul {
    display: flex;
    padding: 0;
    margin: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    list-style-type: none; }
    .blog-navigation ul li {
      margin: 0 0.4rem; }
      .blog-navigation ul li a {
        border: 1px solid #19417C;
        border-radius: 6px;
        padding: 0.5rem;
        text-decoration-color: transparent;
        color: #000; }
        .blog-navigation ul li a:hover, .blog-navigation ul li a:focus {
          color: #19417C; }
      .blog-navigation ul li.active a {
        background: #19417C;
        color: #000; }

.blog-post {
  text-align: left;
  text-decoration-color: transparent; }
  .blog-post .image {
    width: 100%;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem; }
    .blog-post .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .blog-post .title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #282438; }
  .blog-post .meta {
    font-size: 0.8rem;
    color: #C3396C;
    padding: 0;
    margin: 0; }

.single-blog {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  .single-blog .blog-header {
    width: 100%; }
    .single-blog .blog-header h1 {
      margin-bottom: 1rem; }

.single-blog-post {
  width: 100%; }
  @media (min-width: 850px) {
    .single-blog-post {
      width: 60%;
      margin-right: 10%; } }
  .single-blog-post .meta {
    font-size: 0.8rem;
    color: #C3396C;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem; }
  .single-blog-post .image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    display: block; }
    .single-blog-post .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .single-blog-post h2, .single-blog-post h3, .single-blog-post h4, .single-blog-post h5, .single-blog-post h6 {
    color: #282438;
    margin: 2rem 0 1rem 0;
    padding: 0; }
  .single-blog-post a {
    color: #C3396C; }

.sidebar {
  width: 100%; }
  @media (min-width: 850px) {
    .sidebar {
      width: 30%; } }
  .sidebar h3 {
    font-size: calc(1.2rem + 0.5vw);
    font-weight: 400;
    text-transform: uppercase;
    color: #282438; }
  .sidebar .wp-block-latest-posts.wp-block-latest-posts__list li {
    margin-bottom: 3rem; }
  .sidebar .wp-block-latest-posts__featured-image img {
    border-radius: 10px; }
  .sidebar .wp-block-latest-posts__post-title {
    font-size: calc(1rem + 0.2vw);
    color: #282438;
    text-decoration-color: transparent; }
  .sidebar .wp-block-latest-posts__post-date {
    color: #C3396C;
    text-transform: uppercase;
    letter-spacing: 0.2rem; }

.share-article {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  border-top: 1px solid #ccc;
  padding-top: 1rem; }
  .share-article .share-buttons {
    width: 100%;
    display: inline-flex;
    list-style-type: none;
    padding: 0;
    margin: 1rem 0 0 0; }
    .share-article .share-buttons li {
      display: block; }
    .share-article .share-buttons .iconify {
      width: 25px;
      height: 25px;
      color: #282438;
      margin-right: 0.5rem; }
      .share-article .share-buttons .iconify:hover, .share-article .share-buttons .iconify:focus {
        color: #C3396C; }

.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; }

* {
  box-sizing: inherit; }

.btn {
  background: linear-gradient(120deg, #C3396C 10%, #774D8A 100%);
  background-size: 200% 200%;
  background-position: top left;
  color: #FFF;
  margin-top: 1rem;
  border-radius: 40px;
  padding: 0.5rem 1.5rem;
  font-size: 1.1rem;
  text-decoration-color: transparent;
  transition: .3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center; }
  @media (min-width: 850px) {
    .btn {
      font-size: 1.3rem; } }
  .btn .iconify {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem; }
  .btn:hover, .btn:focus {
    background-position: top right; }

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

.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; } }
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto; }

.page-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out; }
  @media (min-width: 992px) {
    .page-overlay {
      display: none; } }
  .page-overlay.active {
    opacity: 1;
    visibility: visible; }

h1, h2 {
  font-size: calc(2rem + 0.5vw);
  line-height: calc(2rem + 0.5vw);
  font-weight: 400;
  color: #FFF;
  text-transform: uppercase;
  margin: 0 0 4rem 0;
  padding: 0; }

.home-text {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center; }
  .home-text h1 {
    color: #19417C;
    margin-bottom: 2rem;
    text-transform: uppercase; }
  .home-text a {
    margin-top: 2rem; }

.home-services {
  width: 100%;
  background: #282438; }
  .home-services .container {
    padding: 4rem 0;
    text-align: center;
    max-width: none; }
    .home-services .container h2 {
      color: #FFF;
      margin: 0;
      font-size: calc(2rem + 0.5vw);
      position: relative;
      margin-bottom: 3rem; }
      .home-services .container h2:after {
        content: ' ';
        position: absolute;
        bottom: -1rem;
        width: 100px;
        height: 4px;
        background: #C3396C;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 10px; }
    .home-services .container p {
      color: #FFF;
      max-width: 800px;
      margin: 0 auto; }
    .home-services .container .services {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      margin-top: 4rem;
      position: relative; }
      .home-services .container .services a {
        color: #FFF;
        text-decoration-color: transparent;
        width: 100%;
        margin-bottom: 2rem; }
        .home-services .container .services a:hover .iconify, .home-services .container .services a:focus .iconify {
          background: #282438;
          color: #FFF; }
        @media (min-width: 400px) {
          .home-services .container .services a {
            width: 50%; } }
        @media (min-width: 850px) {
          .home-services .container .services a {
            width: 25%; } }
        .home-services .container .services a h3 {
          font-weight: 400;
          font-size: 1rem;
          text-transform: uppercase; }
        .home-services .container .services a .image {
          width: 70%;
          margin: 0 15%;
          padding: 2rem;
          border: 2px solid #C3396C;
          border-radius: 100%;
          transition: .3s; }
          .home-services .container .services a .image:hover, .home-services .container .services a .image:focus {
            border-color: #19417C; }
          @media (min-width: 850px) {
            .home-services .container .services a .image {
              width: 60%;
              margin: 0 20%; } }
        .home-services .container .services a img {
          width: 100%; }
        .home-services .container .services a .iconify {
          width: 150px;
          height: 150px;
          border: 1px solid #C3396C;
          border-radius: 100%;
          background: #282438;
          color: #FFF;
          padding: 1.2rem;
          transition: .3s; }

.service-arrows button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border: 0;
  background: none; }
  .service-arrows button .iconify {
    width: 30px;
    height: 30px;
    color: #FFF;
    transition: .3s; }
    .service-arrows button .iconify:hover, .service-arrows button .iconify:focus {
      color: #C3396C; }

.split-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  .split-content article {
    width: 100%; }
    @media (min-width: 850px) {
      .split-content article {
        width: 100%;
        text-align: center; } }
    .split-content article h1 {
      font-size: 2.4rem;
      line-height: 2.6rem;
      font-weight: 400;
      color: #282438;
      padding: 0;
      margin: 0; }
      @media (min-width: 850px) {
        .split-content article h1 {
          font-size: 3rem;
          line-height: 3rem; } }
    .split-content article p {
      max-width: 980px;
      margin: 0 auto;
      margin-top: 1rem; }
  .split-content aside {
    width: 100%;
    display: none; }
    @media (min-width: 850px) {
      .split-content aside {
        width: 40%; } }

.why-us {
  background: #FFF; }
  .why-us .container {
    max-width: 1600px;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    text-align: center; }
    .why-us .container .text {
      width: 100%; }
      @media (min-width: 850px) {
        .why-us .container .text {
          width: 30%;
          text-align: left;
          display: flex;
          align-items: center; } }
      .why-us .container .text h2 {
        color: #282438;
        font-size: calc(2rem + 0.5vw);
        line-height: calc(2rem + 0.5vw);
        position: relative; }
        @media (min-width: 850px) {
          .why-us .container .text h2 {
            margin: 0; } }
        .why-us .container .text h2:after {
          content: ' ';
          position: absolute;
          width: 100px;
          height: 4px;
          bottom: -1rem;
          left: 0;
          right: 0;
          margin: 0 auto;
          background: #C3396C;
          border-radius: 10px; }
          @media (min-width: 850px) {
            .why-us .container .text h2:after {
              right: auto; } }
    .why-us .container .right {
      width: 100%; }
      @media (min-width: 850px) {
        .why-us .container .right {
          width: 70%;
          display: flex;
          flex-wrap: wrap; } }
      .why-us .container .right .box {
        width: 100%;
        margin-bottom: 2rem; }
        @media (min-width: 850px) {
          .why-us .container .right .box {
            width: 33.3333333%;
            margin-bottom: 0;
            padding: 0 2rem; } }
        .why-us .container .right .box:last-child {
          margin-bottom: 0; }
        .why-us .container .right .box .iconify {
          width: 35px;
          height: 35px;
          color: #C3396C; }
        .why-us .container .right .box .large {
          font-size: 1.4rem;
          text-transform: uppercase;
          letter-spacing: 0.1rem;
          padding: 0;
          margin: 0; }
        .why-us .container .right .box .small {
          font-size: 1rem;
          padding: 0;
          margin: 0.5rem 0 0 0; }

.cta {
  background: linear-gradient(150deg, #282438 0%, #19417C 40%); }
  .cta .container {
    padding: 4rem 2rem;
    text-align: center; }
    .cta .container h2 {
      margin: 0;
      padding: 0; }
    .cta .container p {
      font-size: 1.2rem;
      color: #FFF;
      letter-spacing: 0.1rem;
      margin: 1rem 0; }

.home-reviews .container {
  padding: 4rem 2rem;
  text-align: center; }
  .home-reviews .container h2 {
    color: #282438; }

.home-news {
  background: #FFF; }
  .home-news .container {
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap; }
    .home-news .container h2 {
      color: #282438;
      width: 100%; }
    .home-news .container .blog-post {
      width: 100%;
      margin-bottom: 2rem; }
      .home-news .container .blog-post:last-child {
        margin-bottom: 0; }
      @media (min-width: 850px) {
        .home-news .container .blog-post {
          width: 30%;
          margin-bottom: 0; }
          .home-news .container .blog-post:nth-child(3) {
            margin: 0 5%; } }

.partners {
  width: 100%;
  background: #282438; }
  .partners .container {
    padding: 4rem 2rem;
    text-align: center; }
    .partners .container h2 {
      color: #FFF; }
    .partners .container .partner-logos {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 4rem 2rem; }
      .partners .container .partner-logos img {
        margin: 0 auto; }
      @media (min-width: 400px) {
        .partners .container .partner-logos {
          grid-template-columns: 1fr 1fr; } }
      @media (min-width: 576px) {
        .partners .container .partner-logos {
          grid-template-columns: repeat(3, 1fr); } }
      @media (min-width: 850px) {
        .partners .container .partner-logos {
          grid-template-columns: repeat(4, 1fr); } }

.contact-page {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards; }
  .contact-page .left {
    width: 100%; }
    @media (min-width: 850px) {
      .contact-page .left {
        width: 50%; } }
    .contact-page .left h2 {
      font-size: calc(2rem + 0.5vw);
      color: #282438;
      padding: 0;
      margin: 0 0 2rem 0;
      position: relative; }
      .contact-page .left h2:before {
        content: ' ';
        position: absolute;
        bottom: -1rem;
        width: 100px;
        height: 4px;
        background: #C3396C;
        border-radius: 10px; }
    .contact-page .left .contact-info {
      width: 100%;
      display: flex;
      flex-direction: column;
      margin-top: 2rem; }
      .contact-page .left .contact-info address {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        font-style: normal; }
      .contact-page .left .contact-info a {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        color: #282438; }
      .contact-page .left .contact-info p {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        font-size: 1rem; }
      .contact-page .left .contact-info .iconify {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        padding: 0.5rem;
        border: 1px solid #282438;
        color: #282438;
        margin-right: 0.5rem; }
  .contact-page .right {
    width: 100%;
    margin-top: 4rem; }
    @media (min-width: 850px) {
      .contact-page .right {
        width: 50%;
        padding-left: 2rem;
        margin-top: 0; } }
    .contact-page .right input[type='text'] {
      border-radius: 20px;
      border: 1px solid #ccc; }
    .contact-page .right textarea {
      border-radius: 10px;
      border: 1px solid #CCC; }
    .contact-page .right .gfield_consent_description a {
      color: #282438; }
    .contact-page .right #gform_submit_button_2 {
      -webkit-appearance: none;
      appearance: none;
      cursor: pointer;
      background: linear-gradient(120deg, #C3396C 10%, #742240 100%);
      background-size: 200% 200%;
      border-radius: 60px;
      padding: 0.8rem 1.2rem;
      border: 0;
      transition: .3s;
      font-size: 18px;
      color: #FFF;
      text-transform: uppercase; }
      .contact-page .right #gform_submit_button_2:hover, .contact-page .right #gform_submit_button_2:focus {
        background-position: bottom right; }
    .contact-page .right .gform_required_legend {
      display: none; }

.std-page {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards; }
  .std-page h1, .std-page h2, .std-page h3 {
    color: #19417C; }
  .std-page p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    line-height: 1.7rem; }
    .std-page p strong {
      color: #19417C;
      font-weight: 400; }
  .std-page a {
    color: #C3396C; }

.std-page-wide {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards; }
  .std-page-wide h1, .std-page-wide h2, .std-page-wide h3 {
    color: #19417C; }
  .std-page-wide p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    line-height: 1.7rem; }
    .std-page-wide p strong {
      color: #19417C;
      font-weight: 400; }
  .std-page-wide a {
    color: #C3396C; }

.wp-block-media-text h2 {
  color: #282438; }

.content-boxes {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto; }
  .content-boxes .content-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem; }
    @media (min-width: 850px) {
      .content-boxes .content-box:nth-child(odd) {
        flex-direction: row-reverse; }
        .content-boxes .content-box:nth-child(odd) .text {
          padding: 0 3rem 0 0; } }
    .content-boxes .content-box:last-child {
      margin-bottom: 0; }
    .content-boxes .content-box .image {
      width: 100%;
      border-radius: 15px;
      overflow: hidden; }
      @media (min-width: 850px) {
        .content-boxes .content-box .image {
          width: 50%; } }
      .content-boxes .content-box .image img {
        width: 100%; }
        @media (min-width: 850px) {
          .content-boxes .content-box .image img {
            height: 100%;
            object-fit: cover; } }
    .content-boxes .content-box .text {
      width: 100%; }
      @media (min-width: 850px) {
        .content-boxes .content-box .text {
          width: 50%;
          padding: 0 2rem 0 3rem;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center; }
          .content-boxes .content-box .text p {
            margin: 0 0 1rem 0; }
            .content-boxes .content-box .text p:last-child {
              margin-bottom: 0; } }
      .content-boxes .content-box .text h2 {
        color: #19417C;
        font-size: calc(1.7rem + 0.5vw);
        padding: 1rem 0 0 0;
        margin: 0; }

.page-header {
  width: 100%;
  background: linear-gradient(150deg, #282438 0%, #19417C 40%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; }
  .page-header h1 {
    padding: 0;
    margin: 0;
    font-size: 3rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards; }

.the-team {
  width: 100%;
  background: #f6f6f6;
  padding: 4rem 0;
  text-align: center; }
  .the-team h2 {
    color: #19417C;
    margin-bottom: 6rem; }
  .the-team .boxes {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap; }
    .the-team .boxes .box {
      width: 100%;
      background: #FFF;
      border-radius: 10px;
      margin-bottom: 7rem;
      position: relative;
      box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16); }
      @media (min-width: 850px) {
        .the-team .boxes .box {
          width: 48%;
          margin: 0 1%; } }
      @media (min-width: 992px) {
        .the-team .boxes .box {
          width: 32%;
          margin: 0;
          margin-bottom: 6rem; }
          .the-team .boxes .box:nth-child(2), .the-team .boxes .box:nth-child(5), .the-team .boxes .box:nth-child(8) {
            margin: 0 2%;
            margin-bottom: 6rem; } }
      .the-team .boxes .box:last-child {
        margin-bottom: 0; }
      .the-team .boxes .box .image {
        width: 100px;
        height: 100px;
        border-radius: 100%;
        overflow: hidden;
        border: 5px solid #FFF;
        position: absolute;
        top: -3.2rem;
        left: 0;
        right: 0;
        margin: 0 auto; }
        .the-team .boxes .box .image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .the-team .boxes .box .title {
        margin-top: 4rem;
        color: rgba(0, 0, 0, 0.7);
        font-size: 1rem; }
        .the-team .boxes .box .title strong {
          font-size: 1.3rem;
          color: #19417C; }
      .the-team .boxes .box .bio {
        font-size: 1rem;
        margin-bottom: 2rem; }

.service-page-layout {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  .service-page-layout article {
    width: 100%;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: 0.5s;
    animation-fill-mode: forwards; }
    @media (min-width: 850px) {
      .service-page-layout article {
        width: 65%;
        margin-right: 5%; } }
    .service-page-layout article h2 {
      font-size: 1.5rem;
      line-height: 2rem;
      padding: 0;
      margin: 0 0 1rem 0;
      color: #19417C; }
    .service-page-layout article p {
      margin: 1rem 0 2rem 0;
      font-size: 1.1rem;
      line-height: 1.57rem;
      color: rgba(0, 0, 0, 0.7); }
      .service-page-layout article p strong {
        color: #19417C;
        font-weight: 400; }
      .service-page-layout article p a {
        color: #C3396C; }
    .service-page-layout article ul {
      padding: 0 0 0 1.2rem;
      margin-bottom: 2rem; }
    .service-page-layout article li {
      font-size: 1.1rem;
      line-height: 1.7rem;
      color: rgba(0, 0, 0, 0.7);
      margin-bottom: 0.5rem; }
  .service-page-layout aside {
    width: 100%;
    border-top: 1px solid #ccc;
    padding-top: 2rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: 0.8s;
    animation-fill-mode: forwards; }
    @media (min-width: 850px) {
      .service-page-layout aside {
        width: 30%;
        border-top: 0;
        border-left: 1px solid #f6f6f6;
        padding-top: 0;
        padding-left: 2rem; } }
    .service-page-layout aside h3 {
      font-size: 1.5rem;
      font-weight: 400;
      color: #19417C;
      padding: 0;
      margin: 0 0 2rem 0; }
    .service-page-layout aside ul {
      list-style-type: none;
      padding-left: 0;
      margin: 0; }
    .service-page-layout aside .blue-box {
      background: #282438;
      padding: 2rem;
      margin-bottom: 2rem; }
      .service-page-layout aside .blue-box h3 {
        color: #FFF; }
      .service-page-layout aside .blue-box a {
        font-size: 1.1rem;
        line-height: 1.7rem;
        color: #FFF;
        text-decoration-color: transparent; }
        .service-page-layout aside .blue-box a:hover, .service-page-layout aside .blue-box a:focus {
          color: #C3396C; }
    .service-page-layout aside .calendly-inline-widget {
      width: 100% !important;
      min-width: 100% !important;
      background: #f6f6f6;
      padding: 1rem; }

/* 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 */
