@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

.poppins {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
}

.poppins-medium {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.poppins-extrabold {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: normal;
}

.txtSmall {
	margin: 0px;
	padding: 0px;
	font-size: 0.8em;
}

.ModalBox h2 {
	color: #e88621;
}

.ModalBox h4 {
	color: #0e5ca4;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}

p {
	font-size: 0.9em;
	color: #666666;
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
}

.ModalBox {
	position: fixed;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	height: 100vh;
	z-index: 10;
	top: 0;
	padding: 15vh 0vh;
	display: none;
}

.popUp {
	width: 55%;
	margin: 0px auto;
	height: auto;
	background: #fff;
	display: block;
	border-radius: 12px;
	padding: 30px 25px;
	box-shadow: 0px 0px 20px #aeaeae;
	height: 75vh;
	overflow: auto;
}

.popBody h2 {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: normal;
}

.popBody h5 {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #0e5ca4;
}

.popBody ul li {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
	font-size: 0.9em;
}

form {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.button {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
	border: none;
	color: #005ba3;
	padding: 8px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	border-radius: 15px;
}

/* CSS for Mobile View */
@media only screen and (max-width: 600px) {
	.ModalBox {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px;
	}

	.popUp {
		background-color: #fff;
		width: 90%;
		max-width: 500px;
		max-height: 95vh;
		overflow-y: auto;
		border-radius: 10px;
		padding: 15px;
	}

	.popBody h2,
	.popBody h4 {
		font-size: 1.4rem;

	}


	.popBody p,
	.popBody span,
	.popBody ul li {
		font-size: 1rem;
		line-height: 1.5;
	}


	.popBody p {
		margin-bottom: 10px;
	}


}