*{
    margin: 0;
    padding: 0;
}

h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    padding: 82px 0;
    font-size: 38px;
}

.bankdata{
    font-size: 18px;
    font-weight: 550;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* border: 2px solid #000; */
}

.main{
    display: flex;
    margin: 0px auto;
    max-width: 50%;
    align-items: center;
}

.qr img{
    width: 200px;
    height: auto;
    /* border: 2px solid #000; */
}

.exemption{
    height: 100%;
    background-color: antiquewhite;
    max-width: 100%;
}

.exemption p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    max-width: 50%;
    padding: 0 31px;
}

.exemption h2{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
    text-align: center;
}

footer{
    text-align: center;
    padding: 3px 0;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.query{
    height: 100%;
    background-color: rgb(243, 213, 175);
}

.form{
    display: flex;
    flex-direction: column;
    max-width: 80%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.query h3{
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
}

input{
    width: 80%;
    padding: 7px 0;
    border-radius: 7px;
    background: none;
    margin: 3px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 2px solid grey;
}

.query button{
    width: 80%;
    padding: 7px 69px;
    border-radius: 7px;
    background: none;
    margin: 10px;
    border: 2px solid grey;
    cursor: pointer;
}


textarea{
    width: 80%;
    padding: 7px 0;
    border-radius: 7px;
    background: none;
    margin: 3px;
    border: 2px solid grey;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer{
    text-align: center;
}

.rightpara{
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    max-width: 80%;
}

.rightpara img{
    width: 50%;
    height: auto;
    padding: 42px;
    border-radius: 150px;
}

@media (max-width: 900px){
    .main{
        display: flex;
        flex-direction: column;
    }
    .bankdata{
        display: flex;
        flex-direction: column;
    }
}


/* MENU code */

*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}

ul.menu-ul{
	list-style-type: none;
	float: right;
	display: inline-flex;
	margin: 10px;
}

ul.menu-ul li{
	padding: 10px;
}

ul.menu-ul li a{
	text-decoration: none;
	color: #000;
	padding: 10px;
	transition: 0.6s ease;
}

ul.menu-ul li a.active{
	background-color: #fff;
	color: red;
	font-weight: 600;
}

ul.menu-ul li a:hover{
	background-color: #000;
	color: #fff;
}
img.link{
	width: 50px;
	position: absolute;
	top: 50px;
	right: 50px;
	display: none;
}


.menu.mobile-menu{
	margin-left: 0;
}

div.logo img.logo-img{
	height: 170px;
	width: auto;
	float: left;
	position: absolute;
	top: 20px;
	left: 20px;
	border-radius: 50%;
}

@media (max-width: 900px){
	ul.menu-ul{
		display: none;
	}

	img.link{
		display: block;
		font-weight: 600;
	}

	div.menu{
		top: 0;
		left: 0;
		position: absolute;
		background-color: rgba(255, 255, 255, 0.20);
		backdrop-filter: blur(8px);
		width: 100%;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: -100%;
		transition:  0.5s ease;

	}

	ul.menu-ul{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	ul.menu-ul li{
		margin: 25px 0;
		font-size: 1.2em;
		font-weight: 600;
	}

}
