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

#bgdiv{

    background-image: url("../images/bgtour.jpg");
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

#text{
    color: white;
    position: absolute;
    top: 35%;
    left: 5%;
}

#text h1{
    font-size: 45px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;    
}

#text h3{
    font-size: 35px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

span{
    color: rgba(139, 69, 19,);
}

#explore{
    height: 50px;
    width: 18%;
    border: 1px solid black;
    background-color: rgba(139, 69, 19, 0.822);
    color: white;
    border-radius: 15px;
}



#explore:hover{
    background-color: aqua;
}

#explore a{
    text-decoration: none;
    color: white;
    font-size: 15px;
}


#secondsec{
    margin-top: 100px;
}

#secondsec h1{

    margin-bottom: 20px;
    margin-left: 40px;
    font-size: 50px;
}

.tour{
    float: left;
    width: 33.3%;
    padding: 25px ;
    box-shadow: 0 10px 10px -5px;
}

.tour img{
    width: 100%;
    height: 250px;
}
 

.p1{
    color: black;
    font-size: 25px;
    text-align: center;
    margin-top: 10px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.tour > div > a{
    text-decoration: none;
    display: block;
    border-bottom: 3px solid transparent;

}

.tour > div > a:hover{
   border-bottom: 3px solid  rgba(139, 69, 19, 0.822);
   
}
#thirdsec{
   clear: both;
   padding: 0px 90px;
   padding-top: 100px;
}

input{
    margin-bottom: 30px;
    width: 60%;
    height: 50px;
    background-color:rgba(139, 69, 19, 0.11);
    border: 1px groove black;
}

 #num{
    width: 20%;
}

#mail{
    width: 40%;
}

#textarea{
    width: 60%;
    background-color: rgba(139, 69, 19, 0.11) ; 
    border: 1px groove black;
}

#submit{
    width: 10%;
    height: 30px;
    margin-top: 20px;
    background-color: rgba(139, 69, 19, 0.644) ; 
    border: 1px groove black;
    color: white;
    font-size: 15px;
}

#submit:hover{
    background-color: black;
}

#qnaire{
    float: left;
    width: 80%;
    margin-bottom: 60px;
}

#help{
    font-size: 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 20px;
}

#help > span {
      color: rgba(139, 69, 19, 0.836) ;
}

#map{
    float: right;
    border-radius: 60%;
    height: 250px;
    width: 20%;
}

@media(max-width:450px){
    .tour{
        float: none;
        width: 100%;
    }

    #qnaire input{
        float: none;
        width: 100%;
    }

    #qnaire textarea{
        float: none;
        width: 100%;
    }

    #map{
        float: left;
        /* margin-right: 100px; */
        width: 100%;
        height: 150px;
        margin-bottom: 20px;
        border-radius: 0;
    }

    #help{
        /* margin-right: 100px; */
        margin-bottom: 95px;
        display: block;
    }

    #submit{
        width: 30%;
    }

    #explore{
        width: 30%;
    }

    #text{
        text-align: center;
        margin-bottom: 50px;
    }

}