#main .adventure-dropdown {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 12px 15px;
    background: #fff;
    color: black;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
    box-shadow: 0 0px 0 rgba(0,0,0,0);
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#main .adventure-dropdown.outdoors{ 
    z-index: 5; 
    margin: 0; 
}
#main .adventure-dropdown.cultural{ 
    z-index: 4; 
    margin: 15px 0 0px;
    color: #fff;
    background: #ffa500;
}
#main .adventure-dropdown.cultural:after { 
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent;
}
#main .adventure-dropdown:after { 
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #4d4d4d transparent;
}
#main .adventure-dropdown .dropdown {
    position: absolute;
    padding: 0;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: none;
    border-bottom: none;
    list-style: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
}
#main .adventure-dropdown .dropdown li {
    margin: 0;
    padding: 0 10px ;
    list-style: none;
	text-transform: uppercase;
}
#main .adventure-dropdown .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    transition: all 0.3s ease-out;
    border-top: 1px solid #e6e8ea;
}


#main .adventure-dropdown.cultural .dropdown{
	background: #ffa500;
}
#main .adventure-dropdown.cultural .dropdown li a{
	color: #fff;
	border-top: 1px solid rgba(255,255,255,0.15);
}
#main .adventure-dropdown.cultural .dropdown li a:hover{
	color: #fff;
	opacity: 0.60;
}



#main .adventure-dropdown .dropdown li:last-of-type a {
    border: ;
}
#main .adventure-dropdown .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}
#main .adventure-dropdown .dropdown li:hover a {
    color: #FFA500;
	padding-left: 8px;
}
#main .adventure-dropdown.active {
	
}
#main .adventure-dropdown.active:after {
    
}

#main .adventure-dropdown.active .dropdown {
    border-bottom: 0px solid rgba(0,0,0,0.2);
    max-height: 400px;
}



#main .adventure-search{
    position: absolute;
    z-index: 100;
    bottom: 50%;
    margin-bottom: -175px;
    left: 10%;
    padding: 25px;
    text-align: center;
    height: 340px;
    width: 300px;
    background: rgba(0,0,0,0.75);;
    
 
    color: white;
    z-index: 999;
}

#main .adventure-search h2{
    margin: 0;
    padding: 0;
    font-size: 33px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
#main .adventure-search h2 span{
    font-size: 42px;
    color: #fff;
}
#main .adventure-search p{
    margin: 5px 0;
    padding: 0 0 18px;
    font-size: 16px;
    font-weight: 300;
}
#main .view-all-adventures{
    display: inline-block;
    margin: 25px auto;
    width: 200px;
    height: 60px;
    line-height: 60px;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #ededed;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}
#main .view-all-adventures:hover{
    background: #ffa500;
    color: #fff;
    border: 1px solid #ffa500;
}

@media screen and (max-width: 992px) {
	#main .adventure-search{
    	position: absolute;
    	z-index: 100;
    	bottom: -114px;
    	margin-bottom: 0;
    	left: 0;
		right: 0;
    	padding: 0;
    	text-align: center;
    	height: 114px;
    	width: 100%;
    	background: #fff;
        color: white;
    	z-index: 999;
	}
    #main .adventure-search h2{
		display: none;
	}
	#main .adventure-search p{
		display: none;
	}
	#main .adventure-dropdown.cultural{ 
		margin: 0;
	}

}



