/* FONTS */

  @import url("https://use.typekit.net/gra4ybk.css");

/* COLORS */
:root {
--white:#FFF;
--gold:#e2aa24;
--dark-green:#3C3D2D;
--mid-green:#595A43;
--light-green:#F6F7EF;
--light-tan:#FDFCF9;
--black:#000;

}

/* General */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  height: auto;
}
body {
    font-size: 1rem;
	font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	font-style: normal;
    color: var(--black);
    background:var(--white-100);
}
.row {
  margin-left: -12px;
  margin-right: -12px;
}

.row > [class^="col"],
.row > [class*=" col"] {
  padding-left: 12px;
  padding-right: 12px;
}

p {
	font-size: 1rem;
	font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	line-height: 165%;
}
h1, .h1-title {
	font-size: 6.563rem;
	font-family: "kepler-std-display", serif;
	font-weight: 400;
	line-height: 110%;
	letter-spacing: -2.1px;
	margin-bottom: 1rem;
}
h2, .h2-title {
	font-size: 3.75rem;
	font-family: "kepler-std-display", serif;
	font-weight: 400;
	line-height: 110%;
	letter-spacing: -1.2px;
	margin-bottom: 1rem;
}

h3, .h3-title {
	font-size:2rem;
	font-family: "kepler-std-display", serif;
	font-weight: 400;
	line-height: 130%;
	letter-spacing:0px;
	margin-bottom: 1rem;
}
h4, .h4-title {
	font-size: 1.75rem;
	font-family: "kepler-std-display", serif;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.56px;
	margin-bottom: 1rem;
}
h5, .h5-title {
	font-size: 1.5rem;
	font-family: "kepler-std-display", serif;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.48px;
	margin-bottom: 1rem;
}

section {
	padding: 120px 0px;
}
a{
	color:var(--black);
	font-weight: 500;
	text-decoration: underline;
}
a:hover, a:focus{
	color:var(--dark-green);
	text-decoration: underline;
}

.button, .wp-block-button__link.wp-element-button, .button-white, input[type="submit"] {
	border-radius: 8px;
	text-transform: uppercase;
	letter-spacing: .05rem;
	opacity: 1;
	display: inline-block;
	text-align: center;
	padding: 16px 62px 16px 40px;
	background: var(--gold) url('./img/arrow-button.png') no-repeat center right 40px;
	background-size: 14px;
	text-decoration: none;
	font-weight: 600;
    color: var(--black) !important;
    transition: opacity 0.5s;
}

.button:hover, .button:focus, .button-white:hover, .button-white:focus, .wp-block-button__link.wp-element-button:focus, .wp-block-button__link.wp-element-button:hover, input[type="submit"]:hover, input[type="submit"]:focus {
	opacity: .8;
	text-decoration: none;
	color: var(--black) !important;
}
header.navbar-inverse{
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
}
header .navbar{
	border:0px;
}
header .main-logo{
	width: 100%;
	max-width: 140px;
    transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
}
header .container-nav {
    max-width: 1500px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
header #menu-main-menu {
    margin-left: auto !important;
    margin-right: 0px !important;
    height: 100%;
}
header .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--white);
    font-size: 1.125rem;
    text-decoration: none;
    padding: 10px 20px;
}
header .navbar-expand-lg .navbar-nav .nav-link.active, header .navbar-expand-lg .navbar-nav .nav-link:hover, header .navbar-expand-lg .navbar-nav .nav-link:focus, header .navbar-light .navbar-nav .show > .nav-link, header .navbar-light .navbar-nav .active > .nav-link, header .navbar-light .navbar-nav .nav-link.show, header .navbar-light .navbar-nav .nav-link.active{
	text-decoration: underline;
    color: var(--white);
}
header.navbar-inverse {
    background: var(--dark-green);
}
header.navbar-inverse .main-logo {
    max-width: 100px;
    transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
}


footer{
	margin-top: -50px;
	background: transparent;
}
footer .footer-nav {
    width: 100%;
}
footer .icon-logo {
	max-width: 150px;
}
footer .copy-row {
	padding: 0px 0px;
}
footer .copy-row a {
	color: var(--white);
	font-weight: 500;
}
footer .copy-row a:hover {
	text-decoration: none;
	color:var(--white);
}

footer .copy-row .copy, footer .connect {
	font-size: 0.875rem;
	color: var(--white);
	margin-bottom: 10px;
}
footer .copy-row .contact-icons {
	text-align: right;
}
footer .copy-row .col-12 {
    padding: 0px;
}
footer .copy-row img {
	max-width: 16px;
	margin-right: 5px;
}
footer .copy-row .phone-link {
	padding-right: 40px;
}
footer .copy-row .copy {
    margin-top: 0px;
}

	




.homepage{

}
.homepage .overview{
	position: relative;
  height: 100vh;
  background: url('./img/background-homepage.jpg') center center / cover no-repeat black;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color:var(--white);
}
.homepage .overview .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:70%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: 1;
}

.overview .container {
  position: relative;
  z-index: 2;
}

.overview .arrow-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* or whatever size fits */
  height:60px;
  background: url('./img/arrow-down.png') center center / contain no-repeat;
  z-index: 3;
}

.light-tan-bg{
	background: var(--light-tan);
}

.light-green-bg{
	background: var(--light-green);
}


.homepage .about{
	background-image: url('./img/background-about.png');
	background-position: top right;
	background-size: contain;
	background-repeat: no-repeat;
}
.container-flex {
    display: flex;
    gap: 0;
}
.container-flex .half-box{
	padding: 100px 140px 100px 120px;
	max-width: 725px;
}

.showcase-trip {
    padding: 0px 0 0 0px;
    margin-top: 0px;
}
.showcase-trip .big-img-wrap {
  /*height: calc(100% + 157px);
  width: 100%; 
  position: relative;
  overflow: hidden;
  position: relative;
  top:-157px;
  z-index: 1;
  margin-bottom: -157px;*/
      position: relative;
    height: calc(100% + 170px);
    overflow: visible;
    z-index: 1;
    margin-top: -170px;
}
.showcase-trip .trip-bg {
  /*  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;*/
      position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    z-index: 1;
}
.showcase-trip .dates .list {
    margin: 30px 0 20px 0;
    padding-left: 0px;
    list-style: none;
    font-size: 1.25rem;
}
.showcase-trip .dates .list li{
	margin-bottom: 15px;
	height: 30px;
	background: url('./img/calendar-icon.png') no-repeat center left transparent;
	background-size: 21px;
	padding-left: 32px;
    font-weight: 600;
}
.showcase-trip .arrive{
	margin-bottom: 24px;
}
.dark-bg{
	position: relative;
  background-color: #3C3D2D;
  overflow: hidden;
  color: var(--white);
}
.highlights .gradient-overlay{
	background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6) 0%, #3C3D2D 100% );
	position: absolute;
  inset: 0;
  z-index:0;
}
.cost-form {
	padding-top: 0px;
	background-image: url('./img/background-trip-green.png');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 638px;
}
.cost-form .gradient-overlay{
	background: linear-gradient(to bottom, #3C3D2D 0%, rgba(26, 26, 26, 0.6) 100%);
	position: absolute;
  inset: 0;
  z-index:0;
}
.cost-form .box-tier{
	color: var(--black);
	background: var(--light-tan);
	border-radius: 8px;
	padding: 32px 40px 40px;
	text-align: center;
    margin-top: 30px;
    height: calc(100% - 30px);
}
.cost-form .box-tier .h4-title{
	font-family: 'proxima-nova', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	max-width: 155px;
	margin-left: auto;
	margin-right: auto;
}
.cost-form .box-tier .price{
	font-weight: 700;
	font-size: 2.25rem;
}
.cost-form .box-tier .person{
	font-size: 1.125rem;
    margin-bottom: 8px;
}
.cost-form .box-tier .room{
	font-size: 0.875rem;
}
.cost-form .form-wrap{
	max-width: 700px;
	margin:20px auto 120px auto;
}
.cost-form .anchor{
	padding-top: 140px;
}
.cost-form .form-wrap input[type='text'], .cost-form .form-wrap input[type='email'], .cost-form .form-wrap input[type='tel'], .cost-form .form-wrap textarea{
	background: var(--mid-green);
	border-radius: 8px;
	padding: 14px;
	    color: var(--white);
    border: 0px;
    min-height: 48px;
    font-size: 1rem;
}
.cost-form .form-wrap input[type='text']:focus, .cost-form .form-wrap input[type='text']:active, .cost-form input[type='text'].filled, .cost-form input[type='email'].filled, .cost-form input[type='tel'].filled, .cost-form textarea.filled{
	background: var(--light-tan);
    color: var(--black);
}
.cost-form .form-group label {
    margin-bottom: 0px;
    width: 100%;
}
.cost-form .form-wrap .form-group {
    margin-bottom: 0px;
}
.cost-form .form-wrap label.btn {
    padding: 14px 20px;
    border-radius: 5px;
    border: 0px;
    background: var(--light-tan);
    color: var(--black);
    font-size: 1rem;
    width: 32.1%;
}
.cost-form .btn-outline-primary:not(:disabled):not(.disabled):active, .cost-form .btn-outline-primary:not(:disabled):not(.disabled).active, .cost-form .show > .btn-outline-primary.dropdown-toggle {
    background-color: var(--mid-green);
    border-color: var(--mid-green);
}
.cost-form .label-wrap {
    margin-top: 5px;
    margin-bottom: 8px;
}
.cost-form .form-wrap input[type="submit"] {
    background: var(--gold);
    border: 0px;
    text-align: center;
    padding: 16px 40px;
    font-size: 1rem;
}
.cost-form .form-wrap input[type="submit"]:hover, .cost-form .form-wrap input[type="submit"]:focus, .cost-form .form-wrap input[type="submit"]:active{
	opacity: 0.7;
	background: var(--gold);
	margin:0px;
}
::placeholder {
  color: #ffffff !important;
  opacity: 1; /* ensures it's not faded */
}
.cost-form .wpcf7-not-valid-tip {
    color: #ffffff;
}
.cost-form .form-wrap .btn .wpcf7-not-valid-tip {
    color: var(--black);
    text-transform: none;
}
.cost-form input[type="checkbox"].btn-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Style the label like a button */
.cost-form .wpcf7-list-item label .wpcf7-list-item-label {
  padding: 14px 20px;
    border-radius: 5px;
    border: 0px;
    background: var(--light-tan);
    color: var(--black);
    font-size: 1rem;
        width: calc(100% - 5px);
    margin: 10px 0;
    display: block;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}
.cost-form input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* Active state (when checkbox is checked) */
.cost-form input[type="checkbox"]:checked ~ .wpcf7-list-item-label {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--mid-green);
}
.cost-form .wpcf7-list-item {
    display: inline-block;
    margin: 0 3px 0 0;
    width: calc(33% - 3px);
}
.cost-form .wpcf7-list-item:last-of-type{
	margin-right:0px;
}
.cost-form .wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--light-green);
    
}
.cost-form .wpcf7 form .wpcf7-response-output{
	border-radius: 5px;
    border-width: 1px;
}
.cost-form .wpcf7 form.sent .wpcf7-response-output{
	display: none;
}

.future{
	min-height: 600px;
	background: url('./img/footer-background.jpg') center bottom / cover no-repeat var(--light-tan);
}

.homepage .highlights {
    padding: 0;
    position: relative;
    z-index: 5;
}
.cost-form .big-button{

}
.big-button{
	background: var(--light-tan);
	padding: 32px 40px;
    border-radius: 8px;
    font-weight: 600;
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.big-button .text {
    width: 65%;
    font-family: "kepler-std-display", serif;    
    color: var(--black);
    font-weight: 400;
    font-size: 2rem;
}
.big-button .button-wrap {
    width: 35%;
    text-align: right;
}

/* Interior pages */
.life-page .title-container{
	margin-bottom: 120px;
	padding: 150px 0 120px 0;
	color: var(--white);
	background: var(--dark-green);
	text-align: center;
    position: relative;
}
.life-page .map-illustration{
	position: absolute;
	background: url('./img/background-trip-green.png') no-repeat top left transparent;
	background-size: contain;
	top: 0px;
	left: 0px;
	height: 830px;
	width: 450px;
	z-index: 1;
}
.life-page {
	min-height: 1000px;
}
.life-page .overview {
    padding-top: 0px;
	position: relative;
	background: var(--light-tan);
}
.life-page .story-img{
    margin: 0 0 1em;
    position: absolute;
    width: 500px;
    padding-left: 50px;
    top: -20px;
}
.life-page .thanks-img {
    margin: 30px 0 0 0;
    border-radius: 10px;
    overflow: hidden;
}

.faqs-page .overview {
    padding-bottom: 0px;
}
.faqs-page .title-container {
    margin-bottom: 0px;
}
.faqs-page .button-wrap {
    margin-top: 50px;
}
.faqs .tab-pane {
	padding-top: 50px;
}
.faq-section .box {
    padding: 30px 40px;
    margin-bottom: 10px;
    border-radius: 25px !important;
    border:0px;

}
.faq-section .box.gray{
    background: var(--light-green);
}

.faqs-page .faq-section {
    padding-top: 70px;
}
.faqs-page .tab-pane > h2 {
    margin: 30px 0;
}
.faqs .card-header {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    border-bottom: 0px;
}
.faqs .icon-faq {
    display: inline-block;
    padding-right: 30px;
    position: relative;
    width: 25px;
    height: 25px;
    vertical-align: text-top;
    margin-left: -10px;
    margin-right: 10px;
}
.faqs .icon-faq .horizontal {
    position: absolute;
    background-color: var(--dark-green);
        width: 20px;
    height: 4px;
    left: 50%;
    margin-left: -9px;
    top: 50%;
    margin-top: -2px;
    border-radius: 40px;
}
.faqs .icon-faq.opened .horizontal {
    transition: all 0.5s ease-in-out;
    transform: rotate(90deg);
    opacity: 0;
}
.faqs .icon-faq.opened .vertical {
    transition: all 0.5s ease-in-out;
    transform: rotate(90deg);
}
.faqs .icon-faq.closed .horizontal {
    transition: all 0.5s ease-in-out;
    transform: rotate(-90deg);
    opacity: 1;
}
.faqs .icon-faq.closed .vertical {
    transition: all 0.5s ease-in-out;
    transform: rotate(-90deg);
}
.faqs .icon-faq .vertical {
    position: absolute;
    background-color: var(--dark-green);
    width: 4px;
    height: 20px;
    left: 50%;
    margin-left: -1.5px;
    top: 50%;
    margin-top: -10px;
    border-radius: 40px;
}
.faqs .title {
    display: inline-block;
    width: calc(100% - 40px);
    vertical-align: top;
    font-weight: 600;
    font-family: 'proxima-nova', sans-serif;
}
.faqs .btn.btn-link {
    padding: 0;
    text-transform: none;
    color: var(--black);
    text-decoration: none;
    font-size: 1.375rem;
    text-align: left;
    margin: 0px;
    border: 0px;
    width: 100%;
}
.faqs .accordion > .card .card-header {
    margin-bottom: -1px;
    margin-left: -10px;
}
.faqs .card-body{
  padding-top: 15px;
  color: var(--black);
  padding-bottom: 0px;
}
.faqs .card-body ul {
    padding-left: 20px;
}
.faqs .card-body li {
    padding-bottom: 15px;
}
.faqs .faq-category-links .nav.nav-pills {
    align-items: anchor-center;
    justify-content: center;
}
.faqs .faq-category-links .nav-item {
    text-transform: uppercase;
    border: 1px solid var(--dark-green);
    border-radius: 5px;
    margin: 5px;
}
.faqs .faq-category-links .nav-pills .nav-link {
    text-decoration: none;
    font-weight: 600;
}

/* Carousel */
.section-carousel .intro {
    margin-top: 20px;
    font-size: 1.125rem;
}
.section-carousel .button-wrap {
    margin-bottom: 30px;
}
.section-carousel:nth-of-type(2) {
  padding-top: 20px;
}
.slick-arrow.slick-prev{
	background: url('./img/arrow-left.png') no-repeat center left transparent;
	background-size: 44px;
	position: absolute;
    top: -50px;
    right: 25%;
    left: inherit;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    outline: none;
}
.slick-arrow.slick-prev:hover, .slick-arrow.slick-prev:focus{
	background: url('./img/arrow-left.png') no-repeat center left transparent;
	background-size: 44px;
}
.slick-arrow.slick-next{
	background: url('./img/arrow-right.png') no-repeat center right transparent;
	background-size: 44px;
	    position: absolute;
    top: -50px;
    right: calc(25% - 70px);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    outline: none;
}
.slick-arrow.slick-next:hover, .slick-arrow.slick-next:focus{
	background: url('./img/arrow-right.png') no-repeat center right transparent;
	background-size: 44px;
}
.slick-arrow.slick-next:before, .slick-arrow.slick-prev:before{
	display: none;
}
.slick-next .slick-next-icon:before, .slick-prev .slick-prev-icon:before {
    content: '';
}
.carousel .slick-track{
	display: flex;
}
.bleed-right {
    margin-right: calc(50% - 49.55vw);
}
.carousel{
	display: none;
}
.carousel.slick-initialized{
	display: block;
}
.carousel .slick-slide{
	    padding: 12px 24px 12px 0px;
    height: auto !important;
    display: flex;
    align-items: stretch;
}
.carousel .item-card{
	position: relative;

  width: 370px !important;
 	min-height: 523px;
  padding: 40px 24px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;

  display: flex !important;
  flex-direction: column;
  justify-content: flex-end; /* push content to bottom */
}
.carousel .item-card-bg, .future .item-card-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.carousel .item-card-content, .future .item-card-content {
   color:var(--white);
  padding-top: 160px; /* leaves space above content */
  position: relative;
  z-index: 1;
}
.carousel .item-card-content a{
	background: url('./img/arrow-link-white.png') no-repeat center right transparent;
	background-size: 14px;
	padding-right: 24px;
}
.carousel .item-card-content a, .carousel .item-card-content a:focus, .carousel .item-card-content a:hover{
	color:var(--white);
}
.carousel .item-card:after{
	content: '';
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.66) 33%, rgba(0, 0, 0, 0) 100%);
    width: calc(100% + 24px);
    height: 274px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.future .item-card:after{
	content: '';
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.66) 33%, rgba(0, 0, 0, 0) 100%);
    width: calc(100% + 24px);
    height: 274px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.future .item-card{
	position: relative;

  width: 100%;
  max-width: 568px;
 	min-height: 450px;
  padding: 40px 24px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  margin-bottom: 24px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end; 
}
.homepage .future{
	padding-bottom: 450px;
}
.future .item-card-description p {
    margin-bottom: 0px;
}
.homepage .future .future-intro-section{
	margin-bottom: 50px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
  
}






@media all and (min-width: 1800px){
	
}


@media all and (max-width: 1400px){
	.life-page .map-illustration{
		z-index: 0;
	}
}
@media all and (max-width: 1200px){
	.container-flex .half-box {
    padding: 90px 50px 100px 50px;
    max-width: 725px;
  }
  .homepage .about{
  	background-size: 600px;
  }
  .showcase-trip .big-img-wrap{
    height: calc(100% + 120px);
    margin-top: -120px;
  }
  .future .item-card{
  	min-height: 400px;
  }

  .slick-arrow.slick-prev{
  	    right: 13%;
  }
  .slick-arrow.slick-next{
  	    right: calc(13% - 70px);
  }
}

@media (max-width: 991px) {
  /* Nav */
  .navbar-brand{
  	margin-left: auto;
  	margin-right: auto;
  }
  header .container-nav{
  	padding-right: 0px;
  }
	.bottom-nav {
	   background: transparent;
	    bottom: 0;
	    height: 80px;
	    left: 50%;
	    position: fixed;
	    text-align: center;
	    transform: translateX(-50%);
	    -webkit-transform: translateX(-50%);
	    -moz-transform: translateX(-50%);
	    -o-transform: translateX(-50%);
	    width: 50%;
	    z-index: 9999;
	}
	.bottom-nav .navbar-toggler {
	    background: var(--light-green);
	    border-radius: 50%;
	    display: inline-block;
	    outline: 0;
	    padding: 17px 14px;
	    position: relative;
	    vertical-align: middle;
	    z-index: 1032;
	    box-shadow: 1px 5px 16px rgba(0, 0, 0, 0.25);
	}
	.bottom-nav .animated-icon {
        cursor: pointer;
        height: 24px;
        margin: 0;
        position: relative;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        width: 30px
    }
    .bottom-nav .animated-icon,.animated-icon span {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    .bottom-nav .animated-icon span {
        background: var(--black);
        border-radius: 9px;
        display: block;
        height: 3px;
        left: 0;
        opacity: 1;
        position: absolute;
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        width: 100%
    }
	 .bottom-nav .animated-icon span:nth-child(2),.animated-icon span:nth-child(3) {
        top: 10px
    }
    .bottom-nav .animated-icon span:nth-child(4) {
        top: 20px
    }
    .bottom-nav .animated-icon.open span:first-child {
        left: 50%;
        top: 11px;
        width: 0
    }
    .bottom-nav .animated-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    .bottom-nav .animated-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
    .bottom-nav .animated-icon.open span:nth-child(4) {
        left: 50%;
        top: 11px;
        width: 0
    }
	 .navbar-collapse {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        background: var(--dark-green);
        position: fixed;
        bottom: -50px !important;
        left: 0px;
        padding: 40px 30px 12px 30px;
        min-height: 60px;
        max-height: 60px;
        overflow: auto;
        height: auto;
        text-align: left;
        transition: all 0.25s ease-out;
          -webkit-transition: all 0.25s ease-out;
          -moz-transition: all 0.25s ease-out;
          -o-transition: all 0.25s ease-out;
        z-index: 11000;
    }
    .navbar-collapse.show {
        min-height: 100%;
        max-height: 100%;
        bottom: 0px !important;
    }
	.no-scroll{
         overflow: hidden;
         position: fixed;
         width: 100%;
  	}
  	header #menu-main-menu{
  		text-align: center;
  	}
  	header .navbar-expand-lg .navbar-nav .nav-link {
	    font-size: 1.375rem;
	    margin-top: 20px;
	}
	footer {
	    margin-top: -100px;
	    background: black;
	    padding-bottom: 100px;
	}
	h2, .h2-title {
	    font-size: 3.5rem;
	}

  	.slick-arrow.slick-prev {
        right: 14%;
    }
    .slick-arrow.slick-next {
        right: calc(14% - 70px);
    }
	.life-page .story-img {
	    position: relative;
	    padding-left: 0px;
	    top: 0px;
	    width: 90%;
	}
	.cost-form .box-tier{
		padding: 32px 35px 40px;
	}
	.showcase-trip .container-flex {
    	display: block;
	}
	.showcase-trip .container-flex .half-box {
    	padding: 50px 12px 100px;
	}
	.showcase-trip .big-img-wrap {
	    width: 100%;
	    height: 500px;
	    overflow: hidden;
	    text-align: center;
	    position: relative;
	    top: -50px;
	        margin-bottom: 0px;
        margin-top: -50px
	}
	.showcase-trip .trip-bg {
	    margin-top: 0px;
	    position: relative;
	    z-index: 1;
	    max-height: max-content;
	    margin-right: auto;
	    margin-left: auto;
	    object-fit: cover;
	}
	.homepage .about{
		background-size: 400px;
	}
	.homepage .overview{
		height: 85vh;
	}
	.future .item-card-content{
		padding-top: 120px;
	}
}
@media screen and (max-width: 768px) {
	
}

@media screen and (max-width: 767px) {
	.future {
	    min-height: 300px;
	}
	.life-page .map-illustration {
        width: 250px;
        background-position: left -78px bottom;
        height: 358px;
        top: inherit;
        bottom: 0px;
    }
	footer .copy-row .col-12 {
	    padding: 0px 12px;
	}
	footer {
        margin-top: 0px;
        padding-top: 20px;
    }
	section {
	    padding: 80px 0px;
	}
	h2, .h2-title {
	    font-size: 3rem;
	}
	h3, .h3-title {
	    font-size: 1.875rem;
	}
	h1, .h1-title {
    	font-size: 5rem;
	}


	.homepage .about {
        background-image: none;
    }
    .homepage .about .about-collage {
	    margin-top: 50px;
	}
	.showcase-trip .big-img-wrap {
        height: 400px;
        top: 0;
        margin-bottom: 0px;
    }
    .showcase-trip .container-flex .half-box {
        padding: 30px 12px 90px;
    }

    .slick-arrow.slick-prev {
        right: 24%;
    }
    .slick-arrow.slick-next {
        right: calc(24% - 70px);
    }

    .cost-form .wpcf7-list-item {
	    width: calc(100% - 3px);
	}
	.big-button{
		display: block;
	}
	.big-button .text {
	    width: 100%;
	    font-weight: 400;
	    font-size: 1.5rem;
	    line-height: 120%;
	    margin-bottom: 20px;
	}

	.carousel {
	    padding-top: 50px;
	}
	.slick-arrow.slick-prev, .slick-arrow.slick-next{
		top:20px;
	}
	.homepage .future{
		background-size: 1500px;
	}
}