@import url('https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&family=Work+Sans&family=Fredericka+the+Great&display=swap');
/* Website Color Short Cuts */
:root {
  --secondary: #61ba29;
  --secondary-lt: #d10002;
  --secondary-dk: #68A726;
  --primary: #212b31;
  --tertiary: rgba(198, 153, 99);
  --threw_tan: rgba(198, 153, 99, 0.5);
  --dark_tan: #e2ccb0;
  --dark_gray: #404040;
  --other: rgba(243, 236, 218, 0.85);
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
body {
  box-sizing: border-box;
  font-family: 'Work Sans';
  font-size: 1rem;
  font-size: 16px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
}
a {
  color: var(--secondary);
  text-decoration: none;
  transition: all .3s;
}
a:hover,
a:focus,
a:active{
  color: var(--secondary-dk);
  outline: 0;
}
p {
  margin: 0 0 13px;
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
.alpha,
.beta,
.gamma,
.delta,
.epsilon,
.zeta {
  /* font-family: 'Love Ya Like A Sister'; */
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}
h1,
.alpha,
h2,
.beta,
h3,
.gamma {
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
}
h4,
.delta,
h5,
.epsilon,
h6,
.zeta {
  margin-top: 0;
  margin-bottom: 12.5px;
}
h1,
.alpha {
  font-size: 64px;
  font-size: 4rem;
}
h2,
.beta {
  font-size: 48px;
  font-size: 3rem;
}
h3,
.gamma {
  font-size: 36px;
  font-size: 2.25rem;
}
h4,
.delta {
  font-size: 28px;
  font-size: 1.75rem;
}
h5,
.epsilon {
  font-size: 22px;
  font-size: 1.375rem;
}
h6,
.zeta {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  h1,
  .alpha,
  h2,
  .beta {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
/* ==========================
PAGE SETTINGS
========================== */
.float-r {
  float: right;
}
.float-l {
  float: left;
}
.flex {
  display: flex;
}
.jc-c {
 justify-content: center;
}
.jc-fe {
  justify-content: flex-end;
}
.jc-sb {
  justify-content: space-between;
}
.jc-sa {
  justify-content: space-around;
}
.ai-c {
  align-items: center;
}
.ai-fe {
  align-items: flex-end;
}
.ai-fs {
  align-items: flex-start;
}
.ac-c {
  align-content: center;
}
.as-s {
  align-self: stretch;
}
.as-c {
  align-self: center;
}
.mr-a {
  margin-right: auto;
}
.ml-a {
  margin-left: auto;
}
.fd-c {
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .f-w-1024 {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 800px) {
  .fw-800 {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1024px) {
  .fd-c {
    flex-direction: column;
  }
}
.va {
  margin-top: auto;
  margin-bottom: auto;
}
.bgc-p {
  background-color: var(--primary);
}
.bgc-w {
  background-color: #fff;
}
.bgc-t {
  background-color: var(--tertiary);
}
.bgc-g {
  background-image: linear-gradient(rgba(235, 235, 235) 10%, var(--threw_tan));
}
.bgc-dt {
  background-color: var(--dark_tan);
}
.bgc-o {
  background-color: var(--other);
}
.bgi-1 {
  background-image: url('../../assets/images/background3.jpg');
  background-size: cover;
  background-position: center;
}
.mr-sm {
  margin-right: 2rem;
}
.ml-sm {
  margin-left: 2rem;
}
.mt-sm {
  margin-top: 2rem;
}
.mb-sm {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 789px) {
  .mr-sm {
    margin-right: .5rem;
  }
  .ml-sm {
    margin-left: .5rem;
  }
  .mt-sm {
    margin-top: .5rem;
  }
  .mb-sm {
    margin-bottom: .5rem;
  }
}
@media only screen and (max-width: 1024px) {
  .mt-sm-1024 {
    margin-top: 2rem;
  }
}
.mr-xsm {
  margin-right: 1rem;
}
.ml-xsm {
  margin-left: 1rem;
}
.mt-xsm {
  margin-top: 1rem;
}
.mb-xsm {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 789px) {
  .mr-xsm {
    margin-right: .5rem;
  }
  .ml-xsm {
    margin-left: .5rem;
  }
  .mt-xsm {
    margin-top: .5rem;
  }
  .mb-xsm {
    margin-bottom: .5rem;
  }
}
.pr-sm {
  margin-right: 2rem;
}
.pl-sm {
  margin-left: 2rem;
}
.pt-sm {
  margin-top: 2rem;
}
.pb-sm {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 789px) {
  .pr-sm {
    margin-right: .5rem;
  }
  .pl-sm {
    margin-left: .5rem;
  }
  .pt-sm {
    margin-top: .5rem;
  }
  .pb-sm {
    margin-bottom: .5rem;
  }
}
.mb-md {
  margin-bottom: 3rem !important;
}
.t-sm {
  padding-top: 145px;
  position: relative;
}
.w-md {
  width: 50%;
}
.mw-md {
  max-width: 900px;
}
.mt-lg {
  margin-top: 100px;
}
.h-f {
  min-height: 100vh;
}
@media only screen and (max-width: 1024px) {
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
}
/* ===========================================
   POPUP
=========================================== */
.popup__box {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
#popup {
  position:absolute;
  margin: auto;
  top: 150px;
  z-index: 9999;
  background-color: rgba(38, 38, 38);
  color: #fff;
  padding: 10px;
  width: 710px;
  font-size: 1.25em;
  border: 2px solid var(--secondary);
}

 /* The Close Button */
a.boxclose {
  float:right;
  margin-top: -18px;
  margin-right:-5px;
  cursor:pointer;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}

.boxclose:before {
    content: "×";
  }
.popup__padding {
  padding: 15px;
}
.popup-text {
	text-align: center;
  color: #fff;
  font-size: 1.2rem;
}
.popup-header {
  padding: 5px 5px 15px 5px;
  text-align: center;
  color: #fff;
}
 /* Mobile */
 @media screen and (max-width: 768px) {
    #popup {
      width: 500px;
    }
    .popup-header {
      font-size: 1.5rem;
    }
    .popup-text {
      font-size: 1.1rem;
    }
 }
 @media screen and (max-width: 600px) {
   #popup {
     width: 400px;
   }
 }
 @media screen and (max-width: 450px) {
   #popup {
     width: 325px;
   }
 }
 @media screen and (max-width: 350px) {
   #popup {
     width: 300px;
   }
 }

/* ==========================
NAVIGATION
========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--primary);
  width: 100%;
  height: 100px;
  padding: 0 20px 0 20px;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  z-index: 3;
}
.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .nav__list--link,
  .btn--nav {
    font-size: 1rem;
  }
}
.nav__list--item {
  font-size: 1.3rem;
}
.nav__list--link {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 8px 8px;
}
.nav__list--link:hover {
  color: var(--secondary-dk);
  background-color: #f4f4f4;
}
@media only screen and (max-width: 1200px) {
  .nav__list--item .btn--nav {
    font-size: .9rem;
  }
}
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}
.dropdown-content {
  display: none;
  background-color: var(--primary);
  z-index: 1;
  width: 100%;;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  color: #fff;
}
.dropdown-content a:hover {
  color: var(--secondary-dk);
  background-color: #f4f4f4;
}
.dropdown:hover .dropdown-content {display: block;}
@media only screen and (max-width: 1024px) {
  .dropdown-content {
    display: block;
  }
  .dropdown-content a {
    color: var(--dark_gray);
    margin-left: 20px;
  }
}
/* HAMBURGER */
.nav .nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.nav .nav__list--item .nav__list--link {
  display: block;
  padding: 10px 10px;
  text-decoration: none;
}
.nav .nav__list--item .nav__list--link:hover,
.nav .menu-btn:hover {
  background-color: #f4f4f4;
}
.nav .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}
/* menu */
.nav .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}
/* menu icon */
.nav .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
  margin-top: 15px;
}
.nav .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease-out;
  width: 25px;
}
.nav .menu-icon .navicon:before,
.nav .menu-icon .navicon:after {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
.nav .menu-icon .navicon:before {
  top: 10px;
}
.nav .menu-icon .navicon:after {
  top: -10px;
}
/* menu dropdown btn */
.nav .menu-btn {
  display: none;
}
.nav .menu-btn:checked ~ .menu {
  max-height: 500px;
  background-color: var(--primary);
}
.nav .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.nav .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.nav .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
@media only screen and (min-width: 1024px) {
  .nav .nav__list--item {
    float: left;
  }
  .nav .nav__list--item .nav__list--link {
    padding: 10px 10px;
  }
  .nav .menu {
    clear: none;
    float: right;
    max-height: none;
    top: 25px;
    position: relative;
  }
  .nav .menu-icon {
    display: none;
  }
}
.wave-bottom--nav {
  position: fixed;
  transform: rotateX(180deg);
  z-index: 4;
  right: 0;
  left: 0;
  top: 100px;
}
.wave-bottom--nav::before,
.wave-bottom--nav::after {
  border-bottom: 5px solid var(--primary);

}
.wave-bottom--nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background-size: 20px 40px;
  background-image: radial-gradient(circle at 10px -15px, transparent 20px, var(--primary) 21px);
}
.wave-bottom--nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15px;
  background-size: 40px 40px;
  background-image: radial-gradient(circle at 10px 26px, var(--primary) 20px, transparent 21px);
}
/* ==========================
INTRO
========================== */
.intro__header {
  position: absolute;
  z-index: 1;
  top: 300px;
}
div.slide-right {
  width:100%;
  overflow:hidden;
}
div.slide-right p {
  animation: 2s slide-right;
  position: relative;
  color: white;
  /* font-family: 'Fredericka the Great'; */
  font-size: 5rem;
  text-shadow: .1rem .1rem var(--dark_gray);
}
div.slide-right span {
  animation: 2s slide-right;
  position: relative;
  color: #fff;
  font-family: 'Work Sans';
  font-size: 2rem;
  text-shadow: .1rem .1rem var(--dark_gray);
}
@media only screen and (max-width: 1200px) {
  div.slide-right p {
    font-size: 3rem;
  }
  div.slide-right span {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 750px) {
  div.slide-right p {
    font-size: 2rem;
  }
}
@keyframes slide-right {
  from {
    margin-left: -100%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}
/* ==========================
SECTIONS
========================== */
section {
  padding: 25px;
  position: relative;
}
.half {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  section {
    padding: 10px;
  }
  .half {
    width: 100%;
  }
}
.half__image {
  background-color: #c69963;
  background-image: linear-gradient(var(--threw_tan), var(--threw_tan)), url('../../assets/images/about__background--desktop.jpg');
  background-size: cover;
  padding: 45px;
}
@media only screen and (max-width: 640px) {
  .half__image {
    background-image: linear-gradient(var(--threw_tan), var(--threw_tan)), url('../../assets/images/about__background--mobile.jpg');
    padding: 20px;
  }
}
.more {
  width: 65%;
}
.quarter {
  width: 600px;
}
@media only screen and (max-width: 1024px) {
  .more,
  .quarter {
    width: 100%;
  }
}
.info--t {
  background-color: var(--primary);
  padding: 45px;
}
@media only screen and (max-width: 1024px) {
  .info--t {
    padding: 15px;
  }
}
.info--p {
  padding: 45px;
}
@media only screen and (max-width: 1024px) {
  .info--p {
    padding: 15px;
  }
}
footer {
  background-color: var(--primary);
  padding: 15px 0 5px 0;;
}
.box {
  background-color: var(--threw_tan);
  border-radius: 5px;
  padding: 15px;
  margin: 10px;
  width: 350px;
}
@media only screen and (max-width: 400px) {
  .box {
    width: 100%;
  }
}
.parallax__scroll-1 {
  background-image: url("../../assets/images/parallax2.jpg");
  height: 500px;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax__scroll-2 {
  background-image: url("../../assets/images/parallax4.jpg");
  height: 775px;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .parallax__scroll-2 {
    height: 500px;
  }
}
@media only screen and (max-width: 500px) {
  .parallax__scroll-1 {
    background-image: url("../../assets/images/parallax2--mobile.jpg");
  }
  .parallax__scroll-2 {
    background-image: url("../../assets/images/parallax1--mobile.jpg");
  }
}
.wave-top {
  position: relative;
  bottom: -20px;
  z-index: 1;
}
.wave-top::before,
.wave-top::after {
  border-bottom: 5px solid var(--primary);
  margin-bottom: 20px;
}
.wave-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background-size: 20px 40px;
  background-image: radial-gradient(circle at 10px -15px, transparent 20px, var(--primary) 21px);
}
.wave-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15px;
  background-size: 40px 40px;
  background-image: radial-gradient(circle at 10px 26px, var(--primary) 20px, transparent 21px);
}
@media only screen and (max-width: 1024px) {
  .wave-top-1024 {
    position: relative;
    bottom: -20px;
    z-index: 1;
    right: 0;
    left: 0;
  }
  .wave-top-1024::before,
  .wave-top-1024::after {
    border-bottom: 5px solid #fff;
    margin-bottom: 20px;
  }
  .wave-top-1024::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10px;
    background-size: 20px 40px;
    background-image: radial-gradient(circle at 10px -15px, transparent 20px, #fff 21px);
  }
  .wave-top-1024::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 15px;
    background-size: 40px 40px;
    background-image: radial-gradient(circle at 10px 26px, #fff 20px, transparent 21px);
  }
}
.wave-bottom {
  position: relative;
  transform: rotateX(180deg);
  z-index: 1;
}
.wave-bottom::before,
.wave-bottom::after {
  border-bottom: 5px solid var(--primary);

}
.wave-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background-size: 20px 40px;
  background-image: radial-gradient(circle at 10px -15px, transparent 20px, var(--primary) 21px);
}
.wave-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15px;
  background-size: 40px 40px;
  background-image: radial-gradient(circle at 10px 26px, var(--primary) 20px, transparent 21px);
}
/* ==========================
IMAGE STYLING
========================== */
.nav__logo {
  height: 90px;
}
.intro__image {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: -15px;
  padding-top: 100px;
}
@media onyl screen and (min-width: 800px) {
  .intro__image {
    height: 100vh;

  }
}
.responsive {
  width: 100%;
  height: auto;
}
/* ==========================
TEXT STYLING
========================== */
.nav__heading {
  color: var(--secondary);
  /* font-family: 'Fredericka the Great'; */
  top: 25px;
  position: relative;
  font-size: 2rem;
}
@media only screen and (max-width: 1024px) {
  .nav__heading {
    font-size: 1.5rem;
  }
}
.lead {
  margin: 25px 0;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .lead {
    font-size: 16px;
    font-size: 1rem;
  }
}
.about__text {
  font-size: 1.1rem;
}
@media only screen and (max-width: 1200px) {
  .about__text {
    font-size: 1rem;
  }
}
.heading__info {
  font-family: 'Love Ya Like A Sister';
  color: #444;
}
.tour-page-title {
  font-family: 'Love Ya Like A Sister';
  color: #444;
}
.home-page-header {
  font-family: 'Love Ya Like A Sister';
}
@media only screen and (max-width: 789px) {
  .heading__info {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 1200px) {
  .text__info {
    font-size: 1rem;
  }
}
.text__info, ul {
  list-style-type: circle;
  list-style-position: inside;
}
.text__info, li {
  font-size: 1.2rem;
  color: #444;
}
.text__contact--header {
  font-weight: 700;
  font-size: 1.3rem;
  color: #262626;
}
@media only screen and (max-width: 1024px) {
  .text__contact--header {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 500px) {
  .padding__hours {
    padding-top: 10px;
  }
}
.t-c {
  text-align: center;
}
.text__copyright {
  text-align: center;
}
.t-r {
  color: var(--secondary);
}
.tc-d {
  color: var(--dark_gray);
}
.ta-l {
  text-align: left;
}
/* ==========================
ICON STYLING
========================== */
a i {
  font-size: 3.5rem;
  padding: 5px;
}
h5 i {
  font-size: 1rem;
}
/* ==========================
BUTTONS
========================== */
.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid var(--secondary-dk);
  color: var(--secondary-dk);
  background-color: #fff;
  box-shadow: 4px 4px #a8a8a8;
  transition: all .2s ease-in-out 0s;
  font-size: 1rem;
}
.btn:hover,
.btn:focus,
.btn:active {
  transform: translate(4px 4px);
  box-shadow: 0 0 transparent !important;
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn--nav {
  margin: 5px;
  top: -5px;
  position: relative;
  transform: translate(4px 4px);
  box-shadow: 0 0 transparent !important;
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn--nav:hover,
.btn--nav:focus,
.btn--nav:active {
  transform: translate(4px 4px);
  box-shadow: 0 0 transparent !important;
  color: #68a726;
  background-color: white;
  border-color: var(--secondary);
}
/* ==========================
GENERAL STYLING
========================== */
#wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
p.flip {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
p.flip:after {
  position: absolute;
  bottom: 4px;
  left: -100px;
  right: 0;
  content: '';
  width: 40px;
  height: 1px;
  background: #555;
  margin: 0 auto;
}
p.flip:before {
  position: absolute;
  bottom: 4px;
  left: 100px;
  right: 0;
  content: '';
  width: 40px;
  height: 1px;
  background: #555;
  margin: 0 auto;
}
p.flip span {
  position: absolute;
}
p.flip span.deg1 {
  position: absolute;
  bottom: 2px;
  left: -30px;
  right: 0;
  width: 6px;
  height: 6px;
  content: '';
  background: var(--secondary);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  margin: 0 auto;
}
p.flip span.deg2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  content: '';
  background: var(--secondary);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  margin: 0 auto;
}
p.flip span.deg3 {
  position: absolute;
  bottom: 2px;
  left: 30px;
  right: 0;
  width: 6px;
  height: 6px;
  content: '';
  background: var(--secondary);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  margin: 0 auto;
}
.intro__hr {
  border: 1px solid var(--primary);
  width: 75%;
}
/* ===========================================
   GALLERY
   =========================================== */
.grid:after {
  content: '';
  display: block;
  clear: both;
}
.grid {
  margin-right: 5px;
}
.grid-sizer,
.grid-item {
  width: 25%;
}
.grid-item {
  overflow: hidden;
  padding: 5px;
}
@media screen and (max-width: 1500px) {
  .grid-sizer,
  .grid-item {
    width: 33.33%;
  }
}
@media screen and (max-width: 1000px) {
  .grid-sizer,
  .grid-item {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .grid-sizer,
  .grid-item {
    width: 100%;
  }
}
