
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Manrope;
    
}
html, body{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    
}
body{
    font-size: 1rem;
    background-color: #fff;
    
}
#header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 70px; 
    width: 100%; 
    margin: 0 auto;   
    background-color: white;
    color: black;
}
.logo img{
    margin: 10px;
    height: 50px;
}
.menu{
    margin-left: 100px;
}
.topmenu{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    line-height: 70px;
    position: relative;
}   
.topmenu li{
    padding: 10px 20px;
}
.topmenu li a{
    position: relative;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    color: black;
    padding: 10px 0px;
    z-index: 1;
    overflow: hidden;
}

.topmenu li a::before{
    content: "";
    width: 0;
    height: 10%;
    background-color: rgb(237, 25, 25);
    color: red;
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: -3;
    transition: .5s all ease;
}

.topmenu li a:hover::before{
    width: 100%;
} 
.topmenu li a:hover{
    color: red;
}
.icon{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top:10px;
    width: 300px;
}

.fa {
    line-height: 80px;
    font-size: 25px;
    
}
.fa:hover{
    opacity: 0.4;
}

.search{
    border-radius: 10px;
    padding: 7px;
    margin-right:-70px;
}


/****** Main Contents Area ************/

#main{
    height: 90svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    padding-top: 70px;
    
}

#main::before{
    content: "";    
    background:url("images/mountaineer.jpg") no-repeat;
    background-size: cover;
    position: absolute;
    opacity: 0.8;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: -1;
}
#main h1{
    font-weight: 700;
    font-size: 4vw;
    color: red;
}
#main h2{
    font-size: 2vw;
    color: white;
}
#main .heading_2nd{
    color:#fcfafa;
    font-size: 4vmin;
    text-align: justify;
    text-align: center;
}
#main p{
    display: none;
    color: rgb(252, 250, 250);
    background-color: rgba(225, 33, 33, 0.563);
    border-radius: 20px;
    padding: 10px;
    font-size: 1.5rem;
    width: 30%;
    margin: 20px auto;
}
.btn{
    position: relative;
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    margin-top: 20px;
    width: 200px;
    height: 40px;
    line-height: 10px;
    background-color: white;
    color: rgb(13, 1, 1);
    border: 1px solid red;
    border-radius: 10px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}
.btn::before{
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    background: red;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translate(-50%);
    transition: .7s all ease;
}
.btn:hover{
    text-decoration: none;
    background-color: white;
    color: white;
    border: 1px solid white;
}
.btn:hover::before{
    transform: translate(0%);
    width: 100%;
}

#categories{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
    text-align: center;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 10px 0px;
}
.items{
    width: auto;
    height: 80px;
    padding: 20px;
    font-size: large;
    font-weight: bold;
} 
#categories .whatweoffer{
    padding: 10px;
}
#categories .whatweoffer{
    padding: 10px 20px;
}

.whatweoffer img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 3px;
    border: 1px solid rgb(45, 22, 22);
}
.whatweoffer img:hover{
    transform: rotateY(180deg);
    transition: 1s ease-in-out;
    overflow: hidden;
    
}
.whatweoffer h3{
    padding-top: 10px;
   
}
.second_heading{
    text-align: center;
    margin: 20px auto;
}

.second_content{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 10px 0px;
}
.second_card img{
    width: 100px;
    height: 100px;
}
.second_card{
     width: 450px;
     height: auto;
     margin: 0px 10px;
     border-radius: 10px;
     padding: 15px;
     background: linear-gradient(360deg, hsla(244, 21%, 54%, 1) 0%, hsla(246, 21%, 54%, 1) 0%, hsla(279, 79%, 92%, 1) 100%);
     color: rgb(244, 239, 239);
     text-align: justify;
     border: 1px solid gray;
     border-radius: 25px;
}
.second_card h3{
    color:red;
    text-align: center;
}
.second_card{
    text-align: center;
    height: 100%;
}
#third_section{
    background-color: #F8F8FF;
    width: 100vw;
    
}
#third_section h1{
    padding-top: 30px;
}
.testimonials{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    
}
.reviews{
    width: 40%;
    text-align: center;
    
}
.reviews img{
    width: 100%;
    border-radius: 10%;
}
.inner_content{
     padding: 20px 30px;
 
}
.inner_content p{
    text-align: justify;
   
}
.inner_content span{
    background-color: #DD2C2C;
    font-size: xx-large;
    font-weight: bolder;
    padding: 5px 15px;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    
}
#fourth_section{
    width: 100%;
}

.mailing_list{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px; 
    padding: 15px;
    
}

.mailing_list a{
    background-color: red;
    padding: 11px 30px;
    color: white;
    font-size: 1rem;
    font-weight: bolder;
    border-radius: 10px;
    text-decoration: none;
}
.mailing_list a:hover{
    opacity: 0.5;
}

.mailing_class{
    margin: 5px 10px;
}
.mailing_class .mail{
    width: 300px;
}
.mailing_class input{
    padding: 70px;
}


/*******Footer Code *********/

#footer{
    height: auto;
    width: 100%;
    position: relative;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    background: linear-gradient(360deg, hsla(244, 21%, 54%, 1) 0%, hsla(246, 21%, 54%, 1) 0%, hsla(279, 79%, 92%, 1) 100%);
    margin-top: 10px;
    padding-top: 10px;
}
.social{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 40px;
    line-height: 40px;
    justify-content: center;
    align-items: center;
        
}
.footer_content{
    width: 100%;
    display: flex;
    flex-direction: row;
}

.copyright{
    color: #fff;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    line-height: 30px;
    display: flex;
    flex-direction: row;
}
.copyright a{
    color: #fff;
    text-decoration: none;
    font-style: italic;
}

.copyright span{
    padding: 0px 10px;
}
.fa-facebook, .fa-twitter, .fa-youtube,.fa-user-circle, .fa-search, .fa-globe{
    color: rgb(243, 11, 11);
    
}
.fa-facebook, .fa-twitter, .fa-youtube{
    padding: 0px 15px;
}

/*......Response Page Code.............*/

#response{
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
#response h1{
    color: #DD2C2C;
}
#response h3{
    color: #FFEC5C;
}


/***********Shop Page**********************/

#shop{
    text-align: center;
    margin-top: 25px;;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop_grid{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.products{
    width: 250px;
    height: 360px;
    background-color: white;
    margin: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 20px;
}
.products p{
    font-size: .8rem;
}

.products img{
    width: 40%;
    height: 30%;
    margin: 40px 0px;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
}
.products .product_name{
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color:#7C72A7;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 0px 10px;
}
.products .description{
    height: 50px;
    font-size: .8rem;
    padding-bottom: 0px;
       
}
.products .price{
    width: 100%; 
    height: 30px;
    line-height: 30px;
    font-weight: bolder;
    display: block;
    padding-bottom: 10px;
    //background-color:red;
    color: crimson;
    letter-spacing: 0.1rem;
    
}
.products .buy_now{
    height: 40px;
    line-height: 40px;
    background-color: crimson;
    color: white;
    margin: 0px;
    padding: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

}
.products .buy_now a{
    display: block;
    text-decoration: none;
    color: white;
}
.products .buy_now a:hover{
    background-color: #7C72A7;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.products img:hover{
    transform: scale(1.5);
    transition: .5s;
}


/************Destinations Page**************/
#destinations{
    width: 100%;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #F5F5F5;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: black;
    margin-bottom: 10px;
    font-family: Fjord One;
}
.description h1{
    margin-top: 20px;
    text-align: center;
    color: #1E2F23;
    font-weight: bolder;
    
}
.description p{
    width: 90%;
    margin: 0 auto;
    padding: 10px;
    text-align: justify;
    color: #768948;
    font-size: 14px;
    
}
.places{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
}
.cards{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;                                                                                                                                                                                                                                                                                                                                                                                                                 
    background-color:whitesmoke;
    color: #1E2F23;
    text-align: center;
    margin-top: 10px;
    border: 1px solid whitesmoke;
    padding: 3px;
    border-radius: 5px;
    height: auto;
    margin: 10px;
    font-size: 15px;
}
.cards p{
    font-size: 0.8rem;
    display: block;
    width: 100%;
}

.cards img{
    width: 100%;
    height: 200px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

}
.cards h3{
    margin: 10px 0px 10px 0px;
}
.cards h4{
    padding-bottom: 10px;
}
.cards h6{
    padding-bottom:10px;
    color: black;
}
.cards h5{
    padding: 0px 0px 10px 0px;
}
.cards .topcities{
    height: 70px;
    padding: 5px;
    color: black;
    display: block;
    background-color:#f1d693;
    font-size: 12px;

}
.cards .activities{
    height: 70px;
}
.cards .months{
    display: block;
    background: #f1d693;
    color: black;
    
}
.prices{
    color: black;
}
.card_listing{
    width: 100%;
    list-style-type:none;
    font-size: 0.7rem;
    margin-top: 10px;
}
.cards a{
    margin: 0px 2px;
    padding: 10px;
    text-decoration: none;
}
.cards a:hover{
    text-decoration: underline;
}

/*********ABOUT US PAGE****************/

#about{
    height: 530px;
    
}
.about_contents{
    width: 80%;
    height: 50%;
    margin: 0 auto;
    color:black;
    text-align: justify;
    margin-top: 50px;
}
.red{
    color: red;
}
#about h1, h2, p{
    padding: 10px;
}

/****************Destination Page End***************/

/****************Package Booking Page***************/
#tours_booking{
    display: flex;
    flex-direction: row;
    height: 580px;
    justify-content: center;
}
.details1{
    width: 40%;
    padding-left: 100px;
    margin-top: 100px;
}
.details1 p{
    margin:0;
    padding: 0;
    font-size: 0.9rem;
}
.details1 h2{
    margin: 0;
    padding: 0;
}

#package_booking {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
h1 {
    color: #0e3c4e;
    margin-bottom: 0.5rem;
}
#package_booking p{
    margin: 0;
    padding: 0;
}

form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
input, select, button {
    padding: 0.75rem;
    font-size: .8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;

}
button {
    background: crimson;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;

}

button:hover {
    background: crimson;
    text-decoration: none;
}
.note {
    font-size: 0.9rem;
    color: black;
    margin-top: 1rem;
}

.inq{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top:5px;
}
.inq p{
    margin: 0;
    padding: 0;
}
.typesofinquiry{
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    margin-bottom: 10px;
    font-size: .9rem;
}
textarea{
    width: 100%;
    height: 100px;
}
input[type=text],textarea, select {
  width: 100%;
  padding: 12px;
  margin: 3px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit]:hover {
  opacity: 0.7;
  text-decoration: none;
}

/***************Tour Packages Page Code*************/
#package{
    height: auto;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.package_description{
    text-align: center;
    margin-top: 10px;
    background-color: whitesmoke;
    padding: 0;
}
.package_description p{
    margin: 0px;
    padding: 5px;
}
.details h3, .details p{
    margin: 0;
    padding: 0;
}
.details h3{
    padding-bottom: 5px;
    padding-left: 10px;
}
.details p{
    padding: 10px;
}
#details_list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}
.details{
    width: 450px;
    height: auto;
    background: linear-gradient(360deg, hsla(244, 21%, 54%, 1) 0%, hsla(246, 21%, 54%, 1) 0%, hsla(279, 79%, 92%, 1) 100%);
    border-radius: 10px;
    margin-top: 20px;
    padding: 10px 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: black;
    
}

.included li, .notincluded li{
    padding-left: 10px;
}

.destinations_table th{
    text-align: center;
    padding: 5px;
}
.destinations_table td{
    padding-left: 10px;
    padding-top: 5px;
}
.package_cta{
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 0px;
}
.package_cta button{
    padding: 5px;
    background-color: red;
    color: white;
    font-size: 1.5rem;
    
}
.details span{
    font-weight: bold;
}
.button{
    margin-left: 20px;
}
button:hover{
    opacity: 0.7;
    cursor: pointer;
    border-color: white;
    text-decoration: underline;
}


/****************Booking Page*********/
#booking_page{
    height: 580px;
    text-align: center;
    padding: 100px;
    
}
#booking_page ul{
    list-style-type: none;
}
#booking_page ul li{
     padding: 10px 0px;
}
#booking_page ul li a{
    text-decoration: none;
   
    
}
#booking_page ul li a:hover{
    text-decoration: underline;
}
 






/****************Media Query For Smaller Screen**********/

@media (max-width:600px) {
    #header{
        display: flex;
        flex-direction: column;
        height: auto;
        flex-direction: center;
        align-items: center;
        background: transparent;
    }
    .menu{
        background-color: transparent;
        margin: 0px;
        padding: 0px;
    }    
    
    .topmenu{
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;      
        position: relative;
        line-height: normal;
       
    }   
    #topmenu li a{
        color: black;
    }
    .topmenu li{
        margin: 0;
        padding: 1px 5px;
    }
    .topmenu li a{
        margin: 0px;
        position: relative;
        text-decoration: none;
        font-size: 1rem;
        font-weight: normal;
        color: #fff;
        padding: 5px 0px;
        z-index: 1;
        overflow: hidden;
    }
    .topmenu li a::before{
        content: "";
        width: 0;
        height: 10%;
        background-color: rgb(237, 25, 25);
        color: red;
        position: absolute;
        bottom: 5px;
        left: 0;
        z-index: -3;
        transition: .5s all ease;
    }
    .topmenu li a:hover::before{
        width: 100%;
    } 
    .topmenu li a:hover{
        color: red;
    }
    .icon{
        display: flex;
        flex-direction: row;
        width: 90%;
        margin: 0 auto;
    }
    #main{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        height: 200px;
    }       
    #main::before{
    content: "";    
    background:url("images/mountaineer.jpg") no-repeat;
    background-size: contain;
    position: absolute;
    opacity: 0.8;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    }
    #main h1{
        margin-top: 0px;
        font-size: 4vw;
    }
    #main h2{
        font-size: 2.5vw;
        margin-top: -10px;
        color: #fcfbfb;
    }
    .heading_2nd{
        color: red;
    }
    
    .btn{
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    text-decoration: none;
    margin-top: 10px;
    width: 130px;
    height: 30px;
    line-height: 5px;
    background-color: white;
    color: rgb(13, 1, 1);
    border: 1px solid red;
    border-radius: 10px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    }

    #section_divider{
        margin-top: 50px;
        
    }
    
    #categories{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items:center;
    text-align: center;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 10px 0px;
    }
    .items{
        width: auto;
        height: 80px;
        padding: 20px;
        font-size: large;
        font-weight: bold;
    } 
    .whatweoffer img{
        width: 100px;
        height: 100px;
        border-radius: 50%;
        padding: 3px;
        border: 1px solid rgb(45, 22, 22);
    }
    .whatweoffer h3{
        font-size: smaller;
        padding-top: 10px;
    
    }
    .mainheading{
        width: 100%;
        margin: 0;
    }
    .mainheading h1{
        color: crimson;
    }
    .mainheading h2{
        display: none;
    }
    .mainheading p{
        font-size: 1rem;
    }
       
    #contact{
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .mailing_list{
        width: 50%;
        margin: 0 auto;
        justify-content: center;
        margin-bottom: 20px;
    }
    .second_heading{
        font-size: 22px;
    }



    #footer{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 70px;
        padding: 10px 0;
    }
    
    .copyright{
        display: block;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        height: auto;
        text-align: center;
        height: 50px;
        
    }
    
    .copright .fa{
        height: auto;
        margin: 0;
        padding: 0;
    }
    
    .second_content{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;

    }
    .second_card{
        margin-bottom: 15px;
    }

    #contact{
        display: flex;
        flex-direction: column;
    }

    #tours_booking{
        display: flex;
        flex-direction: column;
    }
    .details1{
        width: 100%;
        padding: 10px;
        margin: 0px;
    }
    .testimonials{
        display: flex;
        flex-direction: column;
    }
    .reviews{
        width: 90%;
        margin: 0 auto;
    }

    #tours_booking{
        margin-top: 50px;
        height: auto;
    }
    #package_booking{
        //margin-top: -10px;
    }
}   

