/* Header Styling Start*/
body, html {
  position: relative;
  z-index: 100;
}

body:after {
  content: "";
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 50ms ease-in-out;
  transition: 50ms ease-in-out;
  visibility: hidden;
}

.preLoader {
  overflow: hidden;
}

.preLoader .header__logo {
  opacity: 0;
  visibility: hidden;
}

.preLoader .header__nav {
  opacity: 0;
  visibility: hidden;
}

.preLoader .mobile__header--icon {
  opacity: 0;
  visibility: hidden;
}

.preLoader .landingScreen__content {
  opacity: 0;
  visibility: hidden;
}

.preLoader .landingScreen__scroll {
  opacity: 0;
  visibility: hidden;
}

.preLoader .hero {
  opacity: 0;
  visibility: hidden;
}

.preLoader .main {
  opacity: 0;
  visibility: hidden;
}

.preLoader:after {
  visibility: visible;
  opacity: 1;
}

.loadingBar {
  position: fixed;
  z-index: 25;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 5px;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  background-color: #223156;
  overflow: hidden;
  border-radius: 5px;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

.loadingBar:after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  width: 150px;
  height: 5px;
  background-color: #F26743;
  -webkit-animation-name: loadingBar;
          animation-name: loadingBar;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.loadingBar__logo {
  position: fixed;
  z-index: 25;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  width: auto;
  height: 50px;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

@-webkit-keyframes loadingBar {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(405px);
            transform: translateX(405px);
  }
}

@keyframes loadingBar {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(405px);
            transform: translateX(405px);
  }
}

.header {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  margin-left: 25px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

.header__logo a {
  display: block;
  padding: 10px;
}

.header__logo a img {
  width: auto;
  height: 50px;
}

.header__nav {
  margin-right: 25px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

.header__nav--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.header__nav--menu-item {
  margin-right: 25px;
}

.header__nav--menu-item a {
  font-family: Wavehaus-SemiBold;
  font-size: 18px;
  color: #949494;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  padding: 5px;
}

.header__nav--menu-item a:hover, .header__nav--menu-item a:focus {
  color: #2E3B5B;
}

.header__nav--menu-item--active {
  position: relative;
}

.header__nav--menu-item--active:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background-color: #F6D8BD;
}

.header__nav--menu-item--active a {
  color: #2E3B5B;
}

.header__background {
  background-color: #FFFFFF;
  -webkit-box-shadow: 10px 5px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 10px 5px 25px rgba(0, 0, 0, 0.15);
}

.mobile__header {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  z-index: 25;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.mobile__header--logo {
  position: absolute;
  top: 3.5px;
  left: 0;
  margin-left: 25px;
}

.mobile__header--logo a {
  display: block;
  padding: 10px;
}

.mobile__header--logo a img {
  width: auto;
  height: 50px;
}

.mobile__header--icon {
  position: absolute;
  z-index: 30;
  top: 15px;
  right: 0;
  margin-right: 25px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

.mobile__header--icon i {
  font-size: 2em;
  color: #2E3B5B;
  padding: 0.2em;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.mobile__header--icon-menu {
  display: none;
}

.mobile__header--icon-close {
  display: none;
  opacity: 0;
}

.mobile__header--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}

.mobile__header--nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobile__header--nav-menu-item {
  margin-bottom: 25px;
}

.mobile__header--nav-menu-item a {
  font-family: Wavehaus-SemiBold;
  font-size: 22px;
  color: #6b6a6a;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  padding: 5px;
}

.mobile__header--nav-menu-item--active {
  position: relative;
}

.mobile__header--nav-menu-item--active:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background-color: #F6D8BD;
}

.mobile__header--nav-menu-item--active a {
  color: #2E3B5B;
}

/* Header Styling End*/
/* Home Styling Start */
.landingScreen {
  position: relative;
  z-index: 1;
  height: 1000px;
  background-image: url("../images/svg/home-background.svg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-bottom: 250px;
}

.landingScreen__content {
  position: absolute;
  left: 100px;
  top: 250px;
  opacity: 1;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.landingScreen__content--welcome-message svg {
  width: 520px;
  height: auto;
}

.landingScreen__content--facebook-link {
  margin-top: -25px;
}

.landingScreen__content--facebook-link svg {
  width: 520px;
  height: auto;
}

.landingScreen__scroll {
  position: absolute;
  z-index: 5;
  top: 93vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.landingScreen__scroll--text {
  font-family: Wavehaus-Bold;
  font-size: 24px;
  font-weight: 100;
  letter-spacing: 10px;
  color: #F3F3F3;
  text-transform: uppercase;
}

.landingScreen__scroll--arrow {
  width: 45px;
  margin-top: 3px;
  margin-left: -10px;
}

.landingScreen__content--facebook-link:hover svg #fl-Group_5 #Rectangle_3-2 {
  fill: #fff;
}

.landingScreen__content--facebook-link:hover svg #fl-Group_5 #Rectangle_8 {
  fill: #fff;
}

.landingScreen__content--facebook-link:hover svg #fl-Group_5 #Rectangle_9 {
  fill: #fff;
}

.landingScreen__content--facebook-link:hover svg #Path_29 {
  fill: #e6704b;
}

.landingScreen__content--facebook-link:hover svg #Path_40 {
  fill: #e6704b;
}

.mainContainer {
  max-width: 90%;
  margin: auto;
}

.slideshowContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 250px;
}

.slideshowContainer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 100px;
}

.slideshowContainer__left--pretext {
  width: 500px;
}

.slideshowContainer__right {
  position: relative;
  width: auto;
  margin-right: 100px;
  margin-left: 50px;
}

.slideshowContainer__right:after {
  content: " ";
  position: absolute;
  top: 25px;
  left: -25px;
  width: 440px;
  height: 320px;
  border-radius: 10px;
  background-color: #F6D8BD;
  -webkit-box-shadow: -10px 5px 25px rgba(0, 0, 0, 0.15);
          box-shadow: -10px 5px 25px rgba(0, 0, 0, 0.15);
}

/*Slider Styles Start*/
.swiper-container {
  position: relative;
  width: 440px;
  height: 320px;
  border-radius: 10px;
}

.swiper-button-next, .swiper-button-prev {
  color: #F26743;
}

.swiper-pagination-bullet {
  background: white;
  opacity: .5;
}

.swiper-pagination-bullet-active {
  background: #F26743;
  opacity: 1;
}

/*Slider Styles End*/
.infoContainer {
  margin-bottom: 250px;
}

.infoContainer__title {
  font-family: Big John Pro;
  font-size: 42px;
  font-weight: 100;
  letter-spacing: 2px;
  line-height: 62px;
  color: #223156;
}

.infoContainer__points {
  padding-left: 35px;
}

.infoContainer__points ul {
  list-style-type: disc;
}

.infoContainer__points ul li {
  font-family: Wavehaus-Regular;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #2B2B2B;
  margin-bottom: 10px;
}

.footer {
  position: relative;
  height: 770px;
  background: #223156;
  overflow: hidden;
}

.footer__wave {
  height: 360px;
  background-image: url("../images/svg/footer-wave.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.footer__fb-page {
  position: absolute;
  z-index: 5;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer__fb-page:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 25px;
  left: -25px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #F6D8BD;
  -webkit-box-shadow: -10px 5px 25px rgba(249, 232, 218, 0.15);
          box-shadow: -10px 5px 25px rgba(249, 232, 218, 0.15);
}

.footer__nav {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 15px;
}

.footer__nav--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__nav--menu-item {
  margin-bottom: 10px;
}

.footer__nav--menu-item a {
  font-family: Wavehaus-Regular;
  font-weight: 100;
  font-size: 16px;
  color: #F6D8BD;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.footer__nav--menu-item a:hover, .footer__nav--menu-item a :focus {
  color: #E27B1E;
  text-decoration: underline;
}

.footer__nav--menu-item:last-child {
  margin-bottom: 0;
}

.footer__nav--menu-item--active a {
  color: #E27B1E;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 15px;
}

.footer__social--link svg {
  width: 25px;
  height: auto;
}

.footer__social--link svg:hover #fb-icon-background {
  fill: #E27B1E;
}

.footer__social--rating {
  width: 200px;
  margin-bottom: 25px;
}

.footer__copyright {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 15px;
}

.footer__copyright--text {
  font-family: Wavehaus-Light;
  font-size: 14px;
  font-weight: 100;
  text-transform: uppercase;
  color: #E8E8E8;
}

.footer__copyright--text a {
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  color: #F6D8BD;
  text-decoration: none;
}

.footer__copyright--text a:hover {
  color: #E27B1E;
}

.footer__copyright--license {
  font-family: Wavehaus-Regular;
  font-size: 14px;
  color: #F6D8BD;
  margin-bottom: 5px;
  font-weight: 100;
  text-align: end;
}

/* Home Styling End */
/* About Styling Start */
.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: 65%;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-bottom: 50px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 600ms ease-in-out;
  transition: 600ms ease-in-out;
}

.hero__wave {
  position: absolute;
  bottom: -167px;
  height: 357px;
  width: 100%;
  background-image: url("../images/svg/hero-wave.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.hero__heading {
  position: absolute;
  z-index: 5;
  bottom: 50px;
  left: 0;
  font-family: Leira Lite;
  font-size: 62px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #F26743;
  margin: 25px 50px;
}

.hero__heading:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0px;
  left: -15px;
  width: 100%;
  height: 35px;
  background-color: #223156;
  border-radius: 5px;
}

.hero--about {
  background-image: url("../images/greenacres-hotel-nine-acres.jpg");
}

.hero--prices {
  background-image: url("../images/greenacres-hotel-nine-acres.jpg");
}

.hero--contact {
  height: 275px;
}

.hero--testimonials {
  background-image: url("../images/greenacres-hotel-nine-acres.jpg");
}

.main {
  max-width: 90%;
  margin: auto;
  margin-bottom: 100px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 1000ms ease-in-out;
  transition: 1000ms ease-in-out;
}

.main__text {
  font-family: Wavehaus-Regular;
  font-size: 20px;
  font-weight: 100;
  line-height: 30px;
  color: #2B2B2B;
  margin-bottom: 10px;
}

.main--prices {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 150px;
}

.main--contact {
  margin-bottom: 0;
}

.main--termsAndConditions {
	padding-top: 150px;
	font-family: Wavehaus-Regular;
}

/* About Styling End*/
/* Prices Styling Start */
.prices__container {
  background-color: #223156;
  height: 420px;
  width: 320px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.25);
          box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.25);
  margin: 25px;
}

.prices__container--heading {
  font-family: Wavehaus-ExtraBold;
  font-size: 32px;
  font-weight: 100;
  line-height: 42px;
  color: #FFF4E9;
  max-width: 75%;
  margin: 50px 25px;
  min-height: 170px;
}

.prices__container--price {
  font-family: Leira Lite;
  font-size: 52px;
  font-weight: 100;
  line-height: 62px;
  color: #F26743;
  margin: 15px 25px;
}

.prices__disclaimer {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: Wavehaus-Light;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #202020;
  margin: 50px 25px;
}

/* Prices Styling End */
/* Contact Styling Start */
.contact__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

.contact__details div {
  margin: 0 25px;
}

.contact__details label {
  display: block;
  font-family: Wavehaus-Regular;
  font-size: 16px;
  font-weight: 100;
  color: #2B2B2B;
  margin-bottom: 10px;
}

.contact__details p {
  font-family: Wavehaus-Regular;
  font-size: 18px;
  font-weight: 500;
  color: #404040;
  margin-bottom: 5px;
}

.contact__details a {
  font-family: Wavehaus-Regular;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.contact__details a:hover {
  text-decoration: underline;
  color: #404040;
}

.contact__details--mobile span {
  font-family: Wavehaus-Light;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #5e5e5e;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact__form label {
  display: block;
  font-family: Wavehaus-Regular;
  font-size: 18px;
  font-weight: 100;
  color: #404040;
  margin-bottom: 10px;
}

.contact__form--input {
  margin-bottom: 25px;
}

.contact__form--input input {
  font-family: Wavehaus-Regular;
  font-size: 16px;
  font-weight: 100;
  color: #404040;
  width: 100%;
  padding: 0.5em 0.8em;
  background-color: #F9F9F9;
  border: none;
  border-bottom: 2px solid #223156;
  margin-bottom: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.05);
  outline: none;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.contact__form--input input:focus {
  color: #404040;
  -webkit-box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #eeeeee;
}

.contact__form--input textarea {
  font-family: Wavehaus-Regular;
  font-size: 16px;
  font-weight: 100;
  color: #404040;
  width: 100%;
  padding: 0.5em 0.8em;
  background-color: #F9F9F9;
  border: none;
  border-bottom: 2px solid #223156;
  resize: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.05);
  outline: none;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.contact__form--input textarea:focus {
  color: #404040;
  -webkit-box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #eeeeee;
}

.contact__form--terms {
  font-family: Wavehaus-Regular;
  font-size: 16px;
  color: #0e0e0e;
  text-align: end;
  line-height: 24px;
}

.contact__form--terms a {
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.contact__form--terms a:hover {
  color: #a8a8ff;
}

.contact__form--buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact__form--buttons input {
  display: inline-block;
  font-family: Wavehaus-Light;
  font-size: 18px;
  font-weight: 100;
  border: none;
  background-color: #223156;
  color: #FFF4E9;
  text-transform: uppercase;
  padding: 0.4em 0.8em;
  -webkit-box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  margin-left: 25px;
}

.contact__form--buttons input:hover, .contact__form--buttons input :focus {
  cursor: pointer;
  background-color: #FFF4E9;
  color: #223156;
  -webkit-box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.15);
          box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.15);
}

.contact__response {
  position: fixed;
  z-index: 25;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.contact__response p {
  font-family: Wavehaus-Light;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #fff;
}

.contact__response--success {
  background-color: #57aa7a;
}

.contact__response--error {
  background-color: #bd5050;
}

.g-recaptcha {
  margin: 25px 0;
}

/* Contact Styling End */
/* Testimonials Styling Start */
.testimonials__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F26743;
  color: #ffffff;
  font-family: Big John Pro;
  font-size: 22px;
  font-weight: 100;
  line-height: 22px;
  text-decoration: none;
  padding: 0.3em 0.8em;
  border-radius: 3px;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  margin-bottom: 50px;
}

.testimonials__link svg {
  width: 30px;
  height: auto;
  margin-right: 15px;
}

.testimonials__link p {
  margin-top: -5px;
}

.testimonials__link:hover {
  background-color: #223156;
  color: #F26743;
}

.testimonials__text p {
  font-family: Wavehaus-Regular;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #2D2D2D;
  margin: 25px 0;
}

.testimonials__text hr {
  width: 50%;
  border-color: rgba(153, 153, 153, 0.15);
  border-style: solid;
}

/* Testimonials Styling End */
/* Terms & Conditions Styling Start */
.main--termsAndConditions p {
  line-height: 2em;
  max-width: 800px;
}

/* Terms & Conditions Styling End*/
/* Media Styles Start */
@media (max-width: 1325px) {
  .slideshowContainer__left {
    margin-left: 25px;
  }
  .slideshowContainer__right {
    margin-right: 25px;
  }
}

@media (max-width: 1155px) {
  .slideshowContainer__left {
    margin-left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 50px;
  }
  .slideshowContainer__right {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 1040px) {
  .contact__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact__details div {
    margin: 0;
    margin-bottom: 25px;
  }
}

@media (max-width: 770px) {
  .header__logo {
    margin-left: 5px;
  }
  .header__nav {
    margin-right: 5px;
  }
  .header__nav--menu-item {
    margin-right: 10px;
  }
  .mobile__header--logo {
    margin-left: 5px;
  }
  .landingScreen {
    margin-bottom: 50px;
  }
  .landingScreen__content {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .infoContainer__points {
    padding-left: 15px;
  }
  .footer__copyright {
    max-width: 120px;
  }
  .footer__copyright p {
    text-align: right;
    line-height: 18px;
  }
}

@media (max-width: 650px) {
  .header__nav {
    display: none;
  }
  .mobile__header--icon-menu {
    display: block;
  }
  .infoContainer__title {
    font-size: 32px;
    letter-spacing: initial;
  }
  .infoContainer__points ul li {
    font-size: 18px;
  }
  .testimonials__link {
    font-size: 16px;
    padding: 0.3em 0.2em;
  }
}

@media (max-width: 525px) {
  .landingScreen__content--welcome-message svg {
    width: 300px;
  }
  .landingScreen__content--facebook-link svg {
    width: 300px;
  }
  .slideshowContainer__left--pretext {
    width: 300px;
  }
  .slideshowContainer__right:after {
    width: 293px;
    height: 213px;
    top: 10px;
    left: -10px;
  }
  .swiper-container {
    width: 293px;
    height: 213px;
  }
  .hero__heading {
    font-size: 42px;
    margin: 25px;
  }
  .hero__heading:after {
    height: 25px;
  }
  .hero--contact {
    height: 170px;
    margin-bottom: 25px;
  }
  .hero--contact h1 {
    bottom: 0;
    margin: 10px 25px;
  }
}

@media (max-width: 420px) {
  .header__logo a img {
    height: 40px;
  }
  .mobile__header--logo {
    top: 8.5px;
  }
  .mobile__header--logo a img {
    height: 40px;
  }
  .hero {
    margin-bottom: 25px;
  }
  .landingScreen__scroll {
    top: 85vh;
  }
  .mainContainer {
    max-width: 100%;
  }
  .main {
    max-width: 95%;
    margin-bottom: 25px;
  }
  .main__text {
    font-size: 18px;
  }
  .main--termsAndConditions {
    padding: 0 25px;
    padding-top: 100px;
  }
  .slideshowContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
  .infoContainer {
    margin-bottom: 50px;
  }
  .infoContainer__title {
    font-size: 28px;
    line-height: 38px;
    margin-left: 10px;
  }
  .infoContainer__points {
    max-width: 95%;
    margin: auto;
  }
  .infoContainer__points ul li {
    font-size: 16px;
    line-height: 20px;
  }
  .hero {
    height: 320px;
    margin-bottom: 25px;
  }
  .hero__heading {
    font-size: 36px;
  }
  .hero__heading:after {
    height: 15px;
  }
  .hero--contact {
    height: 200px;
  }
  .hero--contact h1 {
    bottom: 0;
    margin: 10px 25px;
  }
  .prices__container {
    margin: 10px;
    margin-bottom: 25px;
    height: 320px;
  }
  .prices__container--heading {
    font-size: 28px;
    min-height: 100px;
  }
  .prices__container--price {
    font-size: 32px;
  }
  .contact__form--input {
    margin-bottom: 10px;
  }
  .contact__form--terms {
    padding: 0 5px;
    text-align: start;
  }
  .testimonials__link {
    font-size: 12px;
    padding: 0.3em 0.2em;
    margin-bottom: 15px;
  }
  .testimonials__link svg {
    width: 25px;
    margin-right: 5px;
  }
  .testimonials__link p {
    margin-top: 0;
  }
  .testimonials__text p {
    font-size: 16px;
  }
  .footer {
    height: 1000px;
  }
  .footer__nav {
    bottom: 200px;
    width: 100%;
    margin: 0;
  }
  .footer__nav--menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__social {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .footer__social--rating {
    width: 150px;
  }
  .footer__fb-page:after {
    top: 10px;
    left: -10px;
  }
  .bullet {
        font-family: Wavehaus-Regular;
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        color: #2B2B2B;
        margin-bottom: 10px;	
        ul style="margin:0;
		margin-left: 25px;
		padding:0;
		list-style:square;
		text-align: left;
  }
}

/* Media Styles End */
/*# sourceMappingURL=main.css.map */
