* {
	box-sizing: border-box;
}
:root {
	--primary-blue: #002c66;
	--secondary-blue: #0c3c7d;
	--yellow-gold: #dcfd03;
	--white: #ffffff;
}
@font-face {
	font-family: "Telegraf-Regular";
	src: url("../fonts/PPTelegraf-Regular.ttf");
}
@font-face {
	font-family: "Telegraf-Bold";
	src: url("../fonts/PPTelegraf-UltraBold.ttf");
}
@font-face {
	font-family: "Telegraf-Light";
	src: url("../fonts/PPTelegraf-UltraLight.ttf");
}
* {
	box-sizing: border-box;
}
body {
	background-color: var(--primary-blue) !important;
	color: var(--white) !important;
	font-family: "Telegraf-Regular", sans-serif !important;
}
a {
	text-decoration: none;
}
.main-section {
	height: 100vh;
	display: flex;
	align-items: center;
}
.content-section {
	display: flex;
	justify-content: center;
	align-items: center;
}
.shadow-bg-main {
	width: 100%;
	position: absolute;
	z-index: -1;
	opacity: 0.2;
	height: 100vh;
}
.shadow-bg-content {
	width: 100%;
	position: absolute;
	z-index: -1;
	opacity: 0.2;
	height: auto;
}
.forstaff-logo {
	width: auto;
	height: auto;
}
.receipt-content {
	text-align: center;
}
.main-section h1 {
	font-size: 60px;
	font-weight: 700;
}
.main-section h2 {
	font-size: 26px;
	font-weight: 400;
}
.main-section p {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
}
.capsule-wrapper {
	padding: 0.7rem 0;
	font-size: 18px;
	font-weight: 400;
	border: 1px solid var(--white);
	border-radius: 25px;
	width: 40%;
	margin: 10rem auto 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.capsule-wrapper i {
	color: var(--yellow-gold);
}
.receipt-name-wrapper {
	padding: 1.3rem 0;
}
.receipt-name-wrapper p {
	font-size: 17px;
	font-weight: 400;
	line-height: 0.6;
}
.invite-text {
	white-space: pre;
}
.main-section button {
	background-color: var(--yellow-gold);
	color: var(--primary-blue);
	padding: 0.7rem 0;
	border-radius: 10px;
	font-weight: 700;
	font-size: 18px;
	border: 1px solid var(--yellow-gold);
	width: 50%;
	transition: 0.3s ease-in-out;
	cursor: pointer;
}
.main-section button:hover {
	color: var(--yellow-gold);
	background-color: var(--primary-blue);
	padding: 0.7rem 0;
	border-radius: 10px;
	font-weight: 700;
	font-size: 18px;
	border: 1px solid var(--yellow-gold);
	width: 50%;
	transition: 0.3s ease-in-out;
	cursor: pointer;
}
/* Content Section */
.content-section h2 {
	text-align: center;
	padding: 2rem 0;
	color: var(--yellow-gold);
	font-size: 45px;
	font-weight: 700;
}
.location-wrapper {
	text-align: center;
	padding: 2rem 0 0 0;
}
.location-wrapper a {
	text-decoration: none;
	color: var(--white);
}
.location-wrapper a:hover {
	text-decoration: none;
	color: var(--white);
}
.location-wrapper p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}
.content-box {
	background: linear-gradient(120deg, rgba(0,44,102,1) 0%, rgba(220,253,3,1) 100%);
	color: var(--white);
	height: 520px;
	text-align: center;
	display: flex;
	/* align-items: center; */
	position: relative;
}
.content-box-bg {
	width: 100%;
	height: inherit;
	position: absolute;
	z-index: 0;
}
.box-wrapper {
	width: 85%;
	margin: 0 auto;
	z-index: 1;
}
.content-box-img {
	width: 30%;
	height: auto;
	padding: 4rem 0 0 0;
}
.content-box h4 {
	font-size: 36px;
	font-weight: 700;
	padding: 2rem 0 1rem 0;
}
.content-box p {
	font-size: 15px;
	font-weight: 400;
	padding: 0.5rem 0;
	width: 70%;
	margin: auto;
}
.keynote-words p {
	width: 90% !important;
}
@media screen and (max-width: 320px) {
	.content-section {
		align-items: normal;
	}
	.forstaff-logo {
		padding: 2rem 0;
	}
	.shadow-bg-main{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.shadow-bg-content {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		position: fixed;
		overflow: hidden;
	}
	.main-section h2 {
		font-size: 35px;
	}
	.main-section h1 {
		font-size: 40px;
	}
	.main-section p {
		font-size: 11px;
	}
	.capsule-wrapper {
		width: 40%;
		padding: 0.4rem 0;
		font-size: 11px;
		margin: 5rem auto 0 auto;
	}
	.main-section button {
		width: 55%;
		font-size: 15px;
	}
	.receipt-name-wrapper p {
		font-size: 16px;
	}
	.location-wrapper {
		padding: 2rem 0 0 0;
	}
	.location-wrapper p {
		font-size: 13px;
		line-height: 0.6;
	}
	.content-section h2 {
		font-size: 30px;
	}
	.content-box {
		margin: 1rem auto;
		width: 85%;
	}
	.content-box h4 {
		font-size: 30px;
	}
	.content-box p {
		font-size: 12px;
	}
}

@media screen and (min-width: 321px) and (max-width: 425px) {
	.content-section {
		align-items: normal;
	}
	.forstaff-logo {
		padding: 2rem 0;
	}
	.shadow-bg-main{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.shadow-bg-content {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		position: fixed;
		overflow: hidden;
	}
	.main-section h2 {
		font-size: 35px;
	}
	.main-section h1 {
		font-size: 40px;
	}
	.main-section p {
		font-size: 12px;
	}
	.capsule-wrapper {
		width: 46%;
		padding: 0.4rem 0;
		font-size: 15px;
		margin: 5rem auto 0 auto;
	}
	.receipt-name-wrapper p {
		font-size: 16px;
	}
	.location-wrapper {
		padding: 2rem 0 0 0;
	}
	.location-wrapper p {
		font-size: 13px;
		line-height: 0.6;
	}
	.content-section h2 {
		font-size: 35px;
	}
	.content-box {
		margin: 1rem auto;
		width: 85%;
	}
	.content-box p {
		font-size: 14px;
	}
}

@media screen and (min-width: 425px) and (max-width: 768px) {
	.content-section {
		align-items: normal;
	}
	.forstaff-logo {
		padding: 2rem 0;
	}
	.shadow-bg-main{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.shadow-bg-content {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		position: fixed;
	}
	.main-section h2 {
		font-size: 33px;
	}
	.main-section h1 {
		font-size: 60px;
	}
	.main-section p {
		font-size: 15px;
	}
	.capsule-wrapper {
		width: 50%;
		padding: 0.5rem 0;
		font-size: 20px;
		margin: 5rem auto 0 auto;
	}
	.receipt-name-wrapper p {
		font-size: 18px;
	}
	.main-section button {
		width: 32%;
		font-size: 17px;
	}
	.location-wrapper {
		padding: 2rem 0 0 0;
	}
	.location-wrapper p {
		font-size: 16px;
		line-height: 0.6;
	}
	.content-section h2 {
		font-size: 45px;
	}
	.content-box {
		margin: 1rem auto;
		width: 85%;
	}
	.content-box p {
		font-size: 14px;
	}
}
@media screen and (min-width: 768px) and (max-width: 992px) {
	.content-section {
		align-items: normal;
	}
	.forstaff-logo {
		padding: 2rem 0;
	}
	.shadow-bg-main{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.shadow-bg-content {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		position: fixed;
		overflow: hidden;
	}
	.main-section h2 {
		font-size: 35px;
	}
	.main-section h1 {
		font-size: 40px;
	}
	.main-section p {
		font-size: 12px;
	}
	.capsule-wrapper {
		width: 40%;
		padding: 0.4rem 0;
		font-size: 15px;
		margin: 5rem auto 0 auto;
	}
	.receipt-name-wrapper p {
		font-size: 16px;
	}
	.location-wrapper {
		padding: 2rem 0 0 0;
	}
	.location-wrapper p {
		font-size: 13px;
		line-height: 0.6;
	}
	.content-section h2 {
		font-size: 35px;
	}
	.content-box {
		margin: 1rem auto;
		width: 85%;
	}
	.content-box p {
		font-size: 14px;
	}
}


