/* -------------------- fonts ------------------------ */
@font-face {
	font-family: 'Arial-MT-Std';
	src: url('../font/Arial-MT-Std-Black.ttf');
	font-weight: 900;
	font-display: swap;
}

@font-face {
	font-family: 'Arial-MT-Std';
	src: url('../font/Arial-MT-Std-Extra-Bold.ttf');
	font-weight: 800;
	font-display: swap;
}

@font-face {
	font-family: 'Arial-MT-Std';
	src: url('../font/Arial-MT-Std-Bold.ttf');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'Arial-MT-Std';
	src: url('../font/Arial-MT-Std-Medium.otf');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'Arial-MT-Std';
	src: url('../font/Arial-MT-Std-Regular.ttf');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'Arial-MT-Std';
	src: url('../font/Arial-MT-Std-Light.ttf');
	font-weight: 300;
	font-display: swap;
}


/* ----------------- Basic css -------------------- */
@-ms-viewport {
	width: device-width;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
	font-size: 0.48vw;
}

:root {
	scroll-behavior: unset;

	/* colors */
	--black-color: #000000;
	--white-color: #ffffff;
	--light-blue-color: #c9d8fa;
	--blue-color: #015aa3;
	--footer-bg-color: #155faa;
}


*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
	outline: none;
}

a {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	transition: 0.2s all ease;
	-webkit-transition: 0.2s all ease;
	-moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
	text-decoration: none;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

/* body */
body {
	font-family: 'Arial-MT-Std';
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.4;
	background: var(--white-color);
	color: var(--black-color);
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Arial-MT-Std';
}

/* custom_container */
.custom_container {
	max-width: 135.5rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
}


/* ---------------- main_wrapper  ------------------ */
.main_wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.logo {
	background: var(--white-color);
	padding: 1.5rem 0rem;
	text-align: center;
}

.logo img {
	max-width: 20rem;
	width: 100%;
}

.form_section {
	margin: auto 0rem;
	text-align: center;
	position: relative;
}

.form_wrapper {
	position: relative;
}

.badge {
	max-width: 16.7rem;
	width: 100%;
	position: absolute;
	top: -3rem;
	left: 5rem;
}

.badge img {
	width: 100%;
}

.min_badge {
	max-width: 11.6rem;
	width: 100%;
	position: absolute;
	right: 10.5rem;
	bottom: 14rem;
}

.min_badge img {
	width: 100%;
}

.form_content {
	max-width: 81rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	background: var(--white-color);
	border: 0.4rem solid var(--black-color);
	padding: 2rem 5rem 1.3rem 5rem;
	border-radius: 10rem;
}

.form_content p {
	font-size: 1.95rem;
	font-weight: 400;
	color: var(--black-color);
	margin-bottom: 1.6rem;
}

.form_content p strong {
	font-weight: 800;
}

.input_box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.6rem;
	margin-bottom: 1.1rem;
}

.input_box img {
	width: 3.1rem;
}

.input_box input {
	max-width: 47rem;
	width: 100%;
	height: 4rem;
	background: var(--light-blue-color);
	color: var(--black-color);
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
	border-radius: 5rem;
	border: none;
	outline: none;
	padding: 0.5rem 1.5rem;
}

.input_box input::placeholder {
	color: var(--black-color);
}

.input_box input:focus::placeholder {
	opacity: 0;
}

.check_box {
	max-width: 62rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0.5rem;
	text-align: left;
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
}

.check_box input {
	width: 2rem;
	height: 2rem;
	display: inline-block;
	flex-shrink: 0;
	cursor: pointer;
}

.check_box label {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.42;
	cursor: pointer;
}

.check_box label a {
	text-decoration: underline;
}

.form_content button {
	font-size: 3.6rem;
	font-weight: 800;
	color: var(--blue-color);
	background: transparent;
	border: none;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	cursor: pointer;
	transition: all 300ms;
}

.form_content button img {
	max-width: 7.5rem;
	width: 100%;
}

.form_content button:hover:not(:active) {
	opacity: 0.6;
}

.form_content h6 {
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--black-color);
}

.form_bottom h4 {
	font-size: 3.3rem;
	font-weight: 500;
	line-height: 1.1;
	color: var(--blue-color);
	margin: 1.5rem 0rem 2rem;
}

.form_bottom a {
	font-size: 3.3rem;
	font-weight: 800;
	color: var(--blue-color);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.8rem;
}

.form_bottom a img {
	width: 2.8rem;
}

.form_bottom p {
	font-size: 1.53rem;
	font-weight: 400;
	color: var(--black-color);
	max-width: 68rem;
	width: 100%;
	margin: 2rem auto 0rem;
	padding-bottom: 1rem;
}

/* ---------------- Footer Section  ------------------ */

.footer_section {
	background: var(--footer-bg-color);
	padding: 1rem 0 2rem;
	text-align: center;
}

.footer_itemBox {
	background: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 5rem;
	padding: 1.4rem 2.4rem;
}

.footer_item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.footer_item img {
	width: 3rem;
}

.footer_item p {
	font-size: 1.86rem;
	font-weight: 400;
	color: var(--black-color);
}

.footer_item p strong {
	width: 800;
}

.footer_text p {
	font-size: 2.7rem;
	font-weight: 400;
	color: var(--white-color);
	margin: 1.8rem 0rem 0.2rem;
}

.marquee_box {
	background: var(--white-color);
	padding: 1.6rem 1rem;
	display: flex;
	align-items: center;
}

.marquee {
	overflow-x: clip;
	white-space: nowrap;
	position: relative;
	width: 100%;
}

.marquee-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	will-change: transform;
}

.marquee_item img {
	max-width: 10rem;
}

/* -----------------thank you page ------------------ */

.thanks_section {
	background: var(--footer-bg-color);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.thanks_section .logo {
	background: var(--white-color);
	padding: 2rem 0rem;
	text-align: center;
}

.thanks_section .logo img {
	max-width: 20rem;
	width: 100%;
}

.thanks_content {
	text-align: center;
	padding: 6rem 0;
}

.thanks_item img {
	max-width: 28.4rem;
	width: 100%;
	margin: 1rem 0rem;
}

.thanks_item p {
	font-size: 4.6rem;
	font-weight: 400;
	color: var(--white-color);
}


/* alert */

.alert {
	padding: 0rem 0 1rem;
}

.alert-success {
	color: green;
}

.alert-danger {
	color: red;
}