/*
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 */
/* Animation */
@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: 100%;
  background: #FFF; }
  .site-header .container {
    padding: 1.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    @media (min-width: 992px) {
      .site-header .container {
        padding: 0 2rem; } }
    .site-header .container .custom-logo-link {
      display: block;
      width: auto; }
      .site-header .container .custom-logo-link img {
        width: 100%;
        max-width: 225px;
        height: auto;
        display: block; }
        @media (min-width: 576px) {
          .site-header .container .custom-logo-link img {
            max-width: 300px; } }
    .site-header .container .mobile-btn {
      width: 30px;
      height: 30px;
      display: block;
      position: relative;
      appearance: none;
      padding: 0;
      margin: 0;
      cursor: pointer;
      background: none;
      border: 0; }
      @media (min-width: 992px) {
        .site-header .container .mobile-btn {
          display: none; } }
      .site-header .container .mobile-btn.active span {
        background: none; }
        .site-header .container .mobile-btn.active span:before {
          top: 0;
          transform: rotate(-45deg); }
        .site-header .container .mobile-btn.active span:after {
          bottom: 0;
          transform: rotate(45deg); }
      .site-header .container .mobile-btn span {
        width: 100%;
        height: 2px;
        background: #000;
        display: block;
        position: relative;
        transition: .3s; }
        .site-header .container .mobile-btn span:before, .site-header .container .mobile-btn span:after {
          content: ' ';
          position: absolute;
          top: -8px;
          width: 100%;
          height: 2px;
          background: #000;
          left: 0;
          transition: .3s; }
        .site-header .container .mobile-btn span:after {
          top: auto;
          bottom: -8px; }

#mobile-menu {
  width: 100%;
  height: calc(100% - 80px);
  position: fixed;
  top: 80px;
  left: 0;
  background: #FFF;
  margin-top: 0;
  padding: 0;
  border-top: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
  z-index: 100; }
  @media (min-width: 992px) {
    #mobile-menu {
      display: none; } }
  #mobile-menu.active {
    opacity: 1;
    visibility: visible; }
  #mobile-menu .sub-menu {
    display: none; }
  #mobile-menu .menu {
    padding: 0;
    margin: 0;
    list-style-type: none; }
    #mobile-menu .menu li {
      display: block;
      border-bottom: 1px solid #eee; }
      #mobile-menu .menu li a {
        display: block;
        padding: 1rem;
        color: #000;
        font-size: 1.1rem;
        text-decoration-color: transparent;
        transition: .3s;
        border-left: 3px solid transparent; }
        #mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
          color: #C83F77;
          background: #f5f5f5;
          border-color: #C83F77; }
  #mobile-menu .socials {
    margin-top: 0.5rem;
    padding: 1rem; }
    #mobile-menu .socials iconify-icon {
      color: #C83F77;
      margin-right: 0.5rem; }

#desktop-menu {
  display: none; }
  @media (min-width: 992px) {
    #desktop-menu {
      display: flex;
      padding: 0;
      margin: 0; }
      #desktop-menu .menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style-type: none;
        padding: 0;
        margin: 0; }
        #desktop-menu .menu li {
          margin: 0 0.8rem;
          position: relative;
          height: 92px;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer; }
          #desktop-menu .menu li a {
            color: #000;
            text-decoration-color: transparent;
            transition: .3s;
            position: relative; }
            #desktop-menu .menu li a:after {
              content: ' ';
              position: absolute;
              bottom: 0;
              left: 0;
              width: 100%;
              height: 2px;
              background: transparent;
              transition: .3s; }
          #desktop-menu .menu li:hover a, #desktop-menu .menu li:focus a {
            color: #C83F77; }
            #desktop-menu .menu li:hover a:after, #desktop-menu .menu li:focus a:after {
              background: #C83F77; }
          #desktop-menu .menu li:last-child a {
            background: #C83F77;
            padding: 0.4rem 1.2rem;
            border-radius: 6px;
            color: #FFF;
            transition: .3s;
            position: relative;
            overflow: hidden;
            display: block; }
            #desktop-menu .menu li:last-child a:after {
              background: pink;
              content: "";
              height: 155px;
              top: -50px;
              left: -100%;
              opacity: .2;
              position: absolute;
              transform: rotate(35deg);
              transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
              width: 50px;
              z-index: 0; }
            #desktop-menu .menu li:last-child a:hover, #desktop-menu .menu li:last-child a:focus {
              color: #FFF; }
              #desktop-menu .menu li:last-child a:hover:after, #desktop-menu .menu li:last-child a:focus:after {
                left: 120%;
                transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1); }
        #desktop-menu .menu .sub-menu {
          position: absolute;
          top: 92px;
          left: 0;
          background: #FFF;
          z-index: 100;
          width: 250px;
          list-style-type: none;
          padding: 1rem 0.5rem;
          margin: 0;
          opacity: 0;
          visibility: visible; }
          #desktop-menu .menu .sub-menu li {
            margin-bottom: 1rem;
            height: auto;
            text-align: left;
            justify-content: flex-start; }
            #desktop-menu .menu .sub-menu li a {
              color: #000; }
              #desktop-menu .menu .sub-menu li a:after {
                background: transparent; }
              #desktop-menu .menu .sub-menu li a:hover, #desktop-menu .menu .sub-menu li a:focus {
                color: #C83F77; }
                #desktop-menu .menu .sub-menu li a:hover:after, #desktop-menu .menu .sub-menu li a:focus:after {
                  background: #C83F77; }
            #desktop-menu .menu .sub-menu li:last-child {
              margin-bottom: 0; }
              #desktop-menu .menu .sub-menu li:last-child a {
                background: none;
                padding: 0;
                color: #000;
                display: inline-block;
                border-radius: 0; }
                #desktop-menu .menu .sub-menu li:last-child a:after {
                  content: "";
                  height: 2px;
                  top: auto;
                  bottom: 0;
                  left: 0;
                  opacity: 1;
                  position: absolute;
                  transform: rotate(0);
                  transition: .3s;
                  width: 100%;
                  z-index: 0;
                  background: transparent; }
                #desktop-menu .menu .sub-menu li:last-child a:hover, #desktop-menu .menu .sub-menu li:last-child a:focus {
                  color: #C83F77; }
                  #desktop-menu .menu .sub-menu li:last-child a:hover:after, #desktop-menu .menu .sub-menu li:last-child a:focus:after {
                    left: 0;
                    background: #C83F77; } }

#desktop-menu .menu li:hover .sub-menu, #desktop-menu .menu li:focus .sub-menu {
  opacity: 1;
  visibility: visible; }

.site-footer {
  background: #32327B;
  padding: 2rem 0; }
  .site-footer .container {
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column; }
    @media (min-width: 801px) {
      .site-footer .container {
        flex-direction: row; } }
    .site-footer .container .box {
      width: 100%;
      text-align: center;
      color: #FFF; }
      @media (min-width: 801px) {
        .site-footer .container .box {
          width: 33.333333%;
          text-align: left; }
          .site-footer .container .box .title {
            padding: 0;
            margin: 0 0 1rem 0; } }
      .site-footer .container .box img {
        width: 100%;
        max-width: 300px;
        height: auto;
        filter: brightness(0) invert(1);
        margin-bottom: 1rem; }
      .site-footer .container .box iconify-icon {
        background: #FFF;
        color: #32327B;
        padding: 0.4rem;
        border-radius: 100px;
        margin: 0 0.2rem; }
        .site-footer .container .box iconify-icon:hover, .site-footer .container .box iconify-icon:focus {
          background: #C83F77;
          color: #FFF; }
      .site-footer .container .box .phone {
        font-size: 1.4rem;
        margin-top: 1rem; }
        @media (min-width: 801px) {
          .site-footer .container .box .phone {
            font-size: 1rem; } }
        .site-footer .container .box .phone a {
          color: #FFF;
          text-decoration-color: transparent; }
          .site-footer .container .box .phone a:hover, .site-footer .container .box .phone a:focus {
            color: #C83F77; }
      .site-footer .container .box .title {
        color: #FFF;
        font-weight: 400;
        font-size: 1.2rem; }
      .site-footer .container .box p, .site-footer .container .box address {
        color: #FFF;
        font-style: normal;
        font-size: 1rem; }
    .site-footer .container .footer-bottom {
      font-size: 0.8rem;
      color: #FFF;
      width: 100%;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      padding-top: 1rem;
      margin-top: 1rem; }
      @media (min-width: 801px) {
        .site-footer .container .footer-bottom {
          text-align: left;
          margin-top: 2rem; } }
      .site-footer .container .footer-bottom a {
        color: #FFF;
        text-decoration-color: transparent; }

.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-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: 75rem;
  padding: 2rem;
  margin: 0 auto; }
  .post-single .attachment-post-thumbnail {
    width: 100%;
    height: auto; }

.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: #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: greycliff-cf, sans-serif;
  scroll-behavior: smooth; }

* {
  box-sizing: inherit; }

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

h1, h2, h3 {
  font-weight: 400; }

h1 {
  font-size: 2rem;
  line-height: 2.5rem;
  padding: 0;
  margin: 0; }
  @media (min-width: 801px) {
    h1 {
      font-size: 2.5rem;
      line-height: 3rem; } }

h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  padding: 0;
  margin: 0; }
  @media (min-width: 801px) {
    h2 {
      font-size: 2.5rem;
      line-height: 3rem; } }

p {
  font-size: 1.1rem;
  line-height: 1.8rem; }

.btn, #gform_submit_button_1 {
  background: #C83F77;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  color: #FFF;
  transition: .3s;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration-color: transparent;
  font-size: 1.05rem; }
  .btn:after, #gform_submit_button_1:after {
    background: pink;
    content: "";
    height: 155px;
    top: -50px;
    left: -100%;
    opacity: .2;
    position: absolute;
    transform: rotate(35deg);
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 0; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus {
    color: #FFF; }
    .btn:hover:after, .btn:focus:after, #gform_submit_button_1:hover:after, #gform_submit_button_1:focus:after {
      left: 120%;
      transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1); }

#gform_submit_button_1 {
  border: 0;
  cursor: pointer; }

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

.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;
  transform: translateY(1rem);
  transition: opacity 500ms; }

.js-scroll.scrolled {
  opacity: 1;
  transform: translateY(0); }

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

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.home-video {
  width: 100%;
  height: calc(100svh - 80px);
  position: relative; }
  .home-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .home-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 2rem 2rem 5rem 2rem; }
    .home-video .overlay .title {
      font-size: 2rem;
      line-height: 2.5rem;
      color: #FFF;
      padding: 0;
      margin: 0;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .4s;
      animation-fill-mode: forwards; }
      @media (min-width: 801px) {
        .home-video .overlay .title {
          font-size: 3rem;
          margin-bottom: 0.5rem; } }
    .home-video .overlay .text {
      padding: 0;
      margin: 0;
      font-size: 1.2rem;
      color: #FFF;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .5s;
      animation-fill-mode: forwards; }
  .home-video .scroller {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    animation: scroller 1s linear infinite, fadeup 1s ease;
    opacity: 0;
    transform: translateY(1rem);
    animation-delay: .6s;
    animation-fill-mode: forwards; }
    .home-video .scroller iconify-icon {
      background: #FFF;
      padding: 0.5rem;
      color: #000;
      transition: .3s;
      border-radius: 4px; }
      .home-video .scroller iconify-icon:hover, .home-video .scroller iconify-icon:focus {
        background: #C83F77;
        color: #FFF; }

.home-text {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center; }
  .home-text h1 {
    background: linear-gradient(145deg, #32327B 0%, #2BABD3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    line-height: 2.3rem; }
    @media (min-width: 801px) {
      .home-text h1 {
        font-size: 2.5rem;
        line-height: 3rem; } }
  .home-text .btn {
    display: inline-block;
    margin-top: 1rem; }

.what-we-do {
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(180deg, #32327b 0%, #32327b 50%, #19193e 100%); }
  .what-we-do .container {
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap; }
    .what-we-do .container .content {
      width: 100%;
      margin-bottom: 2rem; }
      @media (min-width: 801px) {
        .what-we-do .container .content {
          width: 50%;
          padding-right: 4rem;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center;
          margin-bottom: 0; } }
      .what-we-do .container .content h2 {
        color: #FFF;
        font-size: 2.5rem;
        line-height: 3rem; }
      .what-we-do .container .content p {
        color: #FFF; }
      .what-we-do .container .content .btn {
        display: inline-block;
        margin-top: 1rem; }
    .what-we-do .container .carousel {
      width: 100%; }
      @media (min-width: 801px) {
        .what-we-do .container .carousel {
          width: 50%; } }
      .what-we-do .container .carousel .image {
        width: 100%;
        height: 350px;
        border-radius: 8px;
        overflow: hidden; }
        @media (min-width: 801px) {
          .what-we-do .container .carousel .image {
            height: 450px; } }
      .what-we-do .container .carousel img {
        width: 100%;
        height: 100%;
        object-fit: cover; }

.home-services {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 801px) {
    .home-services {
      grid-template-columns: repeat(3, 1fr); } }
  .home-services h2 {
    text-align: center;
    padding: 0;
    margin: 0 0 0 0;
    grid-column: 1/2;
    background: linear-gradient(145deg, #32327B 0%, #2BABD3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; }
    @media (min-width: 801px) {
      .home-services h2 {
        grid-column: 1/4; } }
  .home-services a {
    color: #000;
    text-decoration-color: transparent; }
  .home-services .box {
    width: 100%;
    text-align: center; }
    @media (min-width: 801px) {
      .home-services .box {
        text-align: left; } }
    .home-services .box:hover h3, .home-services .box:focus h3 {
      color: #C83F77; }
    .home-services .box .image {
      width: 100%;
      height: 250px;
      border-radius: 8px;
      overflow: hidden; }
      .home-services .box .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .home-services .box h3 {
      font-size: 1.5rem;
      padding: 0;
      margin: 1rem 0 0 0;
      color: #32327B;
      transition: .3s; }
    .home-services .box p {
      margin-top: 0.5rem; }

.home-testimonials {
  width: 100%;
  padding: 2rem 0;
  background: #fdfdfd; }
  .home-testimonials h2 {
    text-align: center;
    background: linear-gradient(145deg, #32327B 0%, #2BABD3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 1rem;
    margin: 0 0 2rem 0; }
  .home-testimonials .review {
    background: #FFF;
    border: 1px solid #eee;
    margin: 0 1rem;
    padding: 1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 8px; }
    .home-testimonials .review p {
      width: 100%; }
  .home-testimonials .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0.5rem 0 0 0; }
    .home-testimonials .slick-dots button {
      font-size: 0;
      appearance: none;
      background: #FFF;
      border: 1px solid #32327B;
      border-radius: 4px;
      padding: 0.2rem;
      margin: 0 0.3rem;
      cursor: pointer; }
    .home-testimonials .slick-dots .slick-active button {
      background: #C83F77;
      border-color: #C83F77; }

.home-visit {
  width: 100%;
  min-height: 900px;
  background-size: cover !important;
  background-attachment: fixed !important;
  position: relative; }
  @media (hover: none) {
    .home-visit {
      background-attachment: scroll !important; } }
  @media (min-width: 801px) {
    .home-visit {
      min-height: 500px; } }
  .home-visit .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(120deg, rgba(50, 50, 123, 0.8) 0%, rgba(50, 50, 123, 0.8) 50%, rgba(25, 25, 62, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem; }
    .home-visit .overlay .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center; }
      .home-visit .overlay .container .image {
        width: 100%;
        height: 350px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 2rem; }
        @media (min-width: 801px) {
          .home-visit .overlay .container .image {
            width: 45%;
            height: 400px;
            margin-bottom: 0; } }
        .home-visit .overlay .container .image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .home-visit .overlay .container .content {
        width: 100%; }
        @media (min-width: 801px) {
          .home-visit .overlay .container .content {
            width: 55%;
            padding-left: 3rem; } }
        .home-visit .overlay .container .content h2 {
          color: #FFF;
          padding: 0;
          margin: 0 0 1rem 0; }
        .home-visit .overlay .container .content p {
          color: #FFF; }
        .home-visit .overlay .container .content .btn {
          display: inline-flex;
          align-items: center;
          margin-top: 1rem; }
          .home-visit .overlay .container .content .btn iconify-icon {
            margin-right: 0.2rem; }

.bathrooms {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
  position: relative; }
  .bathrooms h2 {
    padding: 0 1rem;
    margin: 0 0 2rem 0;
    background: linear-gradient(145deg, #32327B 0%, #2BABD3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; }
    @media (min-width: 801px) {
      .bathrooms h2 {
        font-size: 2.5rem;
        line-height: 3rem; } }
  .bathrooms .slick-arrows-two {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
    left: 0;
    right: 0; }
    .bathrooms .slick-arrows-two button {
      appearance: none;
      cursor: pointer;
      background: #FFF;
      border: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px; }
      .bathrooms .slick-arrows-two button:hover, .bathrooms .slick-arrows-two button:focus {
        background: #C83F77; }
        .bathrooms .slick-arrows-two button:hover iconify-icon, .bathrooms .slick-arrows-two button:focus iconify-icon {
          color: #FFF; }
  .bathrooms .bathrooms-feed {
    padding: 0 2rem;
    position: relative; }
    .bathrooms .bathrooms-feed a {
      color: #32327B;
      text-decoration-color: transparent;
      text-align: center;
      padding: 0 1rem; }
      @media (min-width: 801px) {
        .bathrooms .bathrooms-feed a {
          text-align: left; } }
      .bathrooms .bathrooms-feed a:hover .image img, .bathrooms .bathrooms-feed a:focus .image img {
        transform: scale(1.1, 1.1); }
      .bathrooms .bathrooms-feed a:hover h3, .bathrooms .bathrooms-feed a:focus h3 {
        color: #C83F77; }
      .bathrooms .bathrooms-feed a .image {
        width: 100%;
        height: 350px;
        border-radius: 8px;
        overflow: hidden;
        transition: .3s; }
        @media (min-width: 601px) {
          .bathrooms .bathrooms-feed a .image {
            height: 250px; } }
        .bathrooms .bathrooms-feed a .image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: .3s; }
      .bathrooms .bathrooms-feed a h3 {
        font-size: 1.5rem;
        transition: .3s; }
        @media (min-width: 801px) {
          .bathrooms .bathrooms-feed a h3 {
            font-size: 1.3rem; } }

.page-header {
  width: 100%;
  height: 350px;
  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%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4); }
    .page-header .overlay span {
      font-size: 1.2rem;
      color: #FFF;
      font-family: museo, serif;
      font-style: italic;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .3s;
      animation-fill-mode: forwards; }
    .page-header .overlay h1 {
      color: #FFF;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .5s;
      animation-fill-mode: forwards;
      font-size: 2.5rem;
      line-height: 3rem; }
      @media (min-width: 801px) {
        .page-header .overlay h1 {
          font-size: 3.5rem;
          line-height: 4rem; } }

.services-page {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  .services-page .content-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .7s;
    animation-fill-mode: forwards; }
    @media (min-width: 801px) {
      .services-page .content-block {
        margin-bottom: 4rem; }
        .services-page .content-block:nth-child(even) {
          flex-direction: row-reverse; }
          .services-page .content-block:nth-child(even) .content {
            padding-left: 0;
            padding-right: 4rem; } }
    .services-page .content-block .image {
      width: 100%;
      height: 350px;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 1rem; }
      @media (min-width: 801px) {
        .services-page .content-block .image {
          width: 50%;
          height: 450px; } }
      .services-page .content-block .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .services-page .content-block .content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center; }
      @media (min-width: 801px) {
        .services-page .content-block .content {
          width: 50%;
          padding-left: 4rem; } }
      .services-page .content-block .content h2 {
        background: linear-gradient(145deg, #32327B 0%, #2BABD3 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        padding-bottom: 1rem; }
      .services-page .content-block .content .btn {
        margin-top: 1rem; }
      .services-page .content-block .content p {
        margin-top: 0; }

.about-page .content-block {
  display: flex;
  flex-direction: row-reverse; }
  @media (min-width: 801px) {
    .about-page .content-block {
      margin-bottom: 0; } }
  .about-page .content-block .content {
    padding-left: 0; }
    @media (min-width: 801px) {
      .about-page .content-block .content {
        padding-right: 4rem; } }

.bathrooms-main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 576px) {
    .bathrooms-main {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 992px) {
    .bathrooms-main {
      grid-template-columns: repeat(3, 1fr); } }
  .bathrooms-main a {
    text-decoration-color: transparent;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    margin-bottom: 1rem; }
    .bathrooms-main a:hover h3, .bathrooms-main a:focus h3 {
      color: #C83F77; }
    .bathrooms-main a:nth-child(2) {
      animation-delay: 0.6s; }
    .bathrooms-main a:nth-child(3) {
      animation-delay: 0.7s; }
    .bathrooms-main a:nth-child(4) {
      animation-delay: 0.8s; }
    .bathrooms-main a:nth-child(5) {
      animation-delay: 0.9s; }
    .bathrooms-main a:nth-child(n+6) {
      animation-delay: 1s; }
    .bathrooms-main a .image {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 0.5rem; }
      .bathrooms-main a .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .bathrooms-main a h3 {
      font-size: 1.7rem;
      color: #32327B;
      padding: 0;
      margin: 0;
      transition: .3s; }
    .bathrooms-main a p {
      padding: 0;
      margin: 0;
      color: #000; }

.showroom-main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  @media (min-width: 801px) {
    .showroom-main {
      flex-direction: row-reverse; } }
  .showroom-main .image {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem; }
    @media (min-width: 801px) {
      .showroom-main .image {
        width: 50%;
        height: 500px; } }
    .showroom-main .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .showroom-main article {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; }
    @media (min-width: 801px) {
      .showroom-main article {
        width: 50%;
        padding-right: 4rem; } }
    .showroom-main article h1 {
      background: linear-gradient(145deg, #32327B 0%, #2BABD3 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 2.5rem;
      line-height: 3rem;
      padding: 0;
      margin: 0; }

.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: .7s;
  animation-fill-mode: forwards; }
  @media (min-width: 801px) {
    .contact-page {
      padding: 4rem; } }
  .contact-page .form {
    width: 100%;
    background: linear-gradient(145deg, #32327B 0%, #2BABD3 100%);
    padding: 2rem;
    border-radius: 10px; }
    @media (min-width: 801px) {
      .contact-page .form {
        width: 60%; } }
    .contact-page .form h2 {
      color: #FFF;
      font-size: 2.5rem;
      line-height: 3rem; }
    .contact-page .form p {
      color: #FFF; }
    .contact-page .form input[type='text'], .contact-page .form input[type='email'], .contact-page .form input[type='tel'], .contact-page .form textarea {
      border: 0;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 6px;
      height: 40px; }
    .contact-page .form .gfield_label, .contact-page .form .gform-field-label--type-sub, .contact-page .form .gfield_consent_label {
      font-weight: 400 !important;
      color: #FFF; }
    .contact-page .form .gform_wrapper.gravity-theme .gfield_required {
      color: rgba(255, 255, 255, 0.8); }
    .contact-page .form textarea {
      height: auto; }
  .contact-page .contact-info {
    width: 100%; }
    .contact-page .contact-info .content {
      padding: 2rem 0;
      border-top: 1px solid #32327B;
      border-bottom: 1px solid #32327B;
      width: 100%;
      font-size: 1.2rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start; }
      .contact-page .contact-info .content:nth-child(2) {
        border-top: 0; }
    @media (min-width: 801px) {
      .contact-page .contact-info {
        width: 40%;
        padding-left: 4rem; } }
    .contact-page .contact-info h2 {
      margin-bottom: 1rem;
      color: #32327B; }
    .contact-page .contact-info address {
      font-style: normal; }
    .contact-page .contact-info .tel {
      font-weight: 900;
      color: #C83F77;
      text-decoration-color: transparent;
      margin: 1rem 0; }
    .contact-page .contact-info a {
      color: #000;
      text-decoration-color: transparent; }
      .contact-page .contact-info a:hover, .contact-page .contact-info a:focus {
        color: #C83F77; }
    .contact-page .contact-info p {
      padding: 0;
      margin: 0;
      font-size: 1.2rem;
      line-height: 1.8rem; }

.gallery {
  width: 100%;
  background: linear-gradient(180deg, #32327b 0%, #32327b 50%, #19193e 100%);
  padding: 4rem 0;
  text-align: center; }
  .gallery h2 {
    color: #FFF;
    padding: 0;
    margin: 0 0 0.5rem 0; }
  .gallery p {
    color: #FFF;
    padding: 0;
    margin: 0; }
  .gallery .showroom-gallery {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    margin-top: 2rem; }
    .gallery .showroom-gallery a {
      width: 100%;
      height: 250px;
      margin: 0 1rem;
      border-radius: 6px;
      overflow: hidden; }
      .gallery .showroom-gallery a img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .gallery .showroom-gallery button {
      font-size: 0;
      appearance: none;
      cursor: pointer;
      border: 1px solid #FFF;
      background: none;
      border-radius: 100px;
      padding: 0.3rem;
      margin: 0 0.3rem; }
    .gallery .showroom-gallery .slick-dots {
      list-style-type: none;
      padding: 1rem 0;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center; }
    .gallery .showroom-gallery .slick-active button {
      background: #FFF; }

.cta {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  .cta .text {
    width: 100%;
    margin-bottom: 2rem; }
    @media (min-width: 801px) {
      .cta .text {
        width: 60%;
        padding: 0 4rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin-bottom: 0; } }
    .cta .text h2 {
      font-size: 2.5rem;
      line-height: 3rem;
      background: linear-gradient(145deg, #32327B 0%, #2BABD3 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent; }
    .cta .text .boxes {
      width: 100%;
      display: flex;
      flex-wrap: wrap; }
      .cta .text .boxes .box {
        width: 100%;
        font-size: 1.1rem;
        display: flex;
        flex-direction: column; }
        @media (min-width: 801px) {
          .cta .text .boxes .box {
            width: 50%; } }
        .cta .text .boxes .box h3 {
          background: linear-gradient(145deg, #32327B 0%, #2BABD3 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          padding: 0;
          margin: 0 0 0.5rem 0; }
        .cta .text .boxes .box a {
          color: #000;
          text-decoration-color: transparent; }
          .cta .text .boxes .box a:hover, .cta .text .boxes .box a:focus {
            color: #C83F77; }
    .cta .text address {
      font-size: 1.1rem;
      font-style: normal;
      line-height: 1.8rem; }
  .cta .form {
    width: 100%;
    border-radius: 10px;
    overflow: hidden; }
    @media (min-width: 801px) {
      .cta .form {
        width: 40%; } }

.std-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: .5s; }

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