/*-------------------------------------*/
/*BASIC SET-UP*/
/*-------------------------------------*/

/*

ORANGE COLOR-------- #27ae60

*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
        
    
}

.clearfix{zoom: 1}
.clearfix:after {
    content: '.';
    clear:both;
    display: block;
    height: 0;
    visibility: hidden;
        
}

/*-------------------------------------*/
/*REUSABLE COMPONENTS*/
/*-------------------------------------*/


.row{
    max-width: 1140px;
    margin: 0 auto;
    
}

section{
    padding: 40px 0;
}

.box{
    padding: 1%;
}

/*---------HEADINGS------------*/


h1,
h2,
h3{   
    font-weight: 300;
    text-transform: uppercase;
    
    
    
}

h1{
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;

}
h2{
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    
}

/*---------LINKS------------*/

a:link,
a:visited{
    color:#27ae60;
    text-decoration: none;
    padding: 1px;
    -webkit-transition: color 0.2s;
    transition:  color 0.2s
}
a:hover{
    color:#555;
}


/*-------------------------------------*/
/*HEADER*/
/*-------------------------------------*/


header {
    background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0, 0, 0, 0.60)),to(rgba(0, 0, 0, 0.60))), url(img/hike-min.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.60),rgba(0, 0, 0, 0.60)), url(img/hike-min.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}

.hero-text-box{
    position: absolute;
    width: 1140px;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}


blockquote {
    font-style: italic;
    color: #f2f2f2;
    line-height: 145%;
    margin-top: 10px;
}


cite{
    display: inline-block;
    color: #f2f2f2;
    font-size: 90%;
    margin-top: 5px;
    border-radius: 50%;
    margin-bottom: 25px;
    
}

/* Main navi */

.main-nav{
    float: right;
    list-style: none;
    margin-top: 60px;
}
.main-nav li{
    display: inline-block;
    margin-left: 30px;
    
}
.main-nav li a:link,
.main-nav li a:visited{
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
    
}
.main-nav li a:hover,
.main-nav li a:active{
    border-bottom: 2px solid #27ae60;
    
}
/* Mobile navi */
.mobile-nav-icon{
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
    
}
.mobile-nav-icon i{
    font-size: 200%;
    color: #fff;
}

/* Sticky navi */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-box-shadow: 0 2px 2px #efefef;
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}

.sticky .main-nav { margin-top: 12px; }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0;
    color: #555;
}

.sticky .logo{ display: none; }
.sticky .logo-small { display: block; }

/* Header */

.logo{
    height: 70px;
    width: auto;
    float: left;
    margin-top: 13px;
    opacity: 0.7;    
}

.logo-small{
    display: none;
    height: 40px;
    width: auto;
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
    opacity: 0.7;  
}

/*---------BUTTONS------------*/

.btn:link,
.btn:visited,
input[type=submit]{
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    
}

.btn-full:link,
.btn-full:visited,
input[type=submit]{
    background-color: #27ae60;
    border: 1px solid #27ae60;
    color: #fff;
    margin-right: 20px;
}
.btn-buy:link,
.btn-buy:visited,
input[type=submit]{
    background-color: #27ae60;
    border: 1px solid #d0d0d0;
    color: #fff;
    margin-right: 5px;
}
.btn-ghost:link,
.btn-ghost:visited{
    border: 1px solid #27ae60;
    color: #27ae60;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active{
    background-color: #1e8449;
}

.btn-full:hover,
.btn-full:active,
input[type=submit]{
    border: 1px solid #1e8449;
    
}
.btn-buy:hover,
.btn-buy:active,
input[type=submit]{
    border: 1px solid #fff;
    
}
.btn-ghost:hover,
.btn-ghost:active{
    border: 1px solid #1e8449;
    color: #fff;
}

/*---------Icons------------*/

.icon-small{
    display: inline-block;
    width: 30px;
    text-align: center;
    color:#27ae60;
    font-size: 120%;
    margin-right: 5px;
    margin-bottom: -4px;
}

.icon-big{
    font-size: 6rem;
    margin-bottom: .5rem;
    background-image: -webkit-gradient(linear, left top, right top, from(#7ed56f), to(#28b485));
    background-image: linear-gradient(to right, #7ed56f, #28b485);
    display: inline-block;
    -webkit-background-clip: text;
    color: transparent; }

/*---------Section Hikes------------*/

.section-hikes{
    background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(245, 245, 245, 0.90)),to(rgba(245, 245, 245, 0.90))),url(img/Map1-min.jpg);
    background-image: linear-gradient(rgba(245, 245, 245, 0.90),rgba(245, 245, 245, 0.90)),url(img/Map1-min.jpg);
    
}

.section-hikes img{
    width: 90%;
    height: auto;
    margin-left: 5%;
    margin-bottom: 15px;
    margin-top: 15px;

}

.hike-box{
    border-left: 1px solid #e5e5e5;
}
    
.section-hikes ul{
    list-style: none;
    
}
.section-hikes li{
    display: inline-block;
    font-size: 80%;
}
.hike-title{
    font-size: 60%;
    margin-left: 20px;
    
}

.hike-description{
    text-align: justify;
    font-size: 80%;
    padding:5%;
    line-height: 145%;
    position: relative;
    margin-top: 5px;
    
}
.hike-description:before{
    display: block;
    height: 2px;
    background-color: #27ae60;
    content: " ";
    width: 100px;
    margin:0 auto;
    margin-top: 5px;
    margin-bottom: 10px;
    
}
.check-it{
    text-align: right;
}
.check-book{
    text-align: center;
}

.hike-description div:last-child{
    margin-left: 50px;
    display:block;
    text-align: center;
}
.btn-to-go{
    text-align: center;
    padding: -20px;
}

/*-------------------------------------*/
/*About Section*/
/*-------------------------------------*/


.about-me img{
    display: inline-block;
    width:40%;
    margin-right: 10px;
}
.about-me div:first-child{
    text-align: right;
    border-right: 1px solid #f2f2f2;
}

.about-me div:last-child{
    padding: 10px 40px;
}

.about-me{
        font-weight: 400;
    font-size: 80%;
    line-height: 29px;
    color: #fff;
    text-align: justify;
}
.me{
    background-image:-webkit-gradient(linear,left top, left bottom,from(rgba(0, 0, 0, 0.70)),to(rgba(0, 0, 0, 0.70))), url(img/clouds1-min.JPG);
    background-image:linear-gradient(rgba(0, 0, 0, 0.70),rgba(0, 0, 0, 0.70)), url(img/clouds1-min.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}


/*-------------------------------------*/
/*Hiking-presentation- Section*/
/*-------------------------------------*/
.hiking-nav{
    background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0, 0, 0, 0.60)),to(rgba(0, 0, 0, 0.60))), url(img/hike-min.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.60),rgba(0, 0, 0, 0.60)), url(img/hike-min.jpg)
}

.main-nav1{
    float: right;
    list-style: none;
    margin: 30px 0;
}
.main-nav1 li{
    display: inline-block;
    margin-left: 30px;
    
}
.main-nav1 li a:link,
.main-nav1 li a:visited{
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
    
}
.main-nav1 li a:hover,
.main-nav1 li a:active{
    border-bottom: 2px solid #27ae60;
    
}


/*Map section*/


.map-box{
    width: 90%;
    margin-top: 30px;
    margin-left: 5%;
    height:500px;
    position: relative;
}
.map{
    width: 100%;
    height: 350px;
    position: relative;
    z-index: 0;
}

.details-box{
    position: absolute;
    width: 30%;
    top:0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.83);
    z-index: 10;
    height: 350px;
    padding: 10px;
   }

.details-box ul{
    list-style: none;
    font-size: 80%;
}

/*Image Gallery section*/

.zoom-gallery{
    margin-top: 20px;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	/* ideally, transition speed should match zoom duration */
	-webkit-transition: all 0.3s ease-out; 
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
		opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
		opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}

/*Hike Description*/

.hike-description1{
    background-color: #f2f2f2;
    text-align: justify;
    font-size: 80%;
    padding:2%;
    width: 100%;
    line-height: 155%;
    position: relative;
    margin-top: 5px;
    
}

.hike-description1:before{
    display: block;
    height: 2px;
    background-color: #27ae60;
    content: " ";
    width: 400px;
    margin:0 auto;
    margin-top: 5px;
    margin-bottom: 10px;
}
/*-------------------------------------*/
/*FOOTER*/
/*-------------------------------------*/

footer{
    background-color: #292929;
    padding: 10px;
    font-size: 80%;
}
footer p{
    color:#888;
    text-align: center;
    margin-top: 20px;
}

.footer-nav{
    list-style: none;
    float: left;
}
.footer-nav li{
    display: inline-block;
    margin-right: 20px;
}


.footer-nav li a:link,
.footer-nav li a:visited{
    text-decoration: none;
    border: 0;
    color: #888;
    -webkit-transition: color 0.2s;
    transition: color 0.2s
}

.footer-nav li a:hover,
.footer-nav li a:active{
    color: #fff;
}


/*-------------------------------------*/
/*CONTACT-FORM*/
/*-------------------------------------*/

.section-form{
        background-image:-webkit-gradient(linear,left top, left bottom,from(rgba(230, 230, 230, 0.9)),to(rgba(230, 230, 230, 0.9))),url(img/contact-min.jpg);
        background-image:linear-gradient(rgba(230, 230, 230, 0.9),rgba(230, 230, 230, 0.9)),url(img/contact-min.jpg);
        background-size: cover;
        background-position: center;
        height: 80vh;
        background-attachment: fixed;
}
.contact-form{
    width: 60%;
    margin: 0 auto;
}

input[type=text],
input[type=email],
select,
textarea{
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solide #ccc;
    
}

textarea{
    height: 100px;
}

input[type=checkbox]{
    margin: 10px 5px 10px 0;
    
}
*:focus{ outline: none}

.form-messages{
    width:70%;
    text-align: center;
    margin:0 auto;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 20px;
    color: #333;
}

.success{
    background-color: rgba(39, 174, 96, 0.79);
    
}

.error{
    background-color: rgba(255, 52, 52, 0.9)
}

/*-------------------------------------*/
/*HOW IT WORKS*/
/*-------------------------------------*/

.section-steps {
    background-color: #5c5C5C;
    color: #fff;
  }


.steps-box:first-child{
    margin-top:5px;
    text-align: right;
    padding-right: 1%;
    
}

.steps-box:last-child{
    padding-left: 3%;
    margin-top: 70px;
    
}
.app-screen{
    width: 80%;
    
}
.works-step{
    margin-bottom: 40px;
    
}

.works-step:last-of-type{
    margin-bottom: 50px;
}
.works-step div{
    color: #27ae60;
    border: 2px solid #27ae60;
    display: inline-block;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    text-align: center;
    padding: 5px;
    font-size: 150%;
    float: left;
    margin-right: 25px;
}

.btn-app:link,
.btn-app:visited{
    border: 0;
}

.btn-app img{
    height: 50px;
    width: auto;
    margin-left: 10px;
    
}

/*-------------------------------------*/
/*section-book*/
/*-------------------------------------*/

.section-book{
    background-color: #5c5C5C;
    }

.card {
  -webkit-perspective: 1500px;
  perspective: 1500px;
  -moz-perspective: 1500px;
  position: relative;
  height: 24em; }

.card__side {
    height: 23.5rem;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15); }

.card__side--front {
      background-color: #fff; }

.card__side--back {
      -webkit-transform: rotateY(-180deg);
      transform: rotateY(-180deg); }

.card__side--back-1 {
        background-image: -webkit-gradient(linear, left top, right bottom, from(#7ed56f), to(#28b485));
        background-image: linear-gradient(to right bottom, #7ed56f, #28b485); }

.card:hover .card__side--front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg); }

.card:hover .card__side--back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0); }

.card__picture {
    background-size: 100%;
    background-repeat: no-repeat;
    height: 20rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); 
     }
.card__picture--1 {
    background-image:url(img/ECover.jpg);}
.card__heading {
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
    position: absolute;
    top: 16rem;
    right: 1rem;
    width: 55%; }
  .card__heading-span {
    padding: 0 .3rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; 
    background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(126, 213, 111, 0.85)), to(rgba(40, 180, 133, 0.85))); 
    background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.85), rgba(40, 180, 133, 0.85)); }
.card__details {
    padding: 0.55rem; }
    .card__details ul {
      list-style: none;
      width: 100%;
      margin: 0 auto; }
    .card__details li {
      text-align: center;
      padding: 0.15rem; }
      .card__details li{
        border-bottom: 0.5px solid #a0a0a0; }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center; }
  .card__price-box {
    color: #fff;
    margin-bottom: 8rem; }
  .card__price-only {
    font-size: 1.4rem;
    text-transform: uppercase; }
.feature-box{
    color: #efefef;
    width: 85%;
    margin: 0 auto;
    text-align: justify;
    line-height: 155%;
}
.features-book{
    list-style: inside;
    color: #f5f5f5;
}

.video{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
