/*Start*/
/* global styles */
*, 
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    font-size: 1.5rem;
    color: rgb(248, 122, 122);
    padding-left: 1rem;
}

ul{
  list-style: none;
}

p{
    font-size: 1.6rem;
    padding: 0px 13px;
}

.nav-brand img {
    width: 218%;
    max-width: fit-content;
    height: 51px;
    filter: invert(1);
}

section{
    padding: 5rem 0;
}

/* header */
header{
    width: 100%;
    height: 5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; 
}

.container{
    width: 100%;
    /* height: 680px; */
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

nav{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.nav-brand{
    width: 2rem;
}

.menu-icons i{
    font-size: 3.5rem;
    color: #fafafa;
    cursor: pointer;
}


.nav-list{
    width: 100%;
    height: 12vh;
    background-color: transparent;
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    transition: all 0.3s ease-in-out;
}

.nav-item{
    margin: 1.5rem ;
}

.nav-link{
    font-size: 1.6rem;
    text-transform: uppercase;
    color: white;
}

.nav-link:hover{
    color: palevioletred;
}


.rightNav{
    width: 50%;
    text-align: right;
    padding: 0 23px;
    cursor: pointer;
}

#search{
    padding: 2px;
    font-size: 13px;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
   
}

#search:hover{
    background-color: #ad37d3;
}

#text{
    padding: 2px;
    font-size: 13px;
    border: 2px solid grey;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
   
}


.form-input{
    font-size: 19px;
    width: 100%;
    padding: 5px 13px;
    margin: 12px 0;
    border: 2px solid grey;
    border-radius: 6px;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

.btn {
    background-color: #d8406d;
    border: 2px solid white;
    font-size: 1.4rem;
    border-radius: 2rem;
    color: white;
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 2.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    font-family: 'Sansita Swashed', cursive;
}

.btn-sm{
    padding: 6px 10px;
    vertical-align: middle;
    cursor: pointer;
}




/* hero */
.hero {
    width: 100%;
    height: 105vh;
    background: linear-gradient(135deg, #090909b8 0%, #640694e0 100%), url(images/bg...jpg) center no-repeat;
    background-size: cover;
    position: relative;
}

.hero::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 14.5rem;
    background: url("images/wave-large.png") center no-repeat;
    background-size: cover;
}

.main-message{
    width: 100%;
    max-width: 50rem;
    color: #fafafa;
    text-transform: uppercase;
    transform: translateY(40%);
}

.main-message h2{
    font-size: 2.8rem;
    margin: 0 1rem;
}

.main-message h1{
    font-family: 'Aldrich', sans-serif;
    font-size: 4rem;
    margin: 0.5rem 1rem;
}

.main-message p{
    margin: 12px 0;
    text-transform: capitalize;
}

.btn:hover{
    background-color: #ad37d3;
}

.section{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    padding: 10px;
    background-color: #fa1a0a0a;
}

.section-left{ 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    flex-direction: row-reverse;
}

.thumbnail img{
    height: 260px;
    border: 2px solid black;
    border-radius: 26px;
    margin-top: 19px ;
    padding: 3px 3px;
    
   
}

.paras{
    padding: 10px 65px;

}

.paras a{
    color: blueviolet;
    padding-left: 1rem;
    font-size: 1.3rem;
}


.sectionTag{
padding: 16px 18px;
font-family: 'Aldrich',sans-serif;
}

.sectionSubTag{
    font-family: 'Sansita Swashed', cursive;
}

.text-big{
    font-size: 25px;
    color: #163590;
    text-decoration: underline;
}

.text-small{
    font-size: 16px;
}

/* experience the outdoors */
.experience-outdoors{
    padding: 0%;
}

.title-heading{
  text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: rgba(0,0,0,.7); 
}

.title-heading h3{
    font-size: 1.4rem;
}

.title-heading h1{
    font-family: 'Aldrich',sans-serif;
    font-size: 2rem;
    margin: .5rem 0 1rem;
}

.title-heading p{
    text-transform: lowercase;
}

.activities-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    grid-gap: 2.5rem;
}

.activities-grid-item{
    height: 70vh;
    padding: 3rem;
    color: #fafafa;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.activities-grid-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgb(19 20 20 / 81%) 0%, #39656f9c 80%);
    z-index: -1;
}
.star-gazing{
    background: url("images/blockchain.jpg") center no-repeat; 
    background-size: cover;
}

.hiking{
    background: url("images/cloud-computing.jpg") center no-repeat; 
    background-size: cover;
}

.camping{
    background: url("images/cryptography.jpg") center no-repeat; 
    background-size: cover;
}

.activities-grid-item i {
    font-size: 4rem;
    color: rgb(242 78 127);
}
.activities-grid-item h1{
    font-family: 'Aldrich',sans-serif;
    font-size: 1.7rem;
    text-transform: uppercase;
    margin: 2rem 0;
}

/* testimonials */
.testimonials {
    width: 100%;
    height: 80vh;
    background: linear-gradient(135deg, #090909b8 0%, #640694e0 100%), url(images/testimonials-bg...jpg) center no-repeat;
    background-size: cover;
    position: relative;
}
.testimonials::before{
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 13.9rem;
    background: url("images/wave-large-reversed.png")center no-repeat;
    background-size: cover;
}

.testimonial{
    width: 100%;
    color: #fafafa;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.testimonial-text-box{
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text-box i {
    position: absolute;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(240 36 97 / 97%);
    font-size: 8rem;
    opacity: 0.5;
    z-index: -1;
}

.testimonial-customer img{
    width: 10rem;
    height: 10rem;
    border-radius: 100%;
    border: 3px solid #eb648c;
}

/* begin adventures */
.adventure-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    grid-gap: 2.5rem;
    margin-bottom: 2rem;
}

.adventure-grid-item p{
    color: rgba(0,0,0,.7);
}

.contact{
    height: 100%;
    width: 100%;
    content: "";
    padding: 5rem;
    top: 0;
    left: 0;
    color: #000106fc;
    text-decoration: underline;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg,rgb(235 232 232 / 5%) 0%,#ffa6a600 100%), url("images/contact.jpg") center no-repeat fixed;
    background-size: cover;
    background-blend-mode: soft-light;
    opacity: 0.8;
    z-index: -1;
}

.text-center{
    font-size: 35px;
    text-align: center;
    padding-top: 30px;
    font-family: 'Sansita Swashed', cursive;

}

.form{
    max-width: 62%;
    margin: 25px auto; 
}

.form-input{
    font-size: 19px;
    width: 100%;
    padding: 5px 13px;
    margin: 12px 0;
    border: 2px solid black;
    border-radius: 6px;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer{
    position: relative;
    padding: 2.5rem 0;
    background-color: #1111122e;
    text-align: center;
    color: rgb(0 0 0);
}

.footer--feedback{
    position: relative;
    top: 700px;
}

.burger{
    display: none;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;
}

.line{
    width: 33px;
    background-color: white;
    height: 4px;
    margin: 5px 3px;
}


.about-us{
    width: 100vw;
    height: 65vh;
    background: url(images/about-bg..jpg) center no-repeat; 
    background-size: cover;
    position: relative;
}

.about-us img{
    display: flex;
}

.me{
    font-size: 6rem;
    text-align: center;
    text-decoration: underline;
    margin-top: 28rem;
}

.about{
    padding: 0 5rem;
}
.about h1{
    margin: 0 2.2rem;
    font-size: 2.3rem;
}
.about p{
    font-size: 1.7rem;
    padding: 0px 21px;
}