/*
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 */
@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes scroller {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  25% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  75% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0); } }
.site-header {
  background: #282555;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0; }
  @media (min-width: 800px) {
    .site-header {
      position: relative; } }
  .site-header .logo {
    width: 50%;
    display: flex;
    align-items: center; }
    @media (min-width: 800px) {
      .site-header .logo {
        width: auto; } }
    .site-header .logo img {
      width: 80px;
      height: auto; }
      @media (min-width: 800px) {
        .site-header .logo img {
          width: 100px; } }
    .site-header .logo h1 {
      padding: 0.4rem 0 0 1rem;
      margin: 0;
      font-size: 1.6rem;
      line-height: 1.8rem;
      color: #FFF;
      font-weight: 400; }
  .site-header .mobile-right {
    padding-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (min-width: 800px) {
      .site-header .mobile-right {
        display: none; } }
    .site-header .mobile-right iconify-icon {
      color: #FFF;
      transition: .3s; }
      .site-header .mobile-right iconify-icon:hover, .site-header .mobile-right iconify-icon:focus {
        color: #C49A6C; }
    .site-header .mobile-right a, .site-header .mobile-right button {
      margin-left: 1.5rem;
      display: flex;
      align-items: center; }
    .site-header .mobile-right button {
      appearance: none;
      cursor: pointer;
      padding: 0;
      background: none;
      border: 0;
      position: relative;
      display: block;
      width: 26px;
      height: 26px; }
      .site-header .mobile-right button span {
        width: 26px;
        height: 2px;
        background: #FFF;
        position: relative;
        display: block;
        transition: .3s; }
        .site-header .mobile-right button span:before, .site-header .mobile-right button span:after {
          content: ' ';
          position: absolute;
          width: 100%;
          height: 2px;
          background: #FFF;
          top: -8px;
          left: 0;
          transition: .3s; }
        .site-header .mobile-right button span:after {
          top: auto;
          bottom: -8px; }
      .site-header .mobile-right button:hover span, .site-header .mobile-right button:focus span {
        background: #C49A6C; }
        .site-header .mobile-right button:hover span:before, .site-header .mobile-right button:hover span:after, .site-header .mobile-right button:focus span:before, .site-header .mobile-right button:focus span:after {
          background: #C49A6C; }

.mobile-btn.active span {
  background: none !important; }
  .mobile-btn.active span:before {
    top: 0 !important;
    transform: rotate(-45deg);
    left: 0; }
  .mobile-btn.active span:after {
    bottom: 0 !important;
    transform: rotate(45deg);
    left: 0; }

.custom-logo-link {
  display: flex; }

#mobile-menu {
  position: absolute;
  top: 80px;
  left: 0;
  background: #282555;
  width: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: .3s ease-in-out;
  z-index: 100; }
  @media (min-width: 800px) {
    #mobile-menu {
      display: none; } }
  #mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  #mobile-menu .menu {
    list-style-type: none;
    padding: 0.5rem 0;
    margin: 0; }
    #mobile-menu .menu li a {
      padding: 0.6rem 1rem;
      display: block;
      font-size: 1.2rem;
      color: #FFF;
      font-weight: 300;
      text-decoration-color: transparent;
      transition: .3s; }
      #mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
        background: #C49A6C;
        color: #000; }

.header-right {
  display: none; }
  @media (min-width: 800px) {
    .header-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      padding: 1rem 2rem 1rem 0; } }
  .header-right .btn {
    background: #C49A6C;
    color: #000;
    text-decoration-color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 300;
    transition: .3s;
    font-size: 1rem;
    padding: 0.5rem 2rem; }
    .header-right .btn:before {
      background: #b58148; }
    .header-right .btn:hover, .header-right .btn:focus {
      color: #FFF; }
  .header-right .menu {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0; }
    .header-right .menu li {
      margin: 0 1rem;
      position: relative; }
      .header-right .menu li a {
        color: #FFF;
        text-decoration-color: transparent;
        transition: .3s;
        font-weight: 200;
        font-size: 1.1rem; }
        .header-right .menu li a:hover, .header-right .menu li a:focus {
          color: #C49A6C; }
      .header-right .menu li:before {
        content: "/";
        position: absolute;
        left: -1rem;
        color: #C49A6C;
        top: 50%;
        transform: translateY(-50%); }
      .header-right .menu li:first-child:before {
        display: none; }
      .header-right .menu li:last-child {
        margin-right: 0; }

.sub-menu {
  list-style-type: none;
  padding: 0 0 0 1rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden; }
  @media (min-width: 800px) {
    .sub-menu {
      opacity: 0;
      visibility: hidden;
      position: absolute;
      height: auto;
      background: #282555;
      width: 250px;
      padding: 1rem;
      transition: .3s; }
      .sub-menu li {
        margin: 0 !important;
        padding-bottom: 0.5rem; }
        .sub-menu li:before {
          display: none; } }
  .sub-menu.active {
    height: auto;
    opacity: 1;
    visibility: visible; }

@media (min-width: 800px) {
  .menu-item-has-children:hover .sub-menu, .menu-item-has-children:focus .sub-menu {
    opacity: 1;
    visibility: visible; } }

.footer-cta {
  width: 100%;
  height: 600px;
  position: relative; }
  .footer-cta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative; }
  .footer-cta .box {
    position: absolute;
    width: 90%;
    max-width: 700px;
    height: 90%;
    background: #282555;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s; }
    .footer-cta .box.active {
      opacity: 1;
      visibility: visible; }
    .footer-cta .box:before {
      width: 95%;
      height: 95%;
      content: ' ';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: 2px solid #C49A6C; }
      @media (min-width: 800px) {
        .footer-cta .box:before {
          height: 90%; } }
    @media (min-width: 800px) {
      .footer-cta .box {
        height: 60%; } }
    .footer-cta .box h2 {
      font-size: 2rem;
      color: #FFF;
      padding: 0;
      margin: 0; }
      @media (min-width: 800px) {
        .footer-cta .box h2 {
          font-size: 2.5rem; } }
      .footer-cta .box h2 span {
        color: #C49A6C; }
    .footer-cta .box p {
      color: #FFF; }
    .footer-cta .box .btn {
      margin-top: 1rem; }
      .footer-cta .box .btn:before {
        background: #b58148; }
      .footer-cta .box .btn:hover, .footer-cta .box .btn:focus {
        color: #FFF; }

.site-footer {
  width: 100%;
  padding: 2rem;
  background: #282555; }
  .site-footer .footer-top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap; }
    @media (min-width: 800px) {
      .site-footer .footer-top {
        justify-content: space-between;
        align-items: flex-start; } }
    .site-footer .footer-top .logo {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem; }
      @media (min-width: 800px) {
        .site-footer .footer-top .logo {
          width: auto; } }
      .site-footer .footer-top .logo img {
        width: 120px;
        height: 120px;
        display: block; }
    .site-footer .footer-top .socials iconify-icon {
      background: #FFF;
      padding: 0.5rem;
      margin: 0 0.5rem;
      color: #282555;
      transition: .3s; }
      .site-footer .footer-top .socials iconify-icon:hover, .site-footer .footer-top .socials iconify-icon:focus {
        background: #C49A6C;
        color: #282555; }
  .site-footer .boxes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0; }
    .site-footer .boxes .box {
      width: 100%;
      text-align: center; }
      @media (min-width: 800px) {
        .site-footer .boxes .box {
          width: auto;
          text-align: left;
          padding-right: 6rem; } }
      .site-footer .boxes .box p {
        color: #FFF; }
        .site-footer .boxes .box p strong {
          font-weight: 500; }
        .site-footer .boxes .box p a {
          color: #FFF;
          text-decoration-color: transparent; }
      .site-footer .boxes .box .small {
        font-size: 0.8rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 2rem;
  color: #FFF;
  font-size: 0.9rem;
  text-align: center; }
  @media (min-width: 800px) {
    .footer-bottom {
      text-align: left; } }
  .footer-bottom a {
    color: #FFF;
    text-decoration-color: transparent; }

.homeCarousel {
  width: 100%;
  height: calc(100svh - 80px);
  z-index: 1; }
  @media (min-width: 800px) {
    .homeCarousel {
      height: calc(100svh - 100px); } }
  .homeCarousel .swiper-slide {
    position: relative; }
    .homeCarousel .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .homeCarousel .swiper-slide .overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 2rem 2rem 4rem 2rem;
      box-sizing: border-box;
      text-align: center; }
      @media (min-width: 800px) {
        .homeCarousel .swiper-slide .overlay {
          padding: 2rem 2rem 6rem 2rem; } }
      .homeCarousel .swiper-slide .overlay .title {
        font-family: "superior-title", serif;
        font-size: 2.5rem;
        line-height: 2.8rem;
        font-weight: 100;
        color: #FFF;
        padding: 0;
        margin: 0;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 1s ease;
        animation-delay: .3s;
        animation-fill-mode: forwards; }
        @media (min-width: 992px) {
          .homeCarousel .swiper-slide .overlay .title {
            font-size: 4rem;
            line-height: 4.2rem;
            letter-spacing: 0.1rem; } }
      .homeCarousel .swiper-slide .overlay .subtitle {
        font-size: 1.2rem;
        color: #FFF;
        padding: 0;
        margin: 0.5rem 0 0 0;
        font-weight: 300;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 1s ease;
        animation-delay: .5s;
        animation-fill-mode: forwards; }
        @media (min-width: 992px) {
          .homeCarousel .swiper-slide .overlay .subtitle {
            font-size: 1.4rem;
            font-weight: 100;
            padding: 0;
            margin: 0; } }

.down {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #FFF;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scroller 1s linear infinite, fadein 1s ease;
  animation-delay: .7s;
  animation-fill-mode: forwards; }
  .down iconify-icon {
    color: #C49A6C; }

.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;
  scroll-behavior: smooth; }

* {
  box-sizing: inherit; }

h1, h2, h3 {
  font-family: "superior-title", serif; }

h1 {
  font-weight: 500; }

h2 {
  font-weight: 100; }

p, li {
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: 300; }

.btn, #gform_submit_button_1, .wp-block-button__link, #gform_submit_button_2 {
  background: #C49A6C;
  padding: 0.8rem 2rem;
  color: #000;
  display: inline-block;
  text-decoration-color: transparent;
  transition: .3s;
  font-size: 1rem;
  border-radius: 200px;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .btn:before, #gform_submit_button_1:before, .wp-block-button__link:before, #gform_submit_button_2:before {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #282555;
    z-index: -1;
    transition: .3s; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus, .wp-block-button__link:hover, .wp-block-button__link:focus, #gform_submit_button_2:hover, #gform_submit_button_2:focus {
    color: #C49A6C; }
    .btn:hover:before, .btn:focus:before, #gform_submit_button_1:hover:before, #gform_submit_button_1:focus:before, .wp-block-button__link:hover:before, .wp-block-button__link:focus:before, #gform_submit_button_2:hover:before, #gform_submit_button_2:focus:before {
      left: 0; }

#gform_submit_button_1, #gform_submit_button_2 {
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.7rem 2rem; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-family: "Outfit", sans-serif; }

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

.swiper-button-prev {
  background: #fff;
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  padding: .5rem;
  border-radius: 100%; }
  .swiper-button-prev:after {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    color: #111;
    top: 50%;
    left: -1px;
    padding: .5rem;
    position: relative; }

.swiper-button-next {
  background: #fff;
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  padding: .5rem;
  border-radius: 100%; }
  .swiper-button-next:after {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    color: #111;
    top: 50%;
    left: 1px;
    padding: .5rem;
    position: relative; }

main {
  padding-top: 80px; }
  @media (min-width: 800px) {
    main {
      padding-top: 0; } }

.home-text {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 992px) {
    .home-text {
      padding: 6rem 2rem; } }
  @media (min-width: 800px) {
    .home-text .wp-block-columns {
      padding-bottom: 0;
      margin-bottom: 0; } }
  .home-text .wp-block-button__link {
    margin-top: 1rem; }
  .home-text h1 {
    font-size: 2.5rem;
    padding: 0;
    margin: 0;
    display: inline-block;
    color: #282555;
    position: relative;
    font-weight: 500; }
    @media (min-width: 800px) {
      .home-text h1 {
        margin-top: 1.3rem; } }
    .home-text h1:before {
      content: 'Welcome To';
      position: absolute;
      font-size: 1.3rem;
      top: -1.2rem; }
    .home-text h1:after {
      content: " ";
      position: absolute;
      width: 0;
      height: 3px;
      background: #C49A6C;
      bottom: 0;
      left: 0;
      transition: .4s ease-in-out; }
  .home-text h2 {
    color: #282555;
    font-weight: 100; }
  .home-text :where(.wp-block-columns.is-layout-flex) {
    gap: 0; }
    @media (min-width: 800px) {
      .home-text :where(.wp-block-columns.is-layout-flex) {
        gap: 6rem; } }
  @media (min-width: 800px) {
    .home-text p {
      margin: 0 0 1rem 0; } }
  .home-text.active h1:after {
    width: 100%; }

.home-services {
  width: 100%;
  background: #FAF8FF;
  padding: 4rem 1rem; }
  @media (min-width: 800px) {
    .home-services {
      padding: 6rem 2rem; } }
  .home-services h2 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: #282555;
    margin-bottom: 4rem; }
    @media (min-width: 800px) {
      .home-services h2 {
        padding: 0 2rem; } }
    .home-services h2 span {
      transition: .4s ease-in-out; }
    .home-services h2.active span {
      color: #C49A6C; }
  .home-services .services {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-gap: 4rem;
    grid-template-columns: 1fr; }
    @media (min-width: 576px) {
      .home-services .services {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 800px) {
      .home-services .services {
        padding: 0 2rem; } }
    @media (min-width: 992px) {
      .home-services .services {
        grid-template-columns: repeat(3, 1fr); } }
    .home-services .services .box {
      opacity: 0;
      transform: translateY(1rem);
      transition: .4s; }
      .home-services .services .box.active {
        opacity: 1;
        transform: translateY(0); }
      .home-services .services .box h3 {
        font-size: 1.8rem;
        font-weight: 300;
        color: #282555;
        padding: 0;
        margin: 0; }
      .home-services .services .box p {
        margin-top: 0; }
      .home-services .services .box a {
        font-family: "superior-title", serif;
        color: #282555;
        font-size: 1.2rem;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        text-decoration-color: transparent;
        font-weight: 200;
        transition: .3s; }
        .home-services .services .box a iconify-icon {
          margin-left: 1rem;
          color: #C49A6C;
          margin-top: -0.2rem;
          transition: .3s; }
        .home-services .services .box a:hover, .home-services .services .box a:focus {
          color: #C49A6C; }
          .home-services .services .box a:hover iconify-icon, .home-services .services .box a:focus iconify-icon {
            margin-left: 1.5rem; }
  .home-services .cta {
    background: #282555;
    padding: 2rem;
    color: #FFF;
    font-size: 1.1rem;
    line-height: 1.8rem;
    font-weight: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(1rem);
    transition: .4s; }
    .home-services .cta.active {
      opacity: 1;
      transform: translateY(0); }
    .home-services .cta .btn {
      margin-top: 2rem; }
      .home-services .cta .btn:before {
        background: #b58148; }
      .home-services .cta .btn:hover, .home-services .cta .btn:focus {
        color: #FFF; }

.why-us {
  width: 100%;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 800px) {
    .why-us {
      flex-direction: row-reverse; } }
  .why-us .image {
    width: 100%;
    height: 500px; }
    @media (min-width: 800px) {
      .why-us .image {
        width: 50%;
        height: 600px; } }
    .why-us .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .why-us .content {
    width: 100%;
    background: #282555;
    padding: 4rem 2rem; }
    @media (min-width: 800px) {
      .why-us .content {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; } }
    @media (min-width: 992px) {
      .why-us .content {
        padding: 4rem 6rem; } }
    .why-us .content h2 {
      color: #FFF;
      font-size: 2rem;
      padding: 0;
      margin: 0;
      opacity: 0;
      transform: translateY(1rem);
      transition: .3s; }
      @media (min-width: 800px) {
        .why-us .content h2 {
          font-size: 2.5rem; } }
      .why-us .content h2 span {
        color: #C49A6C; }
      .why-us .content h2.active {
        opacity: 1;
        transform: translateY(0); }
    .why-us .content p {
      color: #FFF;
      opacity: 0;
      transform: translateY(1rem);
      transition: .3s; }
      .why-us .content p.active {
        opacity: 1;
        transform: translateY(0); }
    .why-us .content .btn {
      margin-top: 1rem;
      opacity: 0;
      transform: translateY(1rem);
      transition: .3s;
      font-size: 1rem; }
      .why-us .content .btn.active {
        opacity: 1;
        transform: translateY(0); }
      .why-us .content .btn:before {
        background: #b58148; }
      .why-us .content .btn:hover, .why-us .content .btn:focus {
        color: #FFF; }

.home-testimonials {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
  position: relative; }
  @media (min-width: 800px) {
    .home-testimonials {
      padding: 4rem 2rem; } }
  @media (min-width: 992px) {
    .home-testimonials {
      padding: 6rem 2rem; } }
  .home-testimonials h2 {
    font-size: 2rem;
    padding: 0;
    margin: 0 0 2rem 0;
    color: #282555;
    opacity: 0;
    transform: translateY(1rem);
    transition: .3s; }
    .home-testimonials h2.active {
      opacity: 1;
      transform: translateY(0); }
    @media (min-width: 800px) {
      .home-testimonials h2 {
        font-size: 2.5rem; } }
  .home-testimonials .testimonials {
    width: 100%;
    opacity: 0;
    transform: translateY(1rem);
    transition: .3s;
    position: relative; }
    .home-testimonials .testimonials.active {
      opacity: 1;
      transform: translateY(0); }
    .home-testimonials .testimonials .swiper-slide {
      background: #FAF8FF;
      padding: 2rem;
      box-sizing: border-box; }
      .home-testimonials .testimonials .swiper-slide p {
        padding: 0;
        margin: 0; }
  .home-testimonials .swiper-pagination {
    position: relative;
    margin-top: 3rem; }
    .home-testimonials .swiper-pagination-bullet-active {
      background: #C49A6C; }

.page-header {
  width: 100%;
  height: 400px;
  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%;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .page-header .overlay h1 {
      font-size: 3.5rem;
      line-height: 3.5rem;
      padding: 0;
      margin: 0.5rem 0 0 0;
      color: #FFF;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .3s;
      animation-fill-mode: forwards; }

.contact-page {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  .contact-page .gfield_label {
    font-weight: 300 !important; }
  .contact-page .gfield_required {
    color: #C49A6C !important; }
  .contact-page input[type='text'], .contact-page input[type='email'], .contact-page input[type='tel'] {
    appearance: none;
    border: 1px solid #CCC;
    background: #FFF;
    height: 45px; }
  .contact-page select {
    appearance: none;
    /* Removes default arrow in some browsers */
    padding: 10px 14px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #FFF;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%201L5%205L9%201%22%20stroke%3D%22%23666%22%20stroke-width%3D%222%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    cursor: pointer;
    transition: border 0.2s ease; }
  .contact-page textarea {
    border: 1px solid #ccc; }
  .contact-page .gfield_consent_label {
    font-weight: 300; }
    .contact-page .gfield_consent_label a {
      color: #282555; }

.grecaptcha-badge {
  visibility: hidden; }

#map {
  width: 100%;
  height: 400px; }

.about {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  .about h2 {
    font-size: 2rem;
    color: #282555; }

.logos {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 4rem;
  padding: 0 2rem 4rem 2rem; }
  @media (min-width: 400px) {
    .logos {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 800px) {
    .logos {
      grid-template-columns: repeat(4, 1fr); } }
  .logos img {
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: .3s ease; }
    .logos img.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0); }

.meet-the-team {
  width: 100%;
  padding: 4rem 2rem;
  background: #FAF8FF; }
  .meet-the-team h2 {
    font-size: 2.5rem;
    padding: 0;
    margin: 0 0 2rem 0;
    color: #282555;
    text-align: center; }
    .meet-the-team h2.active span {
      color: #C49A6C; }
  .meet-the-team .team {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 4rem; }
    @media (min-width: 576px) {
      .meet-the-team .team {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 800px) {
      .meet-the-team .team {
        grid-template-columns: repeat(3, 1fr); } }
    .meet-the-team .team .team-member {
      width: 100%;
      background: #282555;
      padding: 0 0 1rem 0;
      opacity: 0;
      transform: translateY(1rem);
      transition: .3s; }
      .meet-the-team .team .team-member.active {
        opacity: 1;
        transform: translateY(0); }
      .meet-the-team .team .team-member .image {
        width: 100%;
        height: 450px; }
        .meet-the-team .team .team-member .image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .meet-the-team .team .team-member h3 {
        font-size: 1.6rem;
        color: #FFF;
        padding: 1rem 1rem 0 1rem;
        margin: 0;
        font-weight: 300; }
      .meet-the-team .team .team-member p {
        padding: 0 1rem 0 1rem;
        color: #FFF;
        margin: 0;
        font-size: 1.2rem; }

.single-service {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 800px) {
    .single-service {
      padding: 4rem 2rem; } }
  .single-service article {
    width: 100%;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .7s;
    animation-fill-mode: forwards; }
    @media (min-width: 800px) {
      .single-service article {
        width: 70%;
        padding-right: 4rem; } }
    .single-service article h2 {
      font-size: 2rem;
      color: #282555;
      padding: 0;
      margin: 0; }
    .single-service article p {
      padding: 0;
      margin: 0 0 1rem 0; }
  .single-service aside {
    width: 100%;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .7s;
    animation-fill-mode: forwards; }
    @media (min-width: 800px) {
      .single-service aside {
        width: 30%; } }
    .single-service aside .cta-box {
      width: 100%;
      background: #282555;
      padding: 1rem;
      position: sticky;
      top: 1rem; }
      .single-service aside .cta-box .border {
        border: 2px solid #C49A6C;
        padding: 1rem; }
      .single-service aside .cta-box h3 {
        font-weight: 400;
        color: #C49A6C;
        font-size: 1.5rem;
        padding: 0;
        margin: 0; }
      .single-service aside .cta-box p {
        color: #FFF;
        padding: 0;
        margin: 0 0 1rem 0; }
      .single-service aside .cta-box .btn {
        margin-top: 1rem;
        font-size: 0.9rem; }
      .single-service aside .cta-box .gfield_label {
        font-weight: 300;
        color: #FFF;
        font-size: 0.8rem; }
      .single-service aside .cta-box .gfield_required {
        color: #C49A6C; }
      .single-service aside .cta-box .gfield_consent_label {
        color: #FFF;
        font-size: 0.8rem; }
        .single-service aside .cta-box .gfield_consent_label a {
          color: #FFF; }
      .single-service aside .cta-box select {
        appearance: none;
        /* Removes default arrow in some browsers */
        padding: 10px 14px;
        height: 45px;
        border: 1px solid #ccc;
        border-radius: 0;
        background: #FFF;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%201L5%205L9%201%22%20stroke%3D%22%23666%22%20stroke-width%3D%222%22/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        cursor: pointer;
        transition: border 0.2s ease; }

.accordion {
  background: none;
  border: 1px solid #282555;
  color: #282555;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
  margin-bottom: 0.5rem;
  font-size: 1.1rem; }
  .accordion:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 1.1rem;
    float: right;
    margin-left: 5px;
    color: #282555; }
  .accordion.active:after {
    content: "\2796"; }

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: left; }

.faqs {
  width: 100%;
  background: #FAF8FF;
  padding: 4rem 0;
  text-align: center; }
  .faqs h2 {
    font-size: 2rem;
    color: #282555;
    padding: 0;
    margin: 0 0 2rem 0;
    opacity: 0;
    transform: translateY(1rem);
    transition: .3s; }
    .faqs h2.active {
      opacity: 1;
      transform: translateY(0); }
    @media (min-width: 800px) {
      .faqs h2 {
        font-size: 2.5rem; } }
  .faqs .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: .3s; }
    .faqs .container.active {
      opacity: 1;
      transform: translateY(0); }

.quote-main {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(1rem);
  transition: .3s; }
  .quote-main.active {
    opacity: 1;
    transform: translateY(0); }
  .quote-main .image {
    width: 150px;
    height: 150px;
    border-radius: 200px;
    overflow: hidden; }
    .quote-main .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .quote-main p {
    font-style: italic; }

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