@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800');
		
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

img {
	width: 100%;
	height: auto;
}

h1 {
	margin: 0;
	color: #3b1c35;
}

.header {
	position: fixed;
	top: 15px;
	right: 30px;
	z-index: 9990;
}

.header i {
	font-size: 1.8rem;
}

.navigation {
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	position: fixed;
	top: 0;
	right: -100%;
	bottom: 0;
	overflow: auto;
	transition: all 0.5s ease;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	z-index: 10000;
}

.navigation-cross {
	text-align: right;
	padding: 15px 30px;
}

.navigation-cross i {
	font-size: 1.8rem;
}

.menu-show .navigation { 
	right: 0;
}

.navigation ul {
	margin: 0;
	background-color: #ffffff;
	list-style: none;
	padding: 0;
}

.navigation ul li:first-child {
	border-top-color: transparent !important;
}

.navigation ul li {
	border-top: 1px solid #d6d6d6;
}

.navigation ul li:hover {
	background-color: #f5f5f5;
}

.navigation ul li a {
	display: block;
	color: #999999;
	text-decoration: none;
	padding: 20px;
}

.navigation ul li a h3 {
	margin: 0;
	color: #434343;
	font-size: 2.5rem;
	letter-spacing: 1px;
}

.regvisit-steps h1 {
	margin-bottom: 30px;
	color: #bf87c2;
}

.regvisit-steps p {
	margin: 0;
	font-size: 1.2rem;
	text-align: center;
}

.welcome-logo, .welcome-text {
	width: 50%;
	margin: 0 auto;
	padding: 15px;
}

.welcome-text-wrapper, .works-customer, .donate-wrapper {
	background-color: #faf6fa;
}

.welcome-text h1 {
	margin-bottom: 15px;
	line-height: 1.5;
}

.welcome-text p {
	font-size: 1.2rem;
}

.custom-btn-a {
	width: 80%;
	margin-bottom: 15px;
	background-color: #B78EBF;
	font-size: 1.2rem;
	color: #fff;
	padding: 15px 0;
}

.login-wrapper-link {
	color: #B78EBF;
}

.login-wrapper-link:hover {
	color: #B78EBF;
	text-decoration: none;
}

.paragraph {
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.works-business, .works-customer, .donate-wrapper, .supported {
	padding: 45px 0;
}

.regvisit-steps {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.faq {
	padding: 45px 15px;
}

.accordion {
	padding: 30px 0;
}

.accordion-btn {
	cursor: pointer;
}

.accordion-btn i:before {
	content: "\f077";
	color: #000;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.accordion-btn.collapsed i:before {
	content: "\f078";
}

.divider {
	height: 1px;
	margin: 45px 0;
	background-color: #000;
}

.donate-text {
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.footer {
	width: 100%;
	background-color: #faf6fa;
    text-align: center;
    padding: 30px 0;
}

.policy {
	padding: 30px;
}

.policy ul {
	padding-left: 40px;
}

@media (max-width: 767px) {
	.welcome-logo, .welcome-text {
		width: 100%;
	}

	.faq .accordion-btn h3 {
		font-size: 1.5rem;
	}
}