/*
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 */
h1 {
  font-size: 2rem;
  color: #707070;
  font-family: roboto, serif;
  padding: 0;
  margin: 0 0 1rem 0;
}
@media (min-width: 800px) {
  h1 {
    font-size: 2.2rem;
  }
}

h2 {
  font-size: 1.8rem;
  color: #707070;
  font-family: roboto, serif;
  margin: 0 0 1rem 0;
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  text-align: center;
}
@media (min-width: 800px) {
  h2 {
    font-size: 2rem;
  }
}
h2:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 80%;
}
@media (min-width: 800px) {
  h2:after {
    bottom: 0;
    left: 0;
    right: unset;
    margin: 0;
  }
}

h3 {
  font-size: 1.6rem;
  color: #707070;
  font-family: roboto, serif;
  margin: 0 0 1rem 0;
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  text-align: center;
}
h3:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 80%;
}
@media (min-width: 800px) {
  h3:after {
    bottom: 0;
    left: 0;
    right: unset;
    margin: 0;
  }
}

h4 {
  font-size: 1.6rem;
  color: #707070;
  font-family: roboto, serif;
  padding: 0;
  margin: 0 0 0.25rem 0;
}

p {
  font-size: 1rem;
  color: #707070;
  padding: 0;
  margin: 0 0 1rem 0;
}

a {
  font-size: 1rem;
  color: #707070;
  text-decoration-color: transparent;
  transition: 0.3s;
}
a:hover, a:focus {
  color: #4eabcc;
}

li {
  font-size: 1rem;
  color: #707070;
  padding: 0;
  margin: 0;
  line-height: 1.5rem;
}

ul {
  font-size: 1rem;
  color: #707070;
}

.page-layout h2:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: unset;
  height: 2px;
  width: 0;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.page-layout h2.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
@media (min-width: 576px) {
  .page-layout .wp-block-media-text {
    margin: 0 0 3rem 0;
  }
}
.page-layout .wp-block-media-text .wp-block-media-text__content {
  margin: 2rem 0;
  padding: 0;
}
@media (min-width: 576px) {
  .page-layout .wp-block-media-text .wp-block-media-text__content {
    padding: 0 0 0 2rem;
    margin: 0;
  }
}
.page-layout .wp-block-media-text .wp-block-media-text__media {
  position: relative;
}
.page-layout .wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 800px) {
  .page-layout .wp-block-media-text .wp-block-media-text__media img {
    height: 100%;
  }
}
@media (min-width: 576px) {
  .page-layout .has-media-on-the-right .wp-block-media-text__content {
    padding: 0 2rem 0 0;
  }
}
.page-layout .has-media-on-the-right .wp-block-media-text__media {
  position: relative;
}
@media (min-width: 800px) {
  .page-layout .has-media-on-the-right .wp-block-media-text__media:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0.5rem;
    z-index: -500;
    left: 0.5rem;
  }
}
.page-layout .has-media-on-the-right .wp-block-media-text__media img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 800px) {
  .page-layout .has-media-on-the-right .wp-block-media-text__media img {
    height: 100%;
  }
}

.introduction {
  width: 100%;
  max-width: 87.5rem;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .introduction {
    width: 60%;
  }
}
.introduction h2 {
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
}
.introduction h2:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 0%;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.introduction h2.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
.services-grid {
  width: 100%;
  max-width: 87.5rem;
  margin: 4rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 2rem;
}
@media (min-width: 800px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 0;
  }
}
.services-grid .services-box {
  width: 100%;
  text-align: center;
  padding: 2rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services-grid .services-box h2 {
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  margin: 0 0 2rem 0;
}
.services-grid .services-box h2:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 0%;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.services-grid .services-box h2.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
.services-grid .services-box .services-image {
  width: 100%;
  margin: 0 0 1rem 0;
  border: 2px solid #4eabcc;
  display: flex;
  position: relative;
}
.services-grid .services-box .services-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-grid .services-box .services-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.services-grid .services-box .btn {
  z-index: 10;
}
.services-grid .services-box:nth-child(1) {
  background: #F5F5F5;
}
@media (min-width: 800px) {
  .services-grid .services-box:nth-child(1) {
    margin: 4rem 0 0 0;
  }
}
@media (min-width: 800px) {
  .services-grid .services-box:nth-child(2) {
    height: 110%;
    padding: 4rem 2rem 4rem 2rem;
  }
}
.services-grid .services-box:nth-child(3) {
  background: #F5F5F5;
}
@media (min-width: 800px) {
  .services-grid .services-box:nth-child(3) {
    margin: 3rem 0 0 0;
  }
}

.usp-wrap {
  background: #F5F5F5;
  margin: 4rem 0 0 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
@media (min-width: 800px) {
  .usp-wrap {
    margin: 8rem 0 0 0;
  }
}
.usp-wrap .usp-bar {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 1rem 0;
}
.usp-wrap .usp-bar .usp-box {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.usp-wrap .usp-bar .usp-box .heading {
  margin: 0.5rem 0 0 0;
}
.usp-wrap .usp-bar .usp-box .circle {
  background: #4eabcc;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-wrap .usp-bar .usp-box .iconify {
  font-size: 2.5rem;
  z-index: 10;
  position: relative;
}

.review-wrap {
  width: 100%;
  max-width: 87.5rem;
  margin: 4rem auto;
  padding: 0 1rem;
}
.review-wrap .review-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.review-wrap .review-content h2 {
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  margin: 0 0 2rem 0;
}
.review-wrap .review-content h2:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 0%;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.review-wrap .review-content h2.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
.review-wrap .review-content p {
  margin: 1rem 0 2rem 0;
}

.home-contact-us {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: static;
  background-position: right 50% top 50%;
  height: 350px;
}
@media (min-width: 800px) {
  .home-contact-us {
    background-attachment: fixed;
  }
}
.home-contact-us .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-contact-us .overlay .home-contact-us-box {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
}
.home-contact-us .overlay .home-contact-us-box .home-contact-us-container {
  color: #fff;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 800px) {
  .home-contact-us .overlay .home-contact-us-box .home-contact-us-container {
    width: 60%;
  }
}
.home-contact-us .overlay .home-contact-us-box .home-contact-us-container h2 {
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  margin: 0 0 2rem 0;
  color: #fff;
  text-align: center;
}
.home-contact-us .overlay .home-contact-us-box .home-contact-us-container h2:after {
  content: "";
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 0%;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.home-contact-us .overlay .home-contact-us-box .home-contact-us-container h2.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
.home-contact-us .overlay .home-contact-us-box .home-contact-us-container p {
  color: #fff;
}
.home-contact-us .overlay .home-contact-us-box .home-contact-us-container .cta {
  font-size: 1.4rem;
}
.home-contact-us .overlay .home-contact-us-box .home-contact-us-container .cta a {
  color: #fff;
  font-size: 1.4rem;
  transition: 0.3s;
  padding: 0.5rem 0 0 0;
  display: inline-block;
}
.home-contact-us .overlay .home-contact-us-box .home-contact-us-container .cta a:hover, .home-contact-us .overlay .home-contact-us-box .home-contact-us-container .cta a:focus {
  font-size: 1.6rem;
}

.page-layout .gform_wrapper {
  margin: 4rem 0 0 0;
}
.page-layout .gform_required_legend {
  display: none;
}
.page-layout .gform_button {
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid #4eabcc;
  color: #707070;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  background: none;
  z-index: 10 !important;
}
.page-layout .gform_button:after {
  position: absolute;
  transition: 0.3s;
  content: "";
  width: 0;
  left: -10%;
  bottom: 0;
  height: 120%;
  background: #4eabcc;
  transform: skewX(15deg);
  z-index: -1;
}
.page-layout .gform_button:hover {
  color: #4eabcc;
}
.page-layout .gform_button:hover:after {
  width: 120%;
}
.page-layout .gform_wrapper.gravity-theme input[type=color],
.page-layout .gform_wrapper.gravity-theme input[type=date],
.page-layout .gform_wrapper.gravity-theme input[type=datetime-local],
.page-layout .gform_wrapper.gravity-theme input[type=datetime],
.page-layout .gform_wrapper.gravity-theme input[type=email],
.page-layout .gform_wrapper.gravity-theme input[type=month],
.page-layout .gform_wrapper.gravity-theme input[type=number],
.page-layout .gform_wrapper.gravity-theme input[type=password],
.page-layout .gform_wrapper.gravity-theme input[type=search],
.page-layout .gform_wrapper.gravity-theme input[type=tel],
.page-layout .gform_wrapper.gravity-theme input[type=text],
.page-layout .gform_wrapper.gravity-theme input[type=time],
.page-layout .gform_wrapper.gravity-theme input[type=url],
.page-layout .gform_wrapper.gravity-theme input[type=week],
.page-layout .gform_wrapper.gravity-theme select,
.page-layout .gform_wrapper.gravity-theme textarea {
  background: #F5F5F5;
  border: none;
}

.error {
  width: 100%;
  background-image: url("/wp-content/uploads/2024/03/dog-main-header.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.error .overlay {
  width: 100%;
  height: 70vh;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.error .content {
  text-align: center;
}
.error .content h1 {
  color: #fff;
}
.error .content h2 {
  color: #fff;
}
.error .content h2:after {
  display: none;
}
.error .content p {
  color: #fff;
}
.error .content a {
  color: #fff;
}

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

.top-wrap {
  background: #F5F5F5;
  width: 100%;
}
.top-wrap .page-layout {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.top-wrap .page-layout h3 {
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
}
.top-wrap .page-layout h3:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: unset;
  height: 2px;
  width: 0;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.top-wrap .page-layout h3.scroll-animation:after {
  width: 80%;
  opacity: 1;
}

.page-layout .services-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .page-layout .services-container {
    flex-direction: row;
  }
}
.page-layout .services-container .main-content {
  width: 100%;
}
@media (min-width: 800px) {
  .page-layout .services-container .main-content {
    width: 70%;
    margin: 0 4rem 0 0;
  }
}
.page-layout .services-container .main-content .accordion-box {
  margin-bottom: 1rem;
}
.page-layout .services-container .main-content .accordion-box .accordion-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #707070;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  transition: all 0.3s;
  opacity: 1;
}
.page-layout .services-container .main-content .accordion-box .accordion-question h3 {
  color: #fff;
  margin: 0;
}
.page-layout .services-container .main-content .accordion-box .accordion-question h3:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  left: 0;
  right: unset;
  right: unset;
  height: 2px;
  width: 80%;
}
.page-layout .services-container .main-content .accordion-box .accordion-question .iconify {
  font-size: 2rem;
  color: #fff;
  transition: 0.3s;
}
.page-layout .services-container .main-content .accordion-box .active .iconify {
  transform: rotate(450deg) !important;
}
.page-layout .services-container .main-content .accordion-box .accordion-answer {
  max-height: 0;
  transition: max-height 0.5s;
  overflow: hidden;
  background: #F5F5F5;
}
.page-layout .services-container .main-content .accordion-box .accordion-answer p,
.page-layout .services-container .main-content .accordion-box .accordion-answer h2,
.page-layout .services-container .main-content .accordion-box .accordion-answer h3,
.page-layout .services-container .main-content .accordion-box .accordion-answer li,
.page-layout .services-container .main-content .accordion-box .accordion-answer ol {
  margin: 1rem;
  line-height: 1.5rem;
}
.page-layout .services-container .dividing-image {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  padding: 0 0 1rem;
}
.page-layout .services-container .side-bar {
  width: 100%;
  margin: 2rem 0 0 0;
}
@media (min-width: 800px) {
  .page-layout .services-container .side-bar {
    width: 30%;
    position: sticky;
    margin: 0;
    top: 1rem;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 0 1rem 0;
  }
}
.page-layout .services-container .side-bar .category-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 2rem;
}
.page-layout .services-container .side-bar .category-grid a .category-box {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}
.page-layout .services-container .side-bar .category-grid a .category-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.page-layout .services-container .side-bar .category-grid a .category-box .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  padding: 1rem;
}
.page-layout .services-container .side-bar .category-grid a .category-box .overlay h3 {
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  margin: 0;
  color: #fff;
}
.page-layout .services-container .side-bar .category-grid a .category-box .overlay h3:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 0;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.page-layout .services-container .side-bar .category-grid a .category-box .overlay h3.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
.page-layout .services-container .side-bar .category-grid a:hover .category-box img, .page-layout .services-container .side-bar .category-grid a:focus .category-box img {
  transform: scale(1.1);
}
.page-layout .services-container .side-bar h3:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  left: 0;
  height: 2px;
  width: 80%;
}

.bottom-wrap {
  width: 100%;
  background-image: url("/wp-content/uploads/2024/03/book-now-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 50%;
}
.bottom-wrap .overlay {
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.bottom-wrap .overlay .page-layout {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.bottom-wrap .overlay .page-layout h3 {
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  color: #fff;
}
.bottom-wrap .overlay .page-layout h3:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.bottom-wrap .overlay .page-layout h3.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
.bottom-wrap .overlay .page-layout p {
  color: #fff;
}
.bottom-wrap .overlay .page-layout p a {
  color: #fff;
}
.bottom-wrap .overlay .page-layout p a:hover, .bottom-wrap .overlay .page-layout p a:focus {
  color: #4eabcc;
}
.bottom-wrap .overlay .page-layout .btn {
  color: #fff;
}

.page-layout .prices-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .page-layout .prices-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }
}
.page-layout .prices-grid .price-box {
  background: #F5F5F5;
}
.page-layout .prices-grid .price-box .price-image {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}
.page-layout .prices-grid .price-box .price-content {
  padding: 1rem 2rem;
  overflow: hidden;
}
.page-layout .prices-grid .price-box .price-content h3 {
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
}
.page-layout .prices-grid .price-box .price-content h3:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: unset;
  height: 2px;
  width: 0;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
  transition-delay: 1s;
}
.page-layout .prices-grid .price-box .price-content h3.scroll-animation:after {
  width: 80%;
  opacity: 1;
}

.bottom-wrap {
  width: 100%;
  background-image: url("/wp-content/uploads/2024/03/book-now-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 50%;
}
.bottom-wrap .overlay {
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.bottom-wrap .overlay .page-layout {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.bottom-wrap .overlay .page-layout h3 {
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  color: #fff;
}
.bottom-wrap .overlay .page-layout h3:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: unset;
  height: 2px;
  width: 0;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.bottom-wrap .overlay .page-layout h3.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
.bottom-wrap .overlay .page-layout p {
  color: #fff;
}
.bottom-wrap .overlay .page-layout p a {
  color: #fff;
}
.bottom-wrap .overlay .page-layout .btn {
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid #4eabcc;
  color: #707070;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 3;
}
.btn:after {
  position: absolute;
  transition: 0.3s;
  content: "";
  width: 0;
  left: -10%;
  bottom: 0;
  height: 120%;
  background: #4eabcc;
  transform: skewX(15deg);
  z-index: -1;
}
.btn:hover {
  color: #fff;
}
.btn:hover:after {
  width: 120%;
}

.footer-wrap {
  background: #F5F5F5;
  width: 100%;
}
.footer-wrap .main-footer {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 1rem 0 1rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .footer-wrap .main-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-wrap .main-footer .footer-right {
  order: 2;
  text-align: center;
  padding: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .footer-wrap .main-footer .footer-right {
    flex-direction: row;
    text-align: left;
    padding: 0;
  }
}
.footer-wrap .main-footer .footer-right .inner-left {
  margin: 1rem 0 0 0;
}
@media (min-width: 800px) {
  .footer-wrap .main-footer .footer-right .inner-left {
    margin: 0;
  }
}
.footer-wrap .main-footer .footer-right .inner-left h2 {
  font-size: 1.3rem;
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  text-align: center;
}
.footer-wrap .main-footer .footer-right .inner-left h2:after {
  content: "";
  background: #4eabcc;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 0;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
@media (min-width: 800px) {
  .footer-wrap .main-footer .footer-right .inner-left h2:after {
    right: unset;
  }
}
.footer-wrap .main-footer .footer-right .inner-left h2.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
.footer-wrap .main-footer .footer-right .inner-left p {
  padding: 0 0 0.5rem 0;
}
@media (min-width: 800px) {
  .footer-wrap .main-footer .footer-right .inner-right {
    margin: 0 3rem 0 0;
  }
}
.footer-wrap .main-footer .footer-right .inner-right h2 {
  font-size: 1.3rem;
  display: inline-block;
  position: relative;
  padding: 0 0 0.5rem 0;
  text-align: center;
}
.footer-wrap .main-footer .footer-right .inner-right h2:after {
  content: "";
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 0;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
@media (min-width: 800px) {
  .footer-wrap .main-footer .footer-right .inner-right h2:after {
    right: unset;
  }
}
.footer-wrap .main-footer .footer-right .inner-right h2.scroll-animation:after {
  width: 80%;
  opacity: 1;
}
.footer-wrap .main-footer .footer-right p {
  padding: 0 0 0.5rem 0;
  margin: 0;
}
.footer-wrap .main-footer .footer-right h3 {
  font-size: 1.2rem;
  display: block;
  text-align: center;
  margin: 0;
}
.footer-wrap .main-footer .footer-right h3:after {
  display: none;
}
@media (min-width: 800px) {
  .footer-wrap .main-footer .footer-right h3 {
    text-align: left;
  }
}
.footer-wrap .footer-left {
  order: 1;
  text-align: center;
}
@media (min-width: 800px) {
  .footer-wrap .footer-left {
    text-align: left;
  }
}
.footer-wrap .footer-left .logo {
  margin: 0 0 0.25rem 0;
}
.footer-wrap .footer-left .logo img {
  max-width: 8rem;
  height: auto;
}
.footer-wrap .footer-left .contact-details a {
  display: inline-block;
  transition: 0.3s;
  margin: 0 0 0.25rem 0;
}
.footer-wrap .footer-left .contact-details a:hover, .footer-wrap .footer-left .contact-details a:focus {
  color: #4eabcc;
}
.footer-wrap .footer-left .contact-details h3 {
  margin: 0 0 0.25rem 0;
  padding: 0;
  display: block;
  text-align: center;
}
.footer-wrap .footer-left .contact-details h3:after {
  display: none;
}
@media (min-width: 800px) {
  .footer-wrap .footer-left .contact-details h3 {
    text-align: left;
  }
}
.footer-wrap .footer-left .contact-details h3 a {
  font-size: 2rem;
}
.footer-wrap .footer-left .contact-details h3 a:hover, .footer-wrap .footer-left .contact-details h3 a:focus {
  color: #4eabcc;
}
.footer-wrap .footer-left .contact-details .iconify {
  font-size: 2rem;
  color: #4eabcc;
  transition: 0.3s;
}
.footer-wrap .footer-left .contact-details .iconify:hover, .footer-wrap .footer-left .contact-details .iconify:focus {
  color: #707070;
}

.footer-bottom {
  width: 100%;
  max-width: 87.5rem;
  padding: 1rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 800px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    margin: 2rem auto 0 auto;
  }
}
.footer-bottom .policies a {
  transition: 0.3s;
  font-size: 1rem;
}
.footer-bottom .policies a:hover, .footer-bottom .policies a:focus {
  color: #4eabcc;
}
.footer-bottom .policies p {
  font-size: 1rem;
  margin: 0;
}
.footer-bottom .copyright a {
  transition: 0.3s;
  font-size: 1rem;
}
.footer-bottom .copyright a:hover, .footer-bottom .copyright a:focus {
  color: #4eabcc;
}
.footer-bottom .copyright p {
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
}
@media (min-width: 800px) {
  .footer-bottom .copyright p {
    margin: 0;
  }
}

.home.active {
  height: 100%;
  overflow: hidden !important;
}

.site-header {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}
.site-header .container {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #fff;
}
.site-header .container .phone-number {
  display: none;
}
@media (min-width: 992px) {
  .site-header .container .phone-number {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.site-header .container .phone-number .iconify {
  margin: 0 0.5rem 0 0;
  color: #707070;
  font-size: 1.5rem;
}
.site-header .container .phone-number a {
  color: #707070;
}
.site-header .container .phone-number a:hover, .site-header .container .phone-number a:focus {
  color: #4eabcc;
}
.site-header .container .phone-number-mobile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.site-header .container .phone-number-mobile .iconify {
  margin: 0 0.5rem 0 0;
  color: #707070;
  font-size: 1.5rem;
}
.site-header .container .phone-number-mobile a {
  color: #707070;
}
.site-header .container .phone-number-mobile a:hover, .site-header .container .phone-number-mobile a:focus {
  color: #000;
}
.site-header .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.site-header .logo img {
  max-width: 8rem;
  height: auto;
  margin: 0 1rem 0 0;
}
@media (min-width: 400px) {
  .site-header .logo img {
    max-width: 8rem;
  }
}
.site-header .logo a {
  display: flex;
}
.site-header .logo h3 {
  margin: 0;
  color: #707070;
}
.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 {
  color: #707070;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.site-header #mobile-button .iconify:hover, .site-header #mobile-button .iconify:focus {
  color: #4eabcc;
}
@media (min-width: 800px) {
  .site-header #mobile-button {
    display: none;
  }
}
.site-header #close-button {
  position: absolute;
  top: 80px;
  right: 1rem;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.site-header #close-button .iconify {
  color: #707070;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.site-header #close-button .iconify:hover, .site-header #close-button .iconify:focus {
  color: #4eabcc;
}

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 1rem;
  margin: 0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
@media (min-width: 800px) {
  #mobile-menu {
    display: none;
  }
}
#mobile-menu .phone-contact-details {
  position: relative;
}
#mobile-menu .phone-contact-details:after {
  content: "";
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.1em;
  background: #4eabcc;
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
#mobile-menu .phone-contact-details:hover::after, #mobile-menu .phone-contact-details:focus::after {
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
}
#mobile-menu .phone-contact-details .phone-contact {
  padding: 0 0.5rem 0 0;
}
#mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
#mobile-menu .menu-main-menu-container {
  width: 100%;
}
#mobile-menu .menu {
  text-align: center;
  margin: 20px 0;
}
#mobile-menu .menu li a {
  display: inline-block;
  margin: 0.5rem 0;
  position: relative;
}
#mobile-menu .menu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.1em;
  background: #4eabcc;
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
#mobile-menu .menu li a:hover::after, #mobile-menu .menu li a:focus::after {
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
}
#mobile-menu .sub-menu {
  list-style-type: none;
  padding: 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  display: none;
}
#mobile-menu .sub-menu.active {
  display: block;
}

#main-menu {
  display: none;
}
@media (min-width: 800px) {
  #main-menu {
    display: flex;
    margin: 0;
  }
}
#main-menu .menu {
  position: relative;
}
#main-menu .menu li {
  position: relative;
}
#main-menu .menu li .sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
#main-menu .menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
#main-menu .sub-menu {
  position: absolute;
  top: 35px;
  right: 0;
  padding-left: 0;
  max-width: 300px;
  min-width: 150px;
  background: #707070;
}
#main-menu .sub-menu a {
  display: block;
  padding: 0.5rem;
}

.menu {
  list-style-type: none;
  padding-left: 0;
}
.menu li {
  padding: 0.5rem 0;
}
@media (min-width: 800px) {
  .menu li {
    display: inline;
    padding: 0;
    margin: 0.5rem 1rem;
  }
  .menu li:last-child {
    margin: 0.5rem 0 0.5rem 1rem;
  }
}
.menu a {
  color: #707070;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 400;
  display: inline-block;
}
.menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.1em;
  background-color: #4eabcc;
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
.menu a:hover::after, .menu a:focus::after {
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
}

.header-contact-wrap {
  display: none;
}
@media (min-width: 800px) {
  .header-contact-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.header-contact-wrap .header-contact {
  display: none;
}
@media (min-width: 800px) {
  .header-contact-wrap .header-contact {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: space-between;
    margin: 0 0 1rem 0;
  }
}
.header-contact-wrap .header-contact .bx {
  padding: 0 0.5rem 0 0;
}
.header-contact-wrap .header-contact a {
  padding: 0 1rem 0 0;
  font-size: 0.8rem;
}
.header-contact-wrap .header-contact p {
  margin: 0;
  font-size: 0.8rem;
}

.menu-item-92 {
  padding: 0.5rem 1rem 0 1rem;
}

.mobile-top {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #F5F5F5;
}
@media (min-width: 800px) {
  .mobile-top {
    display: none;
  }
}
.mobile-top .header-contact {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: space-between;
}
.mobile-top .header-contact .bx {
  padding: 0 0.5rem 0 0;
}
.mobile-top .header-contact a {
  padding: 0 1rem 0 0;
  font-size: 0.8rem;
}
.mobile-top .header-contact p {
  margin: 0;
  font-size: 0.8rem;
}

.page-header {
  width: 100%;
  height: 250px;
  position: relative;
}
.page-header .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}
.page-header .overlay h1 {
  padding: 0;
  margin: 0;
  color: #fff;
  text-transform: capitalize;
}
.page-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slides {
  max-height: 400px;
  overflow: hidden;
  margin: 0 auto;
}

.slide-img {
  width: 100%;
  height: 400px;
  position: relative;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 75% 0;
     object-position: 75% 0;
}
.slide-img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.slide-img .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  text-align: center;
}
.slide-img .container h1 {
  color: #fff;
  position: relative;
  margin: 0 0 0.5rem 0;
  padding: 0 0 0.5rem 0;
  font-size: 2.6rem;
}
.slide-img .container h1:after {
  content: "";
  background: #fff;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 0;
  opacity: 0;
  transition: 2s;
  transition-delay: 1s;
}
.slide-img .container h1.scroll-animation:after {
  opacity: 1;
  width: 80%;
}
.slide-img .container p {
  color: #fff;
  font-size: 1.2rem;
}
.slide-img .container .btn {
  z-index: 1000;
  color: #fff;
  border: 2px solid #fff;
}
.slide-img .container .btn:after {
  background: #fff;
}
.slide-img .container .btn:hover {
  color: #707070;
}

svg#svg-sprite {
  display: none;
}

.ajax-loader {
  position: absolute;
  top: 85%;
  right: -10%;
  transform-origin: 50% 50%;
  transform: rotate(90deg) translate(-50%, 0%);
  font-size: 50px;
  width: 1rem;
  height: 3rem;
  color: #4eabcc;
  z-index: -100;
}
@media (min-width: 800px) {
  .ajax-loader {
    top: 55%;
    right: 20%;
    transform: rotate(0deg) translate(-50%, 0%);
  }
}
.ajax-loader .paw {
  width: 2rem;
  height: 2rem;
  animation: 6050ms pawAnimation ease-in-out forwards;
  opacity: 0;
}
@media (min-width: 800px) {
  .ajax-loader .paw {
    width: 4rem;
    height: 4rem;
  }
}
.ajax-loader .paw svg {
  width: 100%;
  height: 100%;
}
.ajax-loader .paw .icon {
  fill: currentColor;
}
.ajax-loader .paw:nth-child(odd) {
  transform: rotate(-10deg);
}
.ajax-loader .paw:nth-child(even) {
  transform: rotate(10deg) translate(125%, 0);
}
.ajax-loader .paw:nth-child(1) {
  animation-delay: 2s;
}
.ajax-loader .paw:nth-child(2) {
  animation-delay: 1.6s;
}
.ajax-loader .paw:nth-child(3) {
  animation-delay: 1.2s;
}
.ajax-loader .paw:nth-child(4) {
  animation-delay: 0.8s;
}
.ajax-loader .paw:nth-child(5) {
  animation-delay: 0.4s;
}
.ajax-loader .paw:nth-child(6) {
  animation-delay: 0s;
}
.no-cssanimations .ajax-loader .paw {
  opacity: 1;
}

@keyframes pawAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
html {
  box-sizing: border-box;
  animation: fadein 2s;
}

* {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

.entry-content .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  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;
  }
}
.page-layout {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}
@media (min-width: 800px) {
  .page-layout {
    padding: 5rem 2rem;
  }
}/*# sourceMappingURL=style.css.map */