*{
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	list-style: none;
	font-family: 'Poppins', sans-serif;

}

header {
	
	background-color: #718fc5;
    
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}
header .logo {
    font-size: 30px;
    text-transform: uppercase;
}
header nav ul {
    display: flex;
}
header nav ul li a {
    display: inline-block;
    color: #000000;
    padding: 5px 0;
    margin: 0 10px;
    border: 3px solid transparent;
    text-transform: uppercase;
    transition: 0.2s;
}
header nav ul li a:hover,
header nav ul li a.active {
	background-color: #5a80c3;
}
.hamburger {
    cursor: pointer;
    display: none;
}
.hamburger div {
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background: #000;
}
@media only screen and (max-width: 900px) {
    header {
        padding: 0 30px;
    }
}
@media only screen and (max-width: 700px) {
    .hamburger {
        display: block;
    }
    header nav {
        position: absolute;
        width: 100%;
        left: -100%;
        top: 70px;
        width: 100%;
        background: #fff;
        padding: 30px;
        transition: 0.3s;
    }
    header #nav_check:checked ~ nav {
        left: 0;
    }
    header nav ul {
        display: block;
    }
    header nav ul li a {
        margin: 5px 0;
    }
}
.body{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	
	background-image: linear-gradient( #ffffff ,#E0EAFC);
	background-position: center;
	background-size: cover;
	overflow-x: hidden;
}
.heading{
	margin-top: 30px;

	
	
}

.heading{
	width: auto;
	text-align: center;
	color:black
}
.heading h1{
	font-size: 40px;
}
.heading a{
	text-decoration: none;
	color: #000;
	font-size: 25px;
	font-weight: bold;
	border-radius: 40px;
	padding: 14px 40px;
	background-color: #fff;
	width:auto;
}
.heading a:hover{
	letter-spacing: 3px;
	transition: 0.6s;
}
.tours{
	margin: 30px;
	width: 100%;
	display: flex;
	justify-content:space-around;
	flex-wrap: wrap;
	
	align-items: center;
	

}
.places{
	margin-top:30px;
	box-shadow: 10px 15px 0 rgba(0, 0, 0, 0.19);
	border-radius: 12px;
	overflow:hidden;
}

.places h2{
	color: black;
	font-size: 30px;
	letter-spacing: 3px;
	border-radius: 0.5px;
	padding: 20px 20px;
	background-color:white;
}
.places a{
	margin-top: 20px;
	margin-left: 25%;
	margin-bottom: 10px;
	display:inline-block;
	text-decoration: none;
	color: red;
	font-weight: bold;
	font-size: 10px;
	border-radius: 10px;
	padding: 12px 30px;
	background-color: #fff;
}
.places a:hover{
	background-color: #000;
	letter-spacing: .5px;
	transition: 0.6s;
}
.btn1{
	display:flex;
	justify-content: center; 
	align-items:center;
	height:200px;
	background-color: #E0EAFC;
	flex-wrap: wrap;
}
.btn2{
	display: flex;
	position: relative;
	width:auto;
	height:auto;
	border-radius: 20%;
	margin-left: 15%;
justify-content: center;
align-items: center;
flex-wrap: wrap;

}  
/* .btn-group{
	width:100%;
	height:auto;
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
	

} */
#getLogs{
	
	width:250px;
	height: inherit;
	font-size: 1.2em;
	text-align: center;
	cursor:pointer;
	border-radius: 40px;
	padding: 10px 20px;
	



}
/* #getRevenueEvent{
	position:absolute;
	width:250px;
	height: inherit;
	text-align: center;
font-size: 1.2em;
border-radius: 30px;
cursor:pointer;
padding: 10px 20px;

} */
#getLogs:nth-child(1){
	margin-left: -250px;
	background:white;
}
/* #getRevenueEvent:nth-child(2){
	margin-right:-250px;
	background:white;
} */
.footer{
	width: 100%;
	height: 70px;
	
	display: flex;
	justify-content:space-around;
	flex-wrap: wrap;
	align-items: center;
	background-color: white;
}
.footer a{
	text-decoration: none;
	color: green;
	font-size: 18px;
	font-weight: bold;
}
.footer a:hover{
	text-decoration: underline;
	transition: 0.4s;
}





