@charset "UTF-8";
/**
Theme Name: Áit Slánú
Theme URL: www.ÁitSlánú.com
Author: Rory Doyle
Author URI: www.meartgood.com
Version: 1.0
*/
/*-----------------------------------
	BASE STYLE AND RESETS
-------------------------------------*/
html, button, input, select, textarea, body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
}
*, *::before, *::after {
  box-sizing: border-box;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
img.aligncenter {
  display: block;
  margin: 0 auto;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
body, html {
  height: 100%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
/*-----------------------------------------------------
-------------------------------------------------------
    MIXINS
-------------------------------------------------------
-------------------------------------------------------*/
/*-----------------------------------------------------
-------------------------------------------------------
    keyframes
-------------------------------------------------------
-------------------------------------------------------*/
@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1000px, 0, 0);
  }
}
@keyframes shine {
  0% {
    left: -100px;
  }
  /* start hidden */
  2.4% {
    left: -100px;
  }
  /* hold 1.5s */
  4% {
    left: 100%;
  }
  /* quick sweep over ~1s */
  100% {
    left: 100%;
  }
  /* wait ~60s before restarting */
}
@keyframes pressBounce {
  0% {
    margin-top: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  50% {
    margin-top: 8px;
    /* button moves down */
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    /* shadow shrinks */
  }
  70% {
    margin-top: 4px;
    /* small rebound */
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.25);
  }
  100% {
    margin-top: 0;
    /* back to normal */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
}
/*-----------------------------------------------------
-------------------------------------------------------
	GENERAL
-------------------------------------------------------
-------------------------------------------------------*/
a {
  color: #167d95;
  transition: all 0.3s ease;
}
a:visited {
  color: #065668;
}
a:active, a:hover {
  color: #d1952f;
}
.nolinky, a.nolinky:visited, a.nolinky:active, a.nolinky:hover {
  color: inherit;
  cursor: default;
  text-decoration: none;
}
body {
  background: #f9f5ee;
  color: #291703;
}
.body-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}
main {
  flex: 1;
}
.inner-wrap {
  margin: 0 auto;
  padding: 0 20px;
}
h1, h2, h3, h4 {
  font-family: "Gelasio", serif;
  color: #39220b;
}
h2, h3, h4 {
  color: #9e7123;
}
/*-----------------------------------------------------
-------------------------------------------------------
    HEADER
-------------------------------------------------------
-------------------------------------------------------*/
/*-----------------------------------
    LOGO
-------------------------------------*/
.logo {
  display: none;
}
/*-----------------------------------
    nav
-------------------------------------*/
.nav-wrap {
  background: #f9f5ee;
  height: 100%;
  right: -300px;
  top: 0;
  position: fixed;
  width: 300px;
  z-index: 10;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.nav-wrap button.menu-button.open-menu {
  right: 15px;
  position: fixed;
  top: 15px;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}
.nav-wrap button.menu-button.open-menu span {
  display: block;
  height: 3px;
  background-color: #d6d8ed;
  border-radius: 2px;
  transition: all 0.3s ease;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.nav-wrap ul {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 9;
}
.nav-wrap ul li {
  align-items: center;
  display: flex;
  height: 60px;
  margin: 10px 0;
}
.nav-wrap ul li a, .nav-wrap ul li a:visited, .nav-wrap ul li a:active {
  color: #fff;
  display: block;
  font: normal 400 16px "Open Sans", sans-serif;
  text-align: left;
  text-decoration: none;
  padding: 20px 14px 20px;
  position: relative;
  margin-left: 10px;
  width: 270px;
  -webkit-transition: all ease-in-out 0.9s;
  -moz-transition: all ease-in-out 0.9s;
  -ms-transition: all ease-in-out 0.9s;
  -o-transition: all ease-in-out 0.9s;
  transition: all ease-in-out 0.9s;
}
.nav-wrap ul li a::after, .nav-wrap ul li a::before, .nav-wrap ul li a:visited::after, .nav-wrap ul li a:visited::before, .nav-wrap ul li a:active::after, .nav-wrap ul li a:active::before {
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 2px;
  left: 20px;
  position: absolute;
  width: 100%;
  -webkit-transition: all ease-in-out 1.2s;
  -moz-transition: all ease-in-out 1.2s;
  -ms-transition: all ease-in-out 1.2s;
  -o-transition: all ease-in-out 1.2s;
  transition: all ease-in-out 1.2s;
}
.nav-wrap ul li a::before, .nav-wrap ul li a:visited::before, .nav-wrap ul li a:active::before {
  bottom: -6px;
  height: 2px;
  -webkit-transition: all ease-in-out 1.4s;
  -moz-transition: all ease-in-out 1.4s;
  -ms-transition: all ease-in-out 1.4s;
  -o-transition: all ease-in-out 1.4s;
  transition: all ease-in-out 1.4s;
}
.nav-wrap ul li.menu-book-parent {
  display: block;
  margin-top: 35px;
  text-align: center;
}
.nav-wrap ul li.menu-book-parent a {
  display: none;
}
.nav-wrap ul li.menu-book-parent a::after, .nav-wrap ul li.menu-book-parent a::before {
  display: none;
}
.nav-wrap ul li.menu-book-parent ul.sub-menu li {
  margin-top: 25px;
}
.nav-wrap ul li.menu-book-parent ul.sub-menu li:nth-child(2) a {
  background: #71c777;
}
.nav-wrap ul li.menu-book-parent ul.sub-menu li:nth-child(2) a:hover {
  background: #87e18d;
}
.nav-wrap ul li.menu-book-parent ul.sub-menu li a {
  background: #3fb7d3;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  text-transform: capitalize;
  width: 80%;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  touch-action: manipulation;
  /* reduces delay on some browsers */
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.nav-wrap ul li.menu-book-parent ul.sub-menu li a:hover {
  background-color: #7acee1;
}
.nav-wrap ul li.menu-book-parent ul.sub-menu li a:active {
  animation: pressBounce 0.3s ease-in-out forwards;
}
.nav-wrap ul li.menu-book-parent ul.sub-menu li a::before {
  background-color: transparent;
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 60%);
  top: 0;
  left: -100px;
}
body.show-menu .nav-wrap button.menu-button span {
  background-color: #090f4b;
}
body.show-menu .nav-wrap button.menu-button span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
body.show-menu .nav-wrap button.menu-button span:nth-child(2) {
  opacity: 0;
}
body.show-menu .nav-wrap button.menu-button span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
body.reveal-menu .nav-wrap {
  right: 0;
}
body.reveal-menu .nav-wrap ul li a {
  color: #333333;
  margin-left: 0;
}
body.reveal-menu .nav-wrap ul li a::after {
  background-color: #92afc7;
  left: 11px;
}
body.reveal-menu .nav-wrap ul li a::before {
  background-color: #b5e1b8;
  left: 21px;
}
body.reveal-menu .nav-wrap ul li.menu-book-parent a::before {
  animation: shine 62.5s infinite linear;
}
body.reveal-menu .nav-wrap ul li.menu-book-parent a {
  color: #fff;
}
.body-wrap:before {
  background: -moz-linear-gradient(left, rgba(104, 200, 241, 0.4) 0%, #68c8f1 100%);
  background: -webkit-linear-gradient(left, rgba(104, 200, 241, 0.4) 0%, #68c8f1 100%);
  background: linear-gradient(to right, rgba(104, 200, 241, 0.4) 0%, #68c8f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6618c8f1", endColorstr="#ff68c8f1", GradientType=1);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -8;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  transition: z-index 0s ease;
}
.show-menu .body-wrap:before {
  opacity: 1;
  z-index: 8;
}
/*-----------------------------------------------------
-------------------------------------------------------
	HOME PAGE
-------------------------------------------------------
-------------------------------------------------------*/
/*-----------------------------------
	Home Banner 
-------------------------------------*/
.home-banner {
  position: relative;
  overflow: hidden;
}
.home-banner::before, .home-banner::after {
  content: "";
  display: block;
  height: 1200px;
  top: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.home-banner::before {
  background-color: #232121;
  opacity: 1;
}
.home-banner::after {
  background: url(../../images/banner-back-small.jpg);
  background-size: cover;
  background-repeat: repeat-y;
  opacity: 0.75;
}
.home-banner.infinite-scroll::after {
  background: url(../../images/banner-back-small-loop.jpg) repeat-x;
  background-size: 1500px;
  animation: slide 120s linear infinite;
  opacity: 0.8;
  width: 5076px;
}
.home-banner h1 {
  color: #fff;
  font: 400 60px "Forum", serif;
  font-family: "Forum", serif;
  margin: 30px 0 200px;
  text-align: center;
  position: relative;
  z-index: 2;
  /*
        &::after{
            background: url(../../images/logo-mobile-home-shadow.png);            
            background-size: contain;          
            background-position: center;
            background-repeat: no-repeat;
            margin-left: 8px;
            margin-top: 16px;
            opacity: 0.15;
        }
        */
}
.home-banner h1 span {
  color: #000;
  content: "";
  display: block;
  height: 100%;
  left: 8px;
  opacity: 0.2;
  top: 8px;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.home-banner h1::before, .home-banner h1::after {
  background: url(../../images/logo-mobile-home.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 180px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  margin-top: 8px;
  max-width: 320px;
  width: 100%;
}
.home-banner h2 {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  /*
        &::before{
            background: url(../../images/decal-curl--black1.png);
            background-position: center;
            background-repeat: no-repeat;  
            bottom: -43px;
            left: 5px;
            opacity: 0.25;
        }
        */
}
.home-banner h2::before, .home-banner h2::after {
  background: url(../../images/decal-curl-1.png);
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: crisp-edges;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  bottom: -30px;
  width: 100%;
}
.home-banner h2 span {
  display: none;
}
.home-banner .text-box {
  padding: 20px 0 0;
}
.home-banner .banner-intro {
  color: #fff;
  font-size: 18px;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
}
.home-banner .banner-intro span {
  display: none;
}
.button-box {
  text-align: center;
  padding: 0 0 25px;
}
.button-box div {
  height: 80px;
  padding: 10px 0;
}
.button-box div.book-person a {
  background: #25892b;
}
.button-box div.book-person a:hover {
  background-color: #3db144;
}
.button-box div a {
  background: #167d95;
  color: #fff;
  border-radius: 50px;
  box-shadow: 9px 6px 13px rgba(0, 0, 0, 0.6);
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin: 0 auto;
  max-width: 100%;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  width: 310px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  touch-action: manipulation;
  /* reduces delay on some browsers */
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.button-box div a:hover {
  background-color: #2b9db7;
}
.button-box div a:active {
  animation: pressBounce 0.3s ease-in-out forwards;
}
.button-box div a::before {
  background-color: transparent;
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 60%);
  top: 0;
  left: -100px;
  animation: shine 62.5s infinite linear;
}
/*-----------------------------------
    Home Banner - text 
-------------------------------------*/
.home-text {
  background: #efdab6;
  padding: 20px 0 30px;
}
.profile-pic {
  margin: 10px 0 30px;
  position: relative;
  text-align: center;
}
.profile-pic::before, .profile-pic::after {
  background: #e9ab40;
  border-radius: 100%;
  content: "";
  height: 210px;
  left: 50%;
  top: 50%;
  position: absolute;
  width: 210px;
  transform: translate(-50%, -50%);
}
.profile-pic::before {
  background: #ffe000;
  height: 220px;
  width: 220px;
}
.profile-pic img {
  border: 5px solid #ab8749;
  border-radius: 100%;
  overflow: hidden;
  height: 200px;
  position: relative;
  width: 200px;
  z-index: 5;
}
.profile-pic.profile-pic-placeholder {
  background: none;
  border-radius: 0;
}
.profile-pic.profile-pic-placeholder::after, .profile-pic.profile-pic-placeholder::before {
  display: none;
}
.profile-pic.profile-pic-placeholder img {
  border-width: 0;
}
/*-----------------------------------
    Home Credentials
-------------------------------------*/
.home-credentials {
  text-align: center;
  margin: 0 0 40px;
}
.home-credentials h2 {
  color: #9e7123;
  display: inline-block;
  font: 700 35px "Gelasio", serif;
  margin: 20px 0 65px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
.home-credentials h2::before {
  background: url(../../images/cred-decal.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: -42px;
  content: "";
  display: block;
  height: 44px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 176px;
}
.home-credentials .cred {
  background: #fff;
  border-radius: 6px;
  border-top: 1px solid #e9e7e7;
  margin: 0 0 20px;
  padding: 5px 5px 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px 0px;
}
.home-credentials .cred h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 25px;
  position: relative;
}
.home-credentials .cred h3::before {
  border-bottom: 1px dashed #605d5a;
  content: "";
  bottom: -14px;
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  width: 200px;
  transform: translateX(-50%);
}
.home-credentials a.cred-link, .home-credentials a.cred-link:visited, .home-credentials a.cred-link:active {
  color: #167d95;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  margin: 20px 0;
  padding: 5px 10px;
  position: relative;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.home-credentials a.cred-link::before, .home-credentials a.cred-link::after, .home-credentials a.cred-link:visited::before, .home-credentials a.cred-link:visited::after, .home-credentials a.cred-link:active::before, .home-credentials a.cred-link:active::after {
  background: #e9ab40;
  bottom: 0;
  content: "";
  left: 50%;
  height: 3px;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.home-credentials a.cred-link:before, .home-credentials a.cred-link:visited:before, .home-credentials a.cred-link:active:before {
  background: #ffe000;
}
.home-credentials a.cred-link:hover, .home-credentials a.cred-link:active {
  color: #d1952f;
}
.home-credentials a.cred-link:hover::before, .home-credentials a.cred-link:active::before {
  bottom: -9px;
}
.home-testi.home-quote {
  padding-bottom: 55px;
}
.home-testi.home-quote .testimonial-swiper .testimonial-content {
  padding: 15px 10px 10px;
}
.home-testi.home-quote .testimonial-swiper .testimonial-content .testimonial-text {
  font-size: 21px;
  font-weight: 400;
}
.home-testi.home-quote .testimonial-swiper .testimonial-content .testimonial-title {
  margin-top: 10px;
  font-size: 18px;
}
/*-----------------------------------
    Home Testimonials slider
-------------------------------------*/
.home-testi {
  background: url(../../images/testimonial-leaves.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 50px 0 35px;
}
.home-testi .testimonial-swiper {
  max-width: 800px;
  margin: 0 auto;
}
.home-testi .testimonial-swiper .swiper-pagination {
  display: none;
}
.home-testi .testimonial-swiper .swiper-button-next, .home-testi .testimonial-swiper .swiper-button-prev {
  margin-top: 20px;
}
.home-testi .testimonial-swiper .swiper-button-next:after, .home-testi .testimonial-swiper .swiper-button-prev:after {
  color: #1e4f6d;
  font-size: 40px;
  font-weight: 900;
}
.home-testi .testimonial-swiper .testimonial-content {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  text-align: center;
}
.home-testi .testimonial-swiper .testimonial-content .testimonial-image img {
  border-radius: 50%;
  margin-bottom: 10px;
}
.home-testi .testimonial-swiper .testimonial-content .testimonial-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.home-testi .testimonial-swiper .testimonial-content .testimonial-text {
  font-style: italic;
  font-weight: 600;
  padding: 0 25px;
}
.home-testi .testi-link {
  text-align: center;
}
.home-testi .testi-link a, .home-testi .testi-link a:visited, .home-testi .testi-link a:active {
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-shadow: 0px 0px 20px rgba(13, 13, 13, 0.96);
  margin: 0;
  padding: 5px 0;
  position: relative;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.home-testi .testi-link a::before, .home-testi .testi-link a::after, .home-testi .testi-link a:visited::before, .home-testi .testi-link a:visited::after, .home-testi .testi-link a:active::before, .home-testi .testi-link a:active::after {
  background: #e9ab40;
  bottom: 0;
  content: "";
  left: 50%;
  height: 3px;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.home-testi .testi-link a:before, .home-testi .testi-link a:visited:before, .home-testi .testi-link a:active:before {
  background: #ffe000;
}
.home-testi .testi-link a:hover, .home-testi .testi-link a:active {
  color: #8cddf0;
}
.home-testi .testi-link a:hover::before, .home-testi .testi-link a:active::before {
  bottom: -9px;
}
.home-testi .swiper-slide {
  opacity: 0;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.home-testi .swiper-slide.swiper-slide-active {
  opacity: 1;
}
/*-----------------------------------
    SINGLE PAGE
-------------------------------------*/
.page-title {
  text-align: center;
}
.page-title h1 {
  font: 700 42px "Gelasio", serif;
  color: #422a11;
  display: inline-block;
  text-align: center;
  margin: 40px 0 50px;
  position: relative;
}
.page-title h1::before, .page-title h1::after {
  background-color: #ab8749;
  bottom: -5px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 90%;
}
.page-title h1:after {
  background-color: #e9ab40;
  bottom: -10px;
  width: 70%;
}
.page-content {
  padding-bottom: 50px;
}
/*-----------------------------------
    ABOUT PAGE
-------------------------------------*/
.inner-wrap.inner-about .head-box.page-title h1 {
  margin: 30px 0;
}
.inner-wrap.inner-about h2 {
  margin: 40px 0 30px;
  text-align: center;
  position: relative;
}
.inner-wrap.inner-about h2 span {
  background: #f9f5ee;
  padding: 0 15px;
}
.inner-wrap.inner-about h2::before {
  background-color: #e9ab40;
  bottom: 50%;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}
.inner-wrap.inner-about .main-content div {
  margin-bottom: 70px;
}
.inner-wrap.inner-about .fees {
  text-align: center;
}
.inner-wrap.inner-about .fees strong {
  font-family: "Gelasio", serif;
}
.inner-wrap.inner-about .areas-list {
  text-align: center;
}
.inner-wrap.inner-about .areas-list span {
  border: 2px dashed #71c777;
  border-radius: 15px;
  display: inline-block;
  font-weight: 700;
  margin: 5px;
  padding: 5px 14px;
}
/*-----------------------------------
    UNIQUE PAGE HEADING
-------------------------------------*/
.head-box.page-title {
  text-align: center;
}
.head-box.page-title h1 {
  margin: 30px 0 0;
}
.head-box.page-title .intro-text {
  position: relative;
  margin: 10px auto 70px;
}
.head-box.page-title .intro-text::before {
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  height: 46px;
  left: 0;
  transform: scaleY(-1);
  bottom: -38px;
  position: absolute;
  width: 100%;
}
.head-box.page-title .intro-text div {
  display: inline-block;
  text-align: left;
  padding: 10px 0 20px;
  position: relative;
  margin: 15px 0;
  max-width: 650px;
}
.head-box.page-title .intro-text div::before, .head-box.page-title .intro-text div::after {
  background: #e9ab40;
  bottom: -2px;
  content: "";
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 80%;
}
.head-box.page-title .intro-text div::after {
  bottom: -30px;
  height: 30px;
  width: 2px;
}
/*-----------------------------------
    CREDENTIALS PAGE
-------------------------------------*/
.inner-cred .main-content {
  padding-top: 40px;
}
.inner-cred .main-content .cred-block {
  border: 1px solid #b9aea3;
  border-radius: 4px;
  padding: 15px 10px 20px;
  margin: 0 0 100px;
  position: relative;
}
.inner-cred .main-content .cred-block h2 {
  text-align: center;
}
.inner-cred .main-content .cred-block .cred-pic {
  margin-top: -70px;
  text-align: center;
}
.inner-cred .main-content .cred-block .cred-pic div {
  background: #fff;
  border: 1px solid #cecac7;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px 0px;
  border-radius: 5px;
  display: inline-block;
  left: 50%;
  max-width: 222px;
  padding: 5px 10px;
}
.inner-cred .main-content .cred-block .cred-pic div img {
  max-width: 100%;
}
/*-----------------------------------
    TESTIMONIAL PAGE
-------------------------------------*/
.inner-wrap.inner-testi .main-content {
  margin-bottom: 100px;
}
.inner-wrap.inner-testi .main-content .testi-block-text {
  font-size: 20px;
  font-style: italic;
  font-weight: 100;
  margin: 30px 0;
  padding-bottom: 10px;
  position: relative;
}
.inner-wrap.inner-testi .main-content .testi-block-text::before {
  background: url(../../images/testi-text-decal.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -57px;
  content: "";
  height: 54px;
  left: 0;
  position: absolute;
  width: 67px;
}
.inner-wrap.inner-testi .main-content .testi-block-name {
  border-top: 1px solid #422a11;
  font-size: 18px;
  padding-top: 10px;
  margin-bottom: 20px;
  text-align: right;
}
/*-----------------------------------
    CONTACT PAGE
-------------------------------------*/
.inner-contact {
  max-width: 700px;
}
.inner-contact .main-content {
  padding: 50px 0 0;
  text-align: center;
}
.inner-contact .main-content strong {
  font-family: "Gelasio", serif;
}
.inner-contact .main-content .email-add, .inner-contact .main-content .phone-num {
  font-size: 20px;
  margin-bottom: 20px;
}
.inner-contact .main-content .email-add a, .inner-contact .main-content .email-add a:visited, .inner-contact .main-content .email-add a:hover, .inner-contact .main-content .email-add a:active, .inner-contact .main-content .phone-num a, .inner-contact .main-content .phone-num a:visited, .inner-contact .main-content .phone-num a:hover, .inner-contact .main-content .phone-num a:active {
  text-decoration: none;
}
.inner-contact .main-content .times, .inner-contact .main-content .phone-num, .inner-contact .main-content .map {
  padding-bottom: 30px;
  position: relative;
}
.inner-contact .main-content .times::before, .inner-contact .main-content .phone-num::before, .inner-contact .main-content .map::before {
  background: #e9ab40;
  content: "";
  bottom: -2px;
  left: 50%;
  height: 2px;
  transform: translateX(-50%);
  max-width: 300px;
  width: 60%;
  position: absolute;
}
.inner-contact .main-content .times {
  margin-top: 20px;
  padding-top: 10px;
}
.inner-contact .main-content .times h2 {
  margin: 0 0 5px;
}
.inner-contact .main-content .times table {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-collapse: collapse;
  font-size: 15px;
  text-align: left;
  margin: 0 auto;
  overflow: hidden;
}
.inner-contact .main-content .times table thead {
  background: #e9d7c0;
  text-align: left;
  font-weight: 300 !important;
}
.inner-contact .main-content .times table th, .inner-contact .main-content .times table td {
  border: 1px solid #e9d7c0;
  padding: 5px;
  font-weight: 400;
}
.inner-contact .main-content .times table th div, .inner-contact .main-content .times table td div {
  border-top: 1px dashed #e9d7c0;
  padding-top: 5px;
  margin-top: 5px;
}
.inner-contact .main-content .times table td.times-type {
  width: 85px;
}
.inner-contact .main-content .map h2 {
  margin: 30px 0 0;
}
.inner-contact .main-content .map .address {
  margin: 10px 0 20px;
}
.inner-contact .main-content .map .map-link {
  padding: 10px 0 0;
}
.inner-contact .main-content .map .map-link a {
  text-decoration: none;
}
.inner-contact .main-content .contact-form {
  padding-bottom: 30px;
}
.inner-contact .main-content .contact-form h2 {
  margin: 30px 0 0;
}
.inner-contact .main-content .contact-form .wpforms-container {
  margin-top: 10px;
  max-width: 450px !important;
  width: 100%;
}
.inner-contact .main-content .contact-form .wpforms-container .wpforms-field-label {
  color: #291703;
}
.inner-contact .main-content .contact-form .wpforms-container input, .inner-contact .main-content .contact-form .wpforms-container .wpforms-field-row.wpforms-field-medium {
  margin: 0 auto;
  max-width: 100%;
}
.inner-contact .main-content .contact-form .wpforms-container input {
  width: 100%;
}
.contact-intro p {
  padding: 15px 0 30px;
  margin: 0 auto 20px;
  max-width: 600px;
  position: relative;
}
.contact-intro p::before {
  background: #d1caca;
  content: "";
  bottom: -2px;
  left: 50%;
  height: 2px;
  transform: translateX(-50%);
  max-width: 300px;
  width: 60%;
  position: absolute;
}
div.wpforms-container-full .wpforms-confirmation-container-full {
  background: #f6f3a1;
  border: 2px solid #e9ab40;
  border-radius: 10px;
}
/*-----------------------------------
    BOOKING PAGES
-------------------------------------*/
.book-page {
  min-height: 900px;
}
.book-page .book-intro {
  margin: 0 auto;
  max-width: 800px;
}
.page-content.content-404 {
  text-align: center;
}
/*-----------------------------------------------------
-------------------------------------------------------
    FOOTER
-------------------------------------------------------
-------------------------------------------------------*/
.book-bottom {
  background: url(../../images/testimonial-leaves.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  min-height: 200px;
  padding: 40px 0 30px;
}
.book-bottom.book-foot-online, .book-bottom.book-foot-person {
  min-height: 165px;
  padding-bottom: 0;
}
.book-bottom.book-foot-online .book-online {
  display: none;
}
.book-bottom.book-foot-person .book-person {
  display: none;
}
.book-bottom .button-box div a {
  border: 3px solid #fff;
}
.book-bottom .button-box .book-online {
  margin-bottom: 15px;
}
footer {
  background: #002903;
  color: #fff;
  padding: 155px 0 20px;
  position: relative;
}
footer::before {
  background: url(../../images/apcp-foot.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  height: 125px;
  left: 50%;
  top: 25px;
  transform: translateX(-50%);
  position: absolute;
  width: 222px;
}
footer nav.foot-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
footer nav.foot-nav ul li {
  display: inline-block;
  padding: 1px 6px 1px 2px;
  position: relative;
}
footer nav.foot-nav ul li:last-child a, footer nav.foot-nav ul li:last-child a:visited, footer nav.foot-nav ul li:last-child a:hover, footer nav.foot-nav ul li:last-child a:active {
  color: #002903;
  cursor: default;
}
footer nav.foot-nav ul li:last-child a::before, footer nav.foot-nav ul li:last-child a:visited::before, footer nav.foot-nav ul li:last-child a:hover::before, footer nav.foot-nav ul li:last-child a:active::before {
  display: none;
}
footer nav.foot-nav ul li a, footer nav.foot-nav ul li a:visited {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
footer nav.foot-nav ul li a::before, footer nav.foot-nav ul li a:visited::before {
  background: #5b5959;
  bottom: -1px;
  content: "";
  display: block;
  height: 1px;
  left: 10%;
  position: absolute;
  width: 80%;
}
footer nav.foot-nav ul li a:hover::before, footer nav.foot-nav ul li a:active::before, footer nav.foot-nav ul li a:visited:hover::before, footer nav.foot-nav ul li a:visited:active::before {
  background: #ffe000;
}
footer nav.foot-nav ul ul.sub-menu {
  margin-top: -5px;
}
footer nav.foot-nav ul ul.sub-menu li.menu-item a, footer nav.foot-nav ul ul.sub-menu li.menu-item a:visited {
  color: #fff;
  cursor: pointer;
  display: block;
}
footer nav.foot-nav ul ul.sub-menu li.menu-item a::before, footer nav.foot-nav ul ul.sub-menu li.menu-item a:visited::before {
  display: block;
}
footer nav.foot-nav ul ul.sub-menu li.menu-item:last-child a::before {
  display: block;
}
footer .copyright {
  text-align: center;
  font-size: 12px;
  margin: 25px 0 0;
}
footer .copyright a, footer .copyright a:hover, footer .copyright a:active, footer .copyright a:visited {
  color: #fff;
  text-decoration: none;
}
footer .copyright span {
  border-top: 1px dashed #5b5959;
  display: inline-block;
  margin: 5px 0 0;
  padding: 5px 0 0;
}
footer .copyright span:first-child {
  border-width: 0;
}
/* ==========================================================================
    Media Queries
========================================================================== */
/*----------------------------------------------
    Banner Background and infinite
-------------------------------------------------*/
@media (min-width: 320px) {
  .home-banner::after {
    background-size: 160%;
  }
  .home-banner.infinite-scroll::after {
    background-size: 1300px;
    background-position-y: 0;
  }
}
@media (min-width: 340px) {
  .home-banner::after {
    background-size: 150%;
  }
}
@media (min-width: 360px) {
  .home-banner::after {
    background-size: 140%;
  }
}
@media (min-width: 400px) {
  .home-banner::after {
    background-size: 130%;
  }
  .home-banner.infinite-scroll::after {
    background-size: 1200px;
  }
}
@media (min-width: 440px) {
  .home-banner::after {
    background-size: 110%;
  }
  .home-banner.infinite-scroll::after {
    background-size: 1200px;
  }
}
@media (min-width: 500px) {
  .home-banner::after {
    background-size: 120%;
    background-position-y: -200px;
  }
  .home-banner.infinite-scroll::after {
    background-size: 1200px;
    background-position-y: 0;
  }
}
@media (min-width: 750px) {
  .home-banner::after {
    background-size: 100%;
    background-position-y: -300px;
  }
  .home-banner.infinite-scroll::after {
    background-size: 1600px;
    background-position-y: -200px;
  }
}
@media (min-width: 900px) {
  .home-banner::after {
    background-size: 120%;
    background-position-y: -800px;
  }
  .home-banner.infinite-scroll::after {
    background-size: 1700px;
    background-position-y: -500px;
  }
}
@media (min-width: 1150px) {
  .home-banner::after {
    background-size: 100%;
    background-position-y: -1200px;
  }
  .home-banner.infinite-scroll::after {
    background-size: 2500px;
    background-position-y: -800px;
  }
}
@media (min-width: 1400px) {
  .home-banner::after {
    background-size: 100%;
    background-position-y: -1200px;
  }
}
/* ==========================================================================
     0 - 355p ( tiny screen fixes )
========================================================================== */
@media screen and (min-width: 0px) and (max-width: 355px) {
  .home-banner .button-box div a {
    font-size: 16px;
    padding: 10px 25px;
  }
}
/* ==========================================================================
     600px
========================================================================== */
@media (min-width: 600px) {
  /*-----------------------------------
    ABOUT PAGE - 600px
-------------------------------------*/
  /*-----------------------------------
    CONTACT PAGE - 600px
-------------------------------------*/
  .home-credentials .inner-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .home-credentials .inner-wrap .cred {
    box-sizing: border-box;
    flex: 1 1 calc(50% - 20px);
    margin: 0;
    max-width: 300px;
  }
  .home-credentials .inner-wrap .cred p {
    padding: 0 15px;
  }
  .inner-wrap.inner-about h2::before {
    left: 10%;
    width: 80%;
  }
  .inner-wrap.inner-about .fees {
    font-size: 20px;
  }
  .inner-contact .main-content .times table {
    font-size: 17px;
  }
  .inner-contact .main-content .times table td.times-type {
    width: inherit;
  }
  .inner-contact .main-content .times table td {
    padding: 10px;
  }
}
/* ==========================================================================
     750px
========================================================================== */
@media (min-width: 750px) {
  .home-credentials .inner-wrap {
    gap: 20px;
  }
  .home-credentials .inner-wrap .cred {
    flex: 1 1 calc(50% - 40px);
  }
}
/* ==========================================================================
     900px
========================================================================== */
@media (min-width: 900px) {
  /*-------------------------------------------------------------------------------
        General // 900px
-------------------------------------------------------------------------------*/
  /*-------------------------------------------------------------------------------
        Header // 900px
-------------------------------------------------------------------------------*/
  /*-----------------------------------------------------
-------------------------------------------------------
    HOME PAGE - 900px
-------------------------------------------------------
-------------------------------------------------------*/
  /*-----------------------------------
    Home Nav - 900px
-------------------------------------*/
  /*-----------------------------------
    Home Banner - 900px 
-------------------------------------*/
  /*-----------------------------------
    Home Banner - text - 900
-------------------------------------*/
  /*-----------------------------------
    Home Testimonials slider - 900px
-------------------------------------*/
  /*-----------------------------------
    ABOUT PAGE - 900px
-------------------------------------*/
  /*-----------------------------------
    TESTIMONIAL PAGE - 900px
-------------------------------------*/
  /*-----------------------------------
    CONTACT PAGE - 900px
-------------------------------------*/
  /*-----------------------------------
    Footer - 900px
-------------------------------------*/
  .inner-wrap {
    width: 100%;
    max-width: 1020px;
  }
  header .inner-wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  header .inner-wrap .logo {
    display: flex;
    height: 61px;
    width: 250px;
  }
  header .inner-wrap .logo a, header .inner-wrap .logo a:visited, header .inner-wrap .logo a:active {
    background: url(../../images/ait-slanu-logo-gold-brown.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    height: 73px;
    width: 100%;
    text-indent: -9999px;
    overflow: hidden;
  }
  header .inner-wrap .nav-wrap {
    align-items: center;
    display: flex;
    margin-left: auto;
    position: static;
    right: auto;
    width: auto;
    max-width: calc(100% - 250px);
  }
  header .inner-wrap .nav-wrap button.menu-button.open-menu {
    display: none;
  }
  header .inner-wrap .nav-wrap nav {
    display: inline-block;
  }
  header .inner-wrap .nav-wrap nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 9;
  }
  header .inner-wrap .nav-wrap nav ul li {
    align-items: center;
    height: auto;
    margin: 0;
  }
  header .inner-wrap .nav-wrap nav ul li a, header .inner-wrap .nav-wrap nav ul li a:visited, header .inner-wrap .nav-wrap nav ul li a:active {
    color: #39220b;
    display: block;
    font: normal 400 16px "Open Sans", sans-serif;
    text-align: center;
    text-decoration: none;
    padding: 10px 0;
    margin: 0 10px;
    width: 80%;
  }
  header .inner-wrap .nav-wrap nav ul li a::after, header .inner-wrap .nav-wrap nav ul li a::before, header .inner-wrap .nav-wrap nav ul li a:visited::after, header .inner-wrap .nav-wrap nav ul li a:visited::before, header .inner-wrap .nav-wrap nav ul li a:active::after, header .inner-wrap .nav-wrap nav ul li a:active::before {
    background-color: #92afc7;
    bottom: 5px;
    content: "";
    height: 2px;
    left: 5%;
    opacity: 0;
    position: absolute;
    width: 90%;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  header .inner-wrap .nav-wrap nav ul li a::after, header .inner-wrap .nav-wrap nav ul li a:visited::after, header .inner-wrap .nav-wrap nav ul li a:active::after {
    background-color: #f1dbb3;
    bottom: 1px;
    left: 15%;
    height: 1px;
    width: 70%;
    -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  header .inner-wrap .nav-wrap nav ul li a:hover::before, header .inner-wrap .nav-wrap nav ul li a:hover::after, header .inner-wrap .nav-wrap nav ul li a:active::before, header .inner-wrap .nav-wrap nav ul li a:active::after {
    opacity: 1;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent {
    margin: 0 0 0 10px;
    position: relative;
    transition: all 0.5s ease-in-out;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent a {
    background: transparent;
    box-shadow: none;
    color: #39220b;
    cursor: default;
    display: block;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 10px 0;
    position: relative;
    margin: 0;
    width: 100%;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent a:active {
    animation: none !important;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent a::before {
    background: #92afc7;
    bottom: 0;
    content: "";
    display: block;
    height: 10px;
    left: 50%;
    opacity: 0;
    position: absolute;
    width: 1px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu {
    box-sizing: border-box;
    border-style: solid;
    border-color: #92afc7;
    border-width: 0;
    display: block;
    text-align: right;
    right: 0;
    max-height: 0;
    padding: 0.5em 1em;
    overflow: hidden;
    position: absolute;
    width: max-content;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li {
    display: block;
    margin: 0;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li:nth-child(2) a {
    background: transparent;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li:nth-child(2) a:hover {
    background: transparent;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    color: #39220b;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: inherit;
    text-align: right;
    opacity: 0;
    margin: 0;
    overflow: visible;
    padding: 5px 0;
    position: relative;
    width: auto;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a::before, header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a::after {
    background-color: #92afc7;
    background-image: none;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 5%;
    top: auto;
    opacity: 0;
    position: absolute;
    width: 90%;
    transition: all 0.3s ease-in-out;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a::after {
    background-color: #f1dbb3;
    bottom: -4px;
    height: 1px;
    left: 15%;
    width: 70%;
    transition: all 0.6s ease-in-out;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a:hover, header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a:active {
    background: transparent;
    margin: 0;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a:hover::before, header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a:hover::after, header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a:active::before, header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu li a:active::after {
    opacity: 1;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent:active ul.sub-menu, header .inner-wrap .nav-wrap nav ul li.menu-book-parent:hover ul.sub-menu {
    border-width: 1px 0;
    max-height: 200px;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent:active ul.sub-menu a, header .inner-wrap .nav-wrap nav ul li.menu-book-parent:hover ul.sub-menu a {
    opacity: 1;
  }
  header .inner-wrap .nav-wrap nav ul li.menu-book-parent:hover a::before {
    opacity: 1;
  }
  header .inner-wrap .nav-wrap nav ul li.current_page_item a::before, header .inner-wrap .nav-wrap nav ul li.current_page_item a:hover::before, header .inner-wrap .nav-wrap nav ul li.current_page_item a:active::before, header .inner-wrap .nav-wrap nav ul li.home-active a::before, header .inner-wrap .nav-wrap nav ul li.home-active a:hover::before, header .inner-wrap .nav-wrap nav ul li.home-active a:active::before {
    opacity: 1;
  }
  header .inner-wrap .nav-wrap nav ul li.current_page_item a::after, header .inner-wrap .nav-wrap nav ul li.current_page_item a:hover::after, header .inner-wrap .nav-wrap nav ul li.current_page_item a:active::after, header .inner-wrap .nav-wrap nav ul li.home-active a::after, header .inner-wrap .nav-wrap nav ul li.home-active a:hover::after, header .inner-wrap .nav-wrap nav ul li.home-active a:active::after {
    opacity: 0;
  }
  body.home header .inner-wrap .nav-wrap .menu-book-parent.nolinky a, body.home header .inner-wrap .nav-wrap .menu-book-parent.nolinky a:hover, body.home header .inner-wrap .nav-wrap .menu-book-parent.nolinky a:active, body.home header .inner-wrap .nav-wrap .menu-book-parent.nolinky a:visited {
    color: #f1dbb3;
  }
  body.home header .inner-wrap .logo a, body.home header .inner-wrap .logo a:visited, body.home header .inner-wrap .logo a:active {
    background: url(../../images/ait-slanu-logo-gold.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  body.home header .inner-wrap .nav-wrap {
    background: transparent;
  }
  body.home header .inner-wrap .nav-wrap a, body.home header .inner-wrap .nav-wrap a:hover, body.home header .inner-wrap .nav-wrap a:active, body.home header .inner-wrap .nav-wrap a:visited {
    color: #f1dbb3;
  }
  body.home header .inner-wrap .nav-wrap a::after, body.home header .inner-wrap .nav-wrap a:hover::after, body.home header .inner-wrap .nav-wrap a:active::after, body.home header .inner-wrap .nav-wrap a:visited::after {
    background: #f1dbb3;
  }
  body.home header .inner-wrap .nav-wrap nav ul li.menu-book-parent ul.sub-menu a {
    color: #f1dbb3;
  }
  .home-banner, .home-banner.infinite-scroll {
    margin-top: -100px;
    padding: 140px 0 55px;
  }
  .home-banner .inner-wrap, .home-banner.infinite-scroll .inner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .home-banner .inner-wrap div, .home-banner.infinite-scroll .inner-wrap div {
    flex: 1;
  }
  .home-banner .inner-wrap .text-box, .home-banner.infinite-scroll .inner-wrap .text-box {
    padding: 20px 5px 20px 40px;
  }
  .home-banner .inner-wrap .text-box h1, .home-banner.infinite-scroll .inner-wrap .text-box h1 {
    display: none;
  }
  .home-banner .inner-wrap .text-box h2, .home-banner.infinite-scroll .inner-wrap .text-box h2 {
    font-size: 25px;
    margin: 0 0 10px;
    letter-spacing: 1px;
    text-align: left;
  }
  .home-banner .inner-wrap .text-box h2::before, .home-banner .inner-wrap .text-box h2::after, .home-banner.infinite-scroll .inner-wrap .text-box h2::before, .home-banner.infinite-scroll .inner-wrap .text-box h2::after {
    display: none;
  }
  .home-banner .inner-wrap .text-box .banner-intro, .home-banner.infinite-scroll .inner-wrap .text-box .banner-intro {
    margin: 0;
  }
  .home-banner .inner-wrap .text-box .banner-intro p, .home-banner.infinite-scroll .inner-wrap .text-box .banner-intro p {
    margin: 0;
    text-align: left;
  }
  .home-banner .inner-wrap .button-box, .home-banner.infinite-scroll .inner-wrap .button-box {
    padding: 5px 20px 7px;
    position: relative;
  }
  .home-banner .inner-wrap .button-box div, .home-banner.infinite-scroll .inner-wrap .button-box div {
    height: 83px;
  }
  .home-banner .inner-wrap .button-box div.book-online, .home-banner.infinite-scroll .inner-wrap .button-box div.book-online {
    position: relative;
  }
  .home-banner .inner-wrap .button-box::before, .home-banner.infinite-scroll .inner-wrap .button-box::before {
    background: url(../../images/manda-full--banner-white.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 506px;
    transform: translateX(-50%);
    opacity: 0.4;
    position: absolute;
    top: -36px;
    left: 50%;
    width: 500px;
  }
  .home-text {
    background: #efdab6;
    padding: 20px 0 25px;
  }
  .home-text .inner-wrap {
    display: flex;
  }
  .home-text .inner-wrap .profile-pic {
    flex: 0 0 auto;
    margin: 10px 0;
  }
  .home-text .inner-wrap .profile-pic::before, .home-text .inner-wrap .profile-pic::after {
    height: 308px;
    width: 308px;
  }
  .home-text .inner-wrap .profile-pic::before {
    display: none;
  }
  .home-text .inner-wrap .profile-pic img {
    border: 8px solid #ab8749;
    height: 290px;
    width: 290px;
  }
  .home-text .inner-wrap .profile-pic.profile-pic-placeholder img {
    border-width: 0;
  }
  .home-text .inner-wrap .home-text-text {
    flex: 1;
    padding: 37px 0 0 50px;
  }
  .home-testi {
    padding: 60px 0 40px;
  }
  .home-testi .testimonial-swiper {
    max-width: 800px;
    margin: 0 auto;
  }
  .home-testi .testimonial-swiper .swiper-button-next, .home-testi .testimonial-swiper .swiper-button-prev {
    margin-top: 0;
    top: 65px;
    transform: translateY(0);
  }
  .home-testi .testimonial-swiper .swiper-button-next:after, .home-testi .testimonial-swiper .swiper-button-prev:after {
    color: #002903;
    font-size: 40px;
    font-weight: 900;
  }
  .home-testi .testimonial-swiper .testimonial-content {
    padding: 20px 40PX 20PX;
    border-radius: 150px;
  }
  .home-testi .testimonial-swiper .testimonial-content .testimonial-text {
    padding: 0 40px;
  }
  .inner-wrap.inner-about .head-box.page-title {
    display: flex;
    align-items: center;
    padding-top: 40px;
  }
  .inner-wrap.inner-about .head-box.page-title h1 {
    flex: 1;
    text-align: right;
    padding-left: 0;
  }
  .inner-wrap.inner-about .head-box.page-title h1::before, .inner-wrap.inner-about .head-box.page-title h1::after {
    display: none;
  }
  .inner-wrap.inner-about .head-box.page-title div.profile-pic {
    flex: 1;
    text-align: left;
    padding-left: 20px;
    min-height: 215px;
  }
  .inner-wrap.inner-about .head-box.page-title div.profile-pic::after {
    top: -5px;
    left: 15px;
    transform: translate(0, 0);
  }
  .inner-wrap.inner-about .head-box.page-title div.profile-pic::before {
    display: none;
  }
  .inner-wrap.inner-about .main-content h2 {
    text-align: left;
    padding-left: 0;
  }
  .inner-wrap.inner-about .main-content h2 span {
    padding: 0 20px 0 0;
  }
  .inner-wrap.inner-about .main-content h2::before {
    left: 0;
    width: 100%;
  }
  .inner-wrap.inner-about .main-content h2.second-text-h, .inner-wrap.inner-about .main-content h2.areas-h {
    text-align: right;
  }
  .inner-wrap.inner-about .main-content h2.second-text-h span, .inner-wrap.inner-about .main-content h2.areas-h span {
    padding: 0 0 0 20px;
  }
  .inner-wrap.inner-about .main-content .areas-list span {
    padding: 8px 35px;
  }
  .inner-wrap.inner-testi .main-content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .inner-wrap.inner-testi .main-content .testi-block {
    box-sizing: border-box;
    flex: 1 1 50%;
    justify-content: space-between;
    padding: 0 25px;
  }
  .inner-wrap.inner-contact {
    max-width: 700px;
  }
  .book-bottom .button-box.book-foot-standard {
    display: flex;
    padding: 20px 0;
  }
  .book-bottom .button-box.book-foot-standard div {
    flex: 1;
    padding: 0 25px;
  }
  .book-bottom .button-box.book-foot-standard div.book-online {
    text-align: right;
    position: relative;
    margin-bottom: 0;
  }
  .book-bottom .button-box.book-foot-standard div.book-online::before {
    background: #fff;
    box-shadow: 8px 6px 11px rgba(0, 0, 0, 0.9);
    content: "";
    height: 110px;
    right: -1px;
    top: -19px;
    position: absolute;
    width: 2px;
  }
  .book-bottom .button-box.book-foot-standard div.book-person {
    text-align: left;
  }
  footer {
    padding: 135px 0 20px;
  }
  footer .copyright {
    margin: 20px 0 0;
  }
}
/* ==========================================================================
        1150px
========================================================================== */
@media (min-width: 1150px) {
  /*-----------------------------------
    CONTACT PAGE - 1150px
-------------------------------------*/
  .inner-wrap.inner-contact {
    max-width: 1020px;
  }
  .inner-wrap.inner-contact .details .phone-num::before {
    max-width: 450px;
  }
  .inner-wrap.inner-contact .main-content .contact-middle {
    display: flex;
  }
  .inner-wrap.inner-contact .main-content .contact-middle .times, .inner-wrap.inner-contact .main-content .contact-middle .map {
    width: 50%;
  }
  .inner-wrap.inner-contact .main-content .contact-middle .times::before, .inner-wrap.inner-contact .main-content .contact-middle .map::before {
    display: none;
  }
  .inner-wrap.inner-contact .main-content .contact-middle .map {
    padding-bottom: 20px;
  }
  .inner-wrap.inner-contact .main-content .contact-middle .times h2 {
    margin-bottom: 53px;
  }
  .inner-wrap.inner-contact .main-content .contact-middle .times table td {
    padding: 23px 10px;
  }
  .inner-wrap.inner-contact .main-content .contact-form {
    position: relative;
  }
  .inner-wrap.inner-contact .main-content .contact-form::before {
    background: #e9ab40;
    content: "";
    top: -30px;
    left: 50%;
    height: 2px;
    transform: translateX(-50%);
    width: 60%;
    position: absolute;
  }
}
/* ==========================================================================
   Helper classes
========================================================================== */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/* ==========================================================================
   Print styles
========================================================================== */
@media print {
  /*
     * Don't show links for images, or javascript/internal links
     */
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
