/*
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 */
.site-header {
  background: #3E5062;
  display: flex;
  flex-wrap: wrap; }
  .site-header .toolbar {
    background: #2a3743;
    width: 100%; }
    .site-header .toolbar .container {
      padding: 0.5rem 1rem; }
    .site-header .toolbar .iconify {
      width: 30px;
      height: 30px;
      color: #FFF; }
      .site-header .toolbar .iconify:hover, .site-header .toolbar .iconify:focus {
        color: #3E5062; }
    .site-header .toolbar .phone-numbers {
      text-transform: uppercase;
      color: #FFF;
      display: none;
      font-size: 0.9rem; }
      @media (min-width: 800px) {
        .site-header .toolbar .phone-numbers {
          display: flex; } }
      .site-header .toolbar .phone-numbers a {
        color: #FFF;
        text-decoration: none;
        letter-spacing: 0.1rem; }
        .site-header .toolbar .phone-numbers a:focus, .site-header .toolbar .phone-numbers a:hover {
          color: #43B5C7; }
  .site-header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem; }
  .site-header .logo img {
    max-width: 12.5rem;
    height: auto; }
  .site-header #mobile-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: 0;
    background: none;
    cursor: pointer;
    -webkit-appearance: none; }
    .site-header #mobile-button .iconify {
      width: 30px;
      height: 30px;
      color: #FFF; }
      .site-header #mobile-button .iconify:focus, .site-header #mobile-button .iconify:hover {
        color: #43B5C7; }
    @media (min-width: 800px) {
      .site-header #mobile-button {
        display: none; } }
  .site-header #close-button {
    position: absolute;
    top: 20px;
    right: 1rem;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer; }
    .site-header #close-button .iconify {
      width: 25px;
      height: 25px;
      color: #FFF; }
      .site-header #close-button .iconify:hover, .site-header #close-button .iconify:focus {
        color: #43B5C7; }

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  margin-top: 0;
  top: 0;
  left: 0;
  background: #3E5062;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 1rem;
  transition: .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 200; }
  #mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transition: .3s; }
  @media (min-width: 800px) {
    #mobile-menu {
      display: none !important; } }
  #mobile-menu .menu-main-menu-container {
    width: 100%; }
  #mobile-menu .menu {
    text-align: center; }
    #mobile-menu .menu li a {
      display: block;
      padding: 0.5rem 0; }
  #mobile-menu .sub-menu {
    list-style-type: none;
    padding: 0;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    display: none; }
    #mobile-menu .sub-menu.active {
      display: block; }
    #mobile-menu .sub-menu li a {
      font-size: 1.2rem; }

#main-menu {
  display: none; }
  @media (min-width: 800px) {
    #main-menu {
      display: flex; } }
  #main-menu .menu {
    position: relative; }
  #main-menu .menu li {
    position: relative; }
  #main-menu .menu li .sub-menu {
    opacity: 0;
    visibility: hidden;
    transition: .3s; }
  #main-menu .menu li:hover .sub-menu, #main-menu .menu li:focus .sub-menu {
    opacity: 1;
    visibility: visible; }
  #main-menu .sub-menu {
    position: absolute;
    top: 55px;
    right: 0;
    padding-left: 0;
    width: 300px;
    min-width: 200px;
    background: #3E5062;
    padding: 1rem;
    text-align: right; }
    #main-menu .sub-menu li {
      display: block; }
    #main-menu .sub-menu a {
      display: block;
      padding: 0.5rem;
      font-size: 0.9rem; }

.menu {
  list-style-type: none;
  padding-left: 0; }
  .menu li {
    padding: 0.5rem 0; }
    @media (min-width: 800px) {
      .menu li {
        display: inline;
        padding: 0.5rem 1rem; } }
  .menu a {
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
    letter-spacing: 0.1rem; }
    .menu a:hover, .menu a:focus {
      color: #43B5C7; }
    @media (min-width: 800px) {
      .menu a {
        font-size: 0.9rem; } }

.site-footer {
  background: #3E5062;
  border-top: 5px solid #43B5C7;
  width: 100%;
  display: flex; }
  .site-footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center; }
    @media (min-width: 800px) {
      .site-footer .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: right; } }
    .site-footer .container img {
      width: 100%;
      max-width: 300px; }
  .site-footer .iconify {
    width: 40px;
    height: 40px;
    color: #FFF;
    transition: .3s; }
    .site-footer .iconify:focus, .site-footer .iconify:hover {
      color: #43B5C7; }
  .site-footer p {
    color: #FFF; }
    .site-footer p a {
      color: #FFF;
      text-decoration: none; }
      .site-footer p a:focus, .site-footer p a:hover {
        color: #43B5C7; }

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

.slide-img {
  width: 100%;
  height: 500px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative; }
  .slide-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; }
  .slide-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0; }
    .slide-img .overlay .container {
      width: 100%;
      height: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      padding: 2rem 1rem;
      align-items: center;
      justify-content: center; }
      @media (min-width: 800px) {
        .slide-img .overlay .container {
          align-items: flex-start;
          padding: 2rem; } }
      .slide-img .overlay .container .carousel-heading {
        font-size: 1.5rem;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: 0.1rem;
        color: #FFF;
        padding: 0;
        margin: 0;
        font-family: brandon-grotesque, sans-serif; }
      .slide-img .overlay .container .carousel-description {
        font-size: 1rem;
        text-transform: uppercase;
        color: #FFF;
        letter-spacing: 0.1rem;
        padding: 0;
        margin: 0; }

.flex-control-nav {
  z-index: 100; }

.flex-control-paging li a.flex-active {
  background: #43B5C7 !important; }

.flex-control-paging li a {
  background: rgba(255, 255, 255, 0.5) !important; }
  .flex-control-paging li a:hover, .flex-control-paging li afocus {
    background: #FFF !important; }

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center; }
  .blog-header h2 {
    color: #FFF; }

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto; }
  @media (min-width: 576px) {
    .blog-main {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 992px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none; }
  @media (min-width: 576px) {
    .blog-post {
      width: 48%;
      margin: 0 1%; }
      @supports (display: grid) {
        .blog-post {
          width: 100%;
          margin: 0; } } }
  .blog-post .image {
    width: 100%;
    height: 300px;
    background-size: cover !important;
    background-position: center center !important; }
  .blog-post .meta {
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem; }
  .blog-post .title {
    color: #000;
    font-size: 1.2rem; }
  .blog-post p {
    color: #000; }

.post-single {
  width: 100%;
  max-width: 900px;
  padding: 4rem 2rem;
  margin: 0 auto; }
  .post-single .attachment-post-thumbnail {
    width: 100%;
    height: auto; }
  .post-single h2 {
    color: #3E5062;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
    position: relative; }
    .post-single h2:after {
      content: ' ';
      position: absolute;
      width: 150px;
      height: 4px;
      background: #43B5C7;
      bottom: -10px;
      left: 0; }
  .post-single p {
    font-size: 1rem;
    line-height: 2rem; }

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start; }
  .share-buttons li {
    height: auto;
    flex: 0 1 auto;
    width: calc(33.3333333% - 1px);
    margin-right: 0.063rem; }
    .share-buttons li:last-child {
      width: 33.3333333%;
      margin-right: 0; }
      .share-buttons li:last-child a {
        border-radius: 0 0.188rem 0.188rem 0; }
    .share-buttons li:first-child a {
      border-radius: 0.188rem 0 0 0.188rem; }
  .share-buttons svg {
    fill: #fff;
    margin-right: 0.313rem;
    width: 1rem;
    height: 1rem; }
  .share-buttons a {
    display: block;
    padding: 0.75rem 0.75rem 0.563rem;
    text-align: center;
    color: White; }

.share-twitter {
  background: #1da1f2; }

.share-facebook {
  background: #3b5998; }

.share-pinterest {
  background: #b5071a; }

.error {
  width: 100%;
  height: 100vh;
  background: #3E5062;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 900px;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 12rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #FFF; }
    .error .content p {
      color: #FFF;
      font-size: 1.2rem; }
    .error .content a {
      display: inline-block;
      background: none;
      border: 2px solid #FFF;
      padding: 0.5rem 1rem;
      margin-top: 2rem;
      border-radius: 6px;
      text-transform: uppercase;
      color: #FFF;
      font-weight: 400;
      text-decoration: none;
      letter-spacing: 0.1rem;
      transition: .3s; }
      .error .content a:focus, .error .content a:hover {
        background: #FFF;
        color: #3E5062; }

html {
  box-sizing: border-box; }

* {
  box-sizing: inherit;
  font-family: open-sans, sans-serif; }

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; } }
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-family: brandon-grotesque, sans-serif; }

.btn {
  background: none;
  border: 2px solid #FFF;
  padding: 0.5rem 1rem;
  margin-top: 2rem;
  border-radius: 6px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.1rem;
  transition: .3s; }
  .btn:focus, .btn:hover {
    background: #FFF;
    color: #3E5062; }

.home-text {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem; }
  @media (min-width: 800px) {
    .home-text {
      display: flex; } }
  .home-text .small-heading {
    padding: 0 0 0.2rem 0;
    margin: 0;
    font-size: 1.2rem;
    color: #3E5062;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.1rem;
    font-family: brandon-grotesque, sans-serif; }
  .home-text h1 {
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #3E5062;
    padding-bottom: 1rem;
    position: relative; }
    .home-text h1:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 200px;
      height: 4px;
      background: #43B5C7; }
  .home-text article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; }
    @media (min-width: 800px) {
      .home-text article {
        width: 65%;
        margin-right: 5%; } }
  .home-text aside {
    height: 400px; }
    .home-text aside img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media (min-width: 800px) {
      .home-text aside {
        width: 30%;
        height: auto; } }

.home-logos {
  width: 100%;
  background: #F6F6F6; }
  .home-logos .container {
    padding: 2rem;
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: 1fr; }
    @media (min-width: 551px) {
      .home-logos .container {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 800px) {
      .home-logos .container {
        grid-template-columns: repeat(5, 1fr); } }

.home-services {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  .home-services .blog-post {
    background: #3E5062;
    width: 100%; }
    @media (min-width: 800px) {
      .home-services .blog-post {
        width: 49%; } }
    .home-services .blog-post:nth-child(1) {
      margin-bottom: 2rem; }
      @media (min-width: 800px) {
        .home-services .blog-post:nth-child(1) {
          margin: 0 1% 0 0; } }
    @media screen and (min-width: 800px) {
      .home-services .blog-post:nth-child(2) {
        margin: 0 0 0 1%; } }
    .home-services .blog-post img {
      width: 100%;
      height: auto; }
    .home-services .blog-post .content {
      padding: 1rem; }
      .home-services .blog-post .content h2 {
        color: #FFF;
        position: relative;
        padding-bottom: 1rem; }
        .home-services .blog-post .content h2:after {
          content: ' ';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 150px;
          height: 5px;
          background: #43B5C7; }
      .home-services .blog-post .content p {
        color: #FFF;
        margin: 1rem 0; }
      .home-services .blog-post .content .btn {
        margin: 1rem 0;
        display: inline-block; }
        .home-services .blog-post .content .btn:focus, .home-services .blog-post .content .btn:hover {
          background: #FFF;
          color: #3E5062; }

.content-blocks .content-block:nth-child(2) {
  flex-direction: row-reverse; }

.content-block {
  background: #3E5062;
  display: flex;
  flex-wrap: wrap; }
  .content-block .image {
    width: 100%;
    height: 400px; }
    @media (min-width: 800px) {
      .content-block .image {
        width: 50%;
        height: auto; } }
    .content-block .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .content-block .content {
    padding: 2rem;
    width: 100%; }
    @media (min-width: 800px) {
      .content-block .content {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; } }
    .content-block .content h3 {
      color: #FFF;
      position: relative;
      padding-bottom: 1rem; }
      .content-block .content h3:after {
        content: ' ';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        height: 5px;
        background: #43B5C7; }
    .content-block .content p {
      color: #FFF; }
    .content-block .content .btn {
      margin-top: 1rem;
      display: inline-block; }

.home-testimonial {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center; }
  .home-testimonial .flex-control-nav {
    position: relative;
    margin-top: 30px; }
  .home-testimonial span {
    color: #3E5062; }

.page-header {
  width: 100%;
  height: 300px;
  position: relative; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative; }
  .page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); }
    .page-header .overlay .container {
      width: 100%;
      height: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem; }
      .page-header .overlay .container h1 {
        font-size: 2rem;
        color: #FFF; }

.std-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem; }
  .std-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #3E5062;
    position: relative;
    margin-bottom: 2rem; }
    .std-content h2:after {
      content: ' ';
      position: absolute;
      width: 150px;
      height: 4px;
      background: #43B5C7;
      bottom: -10px;
      left: 0; }

.std-content-small {
  max-width: 900px;
  margin: 0 auto; }

.team-members {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem 2rem 4rem 2rem; }
  .team-members .team-member {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem; }
    .team-members .team-member:last-child {
      margin-bottom: 0; }
    .team-members .team-member .image {
      width: 100%;
      height: 400px; }
      @media (min-width: 800px) {
        .team-members .team-member .image {
          width: 50%;
          height: 550px;
          display: flex;
          align-items: center;
          justify-content: center; } }
      .team-members .team-member .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .team-members .team-member .content {
      margin-top: 2rem; }
      @media (min-width: 800px) {
        .team-members .team-member .content {
          width: 48%;
          margin-left: 2%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center; } }
      .team-members .team-member .content h2 {
        color: #3E5062;
        position: relative;
        padding-bottom: 1rem; }
        .team-members .team-member .content h2:after {
          content: ' ';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100px;
          height: 5px;
          background: #43B5C7; }
    .team-members .team-member .accreditations {
      width: 100%;
      margin-top: 2rem; }
      @media (min-width: 800px) {
        .team-members .team-member .accreditations {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          grid-gap: 2rem; } }
      .team-members .team-member .accreditations .box {
        background: #fafafa;
        border-radius: 6px;
        margin-bottom: 2rem; }
        .team-members .team-member .accreditations .box h3 {
          padding: 1rem;
          color: #FFF;
          background: #3E5062;
          border-top-left-radius: 6px;
          border-top-right-radius: 6px;
          margin: 0; }
        .team-members .team-member .accreditations .box ul {
          list-style-type: none;
          padding-left: 0; }
          .team-members .team-member .accreditations .box ul li {
            padding: 1rem 0.5rem; }
            .team-members .team-member .accreditations .box ul li:nth-child(even) {
              background: #eee; }
        .team-members .team-member .accreditations .box:last-child {
          margin-bottom: 0; }
        @media (min-width: 800px) {
          .team-members .team-member .accreditations .box {
            margin-bottom: 0; } }

.tab-title {
  background-color: #3E5062;
  color: #FFF;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s; }

.tab-content {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out; }

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